
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    background-color: #f4f4f4;
    font-family: 'Poppins', Gill Sans, Gill Sans MT, Myriad Pro, DejaVu Sans Condensed, Helvetica, Arial, 'sans-serif';
}
section[id] {
    scroll-margin-top: 70px; /* Altura de tu header */
    padding-top: 40px;        /* Espacio interno */
    margin-top: -40px;        /* Compensa el espacio */
  }
  html {
    scroll-behavior: smooth;
  }
/*..................................NAVIGATION...............................*/

/* Estilos base */
.menu-container {
    max-width: 100%;
    height: 70px;
    margin: auto;
    background-color: white;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    padding: 0 20px;
}

.logo {
    height: 60px;
    width: 80px;
    margin-right: 10px;
}

.logo_name {
    display: flex;
    align-items: center;
    color: #576c54;
    font-weight: 600;
}

/* Contenedor del menú hamburguesa */
.hamburger-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* Estilos del botón hamburguesa */
.menu-toggle {
    display: none;
}

.hamburger-btn {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 24px; /* Más pequeño */
    height: 18px; /* Más pequeño */
    background: transparent;
    border: none;
    padding: 0;
    z-index: 1001;
    margin-left: auto; /* Empuja a la derecha */
}

.hamburger-line {
    width: 100%;
    height: 2px; /* Líneas más delgadas */
    background-color: #576c54;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Menú de navegación principal (escritorio) */
.main-nav ul.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul.nav-list li {
    margin-left: 20px;
}

.main-nav ul.nav-list li a {
    font-size: 16px;
    font-weight: 600;
    color: #576c54;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}

.main-nav ul.nav-list li a:hover {
    color: rgb(140, 158, 145);
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .hamburger-btn {
        display: flex; /* Mostrar solo en móvil */
    }
    
    .main-nav {
        position: absolute;
        top: 100%; /* Justo debajo del botón */
        right: 0; /* Alineado a la derecha */
        width: 200px; /* Ancho compacto */
        background-color: white;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        transform: translateY(-10px) scaleY(0);
        transform-origin: top;
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 1000;
        border-radius: 0 0 0 8px;
    }
    
    .menu-toggle:checked ~ .main-nav {
        transform: translateY(0) scaleY(1);
        opacity: 1;
    }
    
    .main-nav ul.nav-list {
        flex-direction: column;
        padding: 5px 0; /* Menos padding */
    }
    
    .main-nav ul.nav-list li {
        margin: 0;
        text-align: center; /* Alineado a la derecha */
    }
    
    .main-nav ul.nav-list li a {
        padding: 10px 15px; /* Más compacto */
        font-size: 14px; /* Texto más pequeño */
    }
}
/*..................................COOOKIES...............................*/
/* Estilos base consistentes con las otras páginas legales */
.cookies-container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    line-height: 1.6;
    color: #333;
    margin-top: 120px;
}

.cookies-container h1 {
    color: #2d3748; /* Verde corporativo que coincide con tu marca */
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 2px solid #bcc7bc;
    padding-bottom: 0.5rem;
}

.last-updated {
    font-style: italic;
    color: #333333 ;
    margin-bottom: 2rem;
}

.cookies-container h2 {
    color: #234a38;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    border-left: 4px solid green;
}

.cookies-container h3 {
    color: #3c5e45;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.cookies-container p {
    margin-bottom: 1.2rem;
    text-align: justify;
    color: #666;
}

.cookies-container ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    list-style-type: disc !important; /* Esto añade los puntos clásicos */
    margin-left: 1.5rem !important;  /* Espaciado adecuado */
}

.cookies-container li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
    color: #666;
}

.cookies-container a {
    color: #22c55e;
    text-decoration: none;
    font-weight: 500;
}

.cookies-container a:hover {
    text-decoration: underline;
}

/* Estilo para secciones importantes */
.cookie-types {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #22c55e;
}

/* Responsive design */
@media (max-width: 768px) {
    .cookies-container {
        padding: 0 1rem;
    }
    
    .cookies-container h1 {
        font-size: 1.8rem;
    }
    
    .cookies-container h2 {
        font-size: 1.3rem;
    }
    
    .cookies-container h3 {
        font-size: 1.1rem;
    }
}


/*..................................FOOTER...............................*/

footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 5% 2rem;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.social-icon {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease; 
}

.social-icon svg, 
.social-icon i {
    width: 20px;
    height: 20px;
    color: white;
    transition: transform 0.3s ease; 
}

.social-icon:hover {
    background: #008000;
}

.social-icon:hover svg,
.social-icon:hover i {
    transform: scale(0.8); /* Reduce el tamaño al 80% */
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #008000;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }
    
    nav ul {
        margin-top: 1rem;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}
