/* Estilos generales del header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgb(107, 160, 198), #021c43f0);
    padding: 10px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.5s;
    z-index: 1000;
}

/* Logo */
.logo img {
    height: 60px;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Estilos para la navegación */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    color: rgb(209, 208, 212);
    text-decoration: none;
    font-weight: bold;
    padding: 10px 25px;
    transition: background 0.3s, color 0.3s;
}
/* Ocultar los submenús por defecto */
.nav-links .dropdown {
    display: none;
    position: absolute;
    background: linear-gradient(180deg, #6898cb, #002f6c);
    top: 100%;
    left: 0;
    width: 180px;
    padding: 10px 10px;
    list-style: none;
    border-radius: 5px;
}

/* Mostrar el menú cuando el mouse está encima */
.nav-links li:hover .dropdown {
    display: block;
}

.nav-links .dropdown li {
    padding: 5px 10px;
}

.nav-links .dropdown li a {
    color: rgb(255, 255, 255);
    display: block;
    transition: background 0.3s;
}

.nav-links .dropdown li a:hover {
    background: #0056b3;
    border-radius: 3px;
}

.nav-links li a:hover {
    background: #78bed3;
    color: rgb(34, 44, 52);
    border-radius: 5px;
}

/* Estilos para el menú hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 10px;
    transition: 0.4s;
}

/* Animaciones del menú hamburguesa */
.menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Menú desplegable para móviles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex; /* Mostrar icono del menú en móviles */
    }

    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background: linear-gradient(180deg, #6898cb, #002f6c);
        flex-direction: column;
        align-items: center;
        display: none; /* Ocultar menú por defecto */
        padding: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        padding: 10px;
    }
}



/* Cuando el header sea transparente */
header.transparent {
    background: rgba(0, 0, 0, 0.3); /* Se vuelve más transparente al hacer scroll */
}

/* Importación de fuente */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

/* Contenedor principal */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    text-align: center;
}


/* Estilo del logo */
.adm-logo {
    font-weight: 700;
    color: #0056b3;
}

/* Espaciador */
.spacer {
    height: 8vh;
}

/* Sección de productos */
.product-highlight {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background: #fff;
}

.product-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1100px;
    margin: auto;
    text-align: left;
}

.text-section {
    flex: 1;
    max-width: 500px;
    padding: 20px;
}

.image-section {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.image-section img {
    max-width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.image-section img:hover {
    transform: scale(1.05);
}

/* Botón de llamada a la acción */
.cta-button {
    background-color: #0056b3;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: #003d80;
    transform: scale(1.1);
}

/* Sección de testimonios */
.testimonials {
    text-align: center;
    background: #f0f0f0;
    padding: 50px 20px;
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.testimonial {
    max-width: 300px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.testimonial:hover {
    transform: scale(1.05);
}
/* Sección principal */
.featured-product {
    width: 100%;
    background: #fff;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    margin-top: 100px; /* Ajusta este valor según lo necesario */
}


.product-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    width: 90%;
    gap: 40px;
}

/* Estilos del texto */
.product-text {
    flex: 1;
    font-family: 'Poppins', sans-serif;
    color: #878787;
}

.product-title {
    font-size: 28px;
    font-weight: 700;
    color: #122D6C; /* Azul profesional */
    margin-bottom: 10px;
}

.product-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #122D6C;;
    margin-top: 20px;
    margin-bottom: 10px;
}

.product-text p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-highlight {
    font-size: 18px;
    font-weight: 600;
    color: #d9534f; /* Color rojo elegante para resaltar */
    margin-top: 10px;
}

/* Lista de características */
.product-features {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.product-features li {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    margin-bottom: 8px;
}

/* Estilos de la imagen */
.product-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}


.product-image img {
    width: 100%;/* La imagen se adapta al contenedor */
    max-width: 700px; /* Máximo tamaño */
    height: auto; /* Mantiene la proporción */
    display: block; /* Elimina espacios extra */
    margin: auto; /* Centrado perfecto */
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.product-image img:hover {
    transform: scale(1.03);
}

/* Responsividad */
@media (max-width: 900px) {
    .product-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .product-image {
        justify-content: center;
    }
    
    .product-image img {
        width: 100%;
        max-width: 350px;
    }
}
.highlighted-section {
    background: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    padding: 50px 30px;
    margin: 0 auto;
    max-width: 1200px;
    width: 95%;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.highlighted-section h2, .highlighted-section h3 {
    color: #122D6C;
    font-weight: 700;
}

.highlighted-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.highlighted-section p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlighted-section .product-image {
    text-align: center;
    margin: 30px 0;
}

.highlighted-section .product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.highlighted-section .product-features {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.highlighted-section .product-features li {
    background: #f0f4ff;
    margin: 10px 0;
    padding: 10px 15px;
    border-left: 5px solid #007bff;
    border-radius: 6px;
    color: #333;
    font-weight: 500;
}

/* Animación */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .highlighted-section {
        padding: 30px 20px;
    }

    .highlighted-section h2 {
        font-size: 1.1rem;
    }
}
.highlighted-section {
    margin-top: 120px;
    padding: 60px 20px;
    background: #f9fafc;
    display: flex;
    justify-content: center;
}

.highlighted-container {
    max-width: 1100px;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 1s ease-out forwards;
}

.highlighted-section h2 {
    font-size: 2rem;
    color: #0c2a65;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.highlighted-section h3 {
    margin-top: 30px;
    font-size: 1.1rem;
    color: #1c4d8b;
}

.product-features {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.product-features li {
    margin: 10px 0;
    font-weight: 500;
    color: #444;
}

.product-image {
    text-align: center;
    margin: 30px 0;
}

.product-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.product-highlight {
    font-weight: bold;
    color: #007bff;
    margin-top: 20px;
    text-align: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===== FOOTER ESTILOS GENERALES ===== */
.footer-section {
    background: linear-gradient(90deg, rgb(107, 160, 198), #021c43f0);
    color: white;
    padding: 0px 0px;
    text-align: center;
}

.footer-section {

    color: #e0e0e0; /* Texto claro */
    padding: 0px 0px;
    text-align: left;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1400px;
    margin: auto;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    padding: 20px;
}

.footer-column h2 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #b3b3b3; /* Título ligeramente más claro */
    margin-bottom: 20px;
    text-transform: uppercase; /* Convertir a mayúsculas */
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer-column ul li a {
    text-decoration: none;
    color: #e0e0e0;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #b3b3b3;
}

.social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a img {
    height: 22px;
    width: 22px;
    transition: transform 0.3s;
}

.social-icons a img:hover {
    transform: scale(1.2);
}

.contact-info {
    display: inline-block;
    text-align: left;
    margin-top: 20px;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1rem;
}

.contact-info img {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

.footer-column:last-child {
    text-align: right;
}

.footer-column:last-child .contact-info {
    text-align: left;
}

.footer-bottom {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #f5f5f5;
    padding: 15px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-column {
        width: 100%;
        text-align: left;
    }

    .footer-column:last-child {
        text-align: left;
    }

    .contact-info {
        margin-top: 10px;
    }
}
