/* Estilos generales */
:root {
    --primary-color: #222222;
    --secondary-color: #444444;
    --accent-color: #c9a86a;
    --light-color: #f5f5f5;
    --text-color: #333;
    --white: #fff;
    --dark-gray: #333;
    --medium-gray: #666;
    --light-gray: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', Arial, sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
}

/* Header y Navegación */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top:0;
    z-index:1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Logo estilizado */
.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-emphasis-color: transparent;
}

.logo::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    transform: scaleX(0.7);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.logo:hover::before {
    transform: scaleX(1);
}

.logo::after {
    content: '◆';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 12px;
    -webkit-text-fill-color: var(--accent-color);
}

.logo span {
    color: var(--accent-color); /* Color acentuado para la segunda parte del nombre */
    font-style: italic;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    -webkit-text-fill-color: var(--accent-color);
}

.logo span::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--accent-color);
    bottom: -3px;
    right: -8px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.logo:hover span::after {
    opacity: 1;
    transform: scale(1);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-gray);
}

nav ul li a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

.mobile-menu {
    display: none;
    cursor: pointer;
    font-size: 24px;
}
/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: 0;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.8;
}

/* Características */
.features {
    padding: 100px 0;
    background-color: var(--white);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background-color: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-img {
    height: 250px;
    overflow: hidden;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-img img {
    transform: scale(1.05);
}

.feature-content {
    padding: 30px;
}

.feature-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.feature-content h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.feature-content p {
    color: var(--medium-gray);
    line-height: 1.8;
    font-size: 15px;
}
/* Productos */
.products {
    padding: 100px 0;
    background-color: var(--light-color);
}

.products-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: none;
    color: var(--medium-gray);
    padding: 8px 20px;
    margin: 5px 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.filter-btn:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    color: var(--primary-color);
}

.filter-btn.active:after, .filter-btn:hover:after {
    width: 100%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card[data-category="adhesivo"] .product-badge {
    background-color: #28a745;
    color: white;
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.product-content p {
    color: var(--medium-gray);
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px 25px;
}

.product-price {
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-color);
}

/* Estilos para botones de producto */
.product-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.add-to-cart-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.add-to-cart-btn:hover {
    transform: scale(1.1);
    background-color: var(--primary-color);
}

.view-btn {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--accent-color);
    position: relative;
    padding-bottom: 2px;
}

.view-btn:after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.view-btn:hover:after {
    width: 100%;
}
/* Galería */
.gallery {
    padding: 100px 0;
    background-color: var(--white);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    border: 1px solid var(--white);
    padding: 10px 20px;
}

/* Testimonios */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-color);
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    background-color: var(--white);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    color: var(--medium-gray);
}

.testimonial-content:before {
    content: '"';
    font-size: 60px;
    color: var(--accent-color);
    position: absolute;
    left: -20px;
    top: -20px;
    opacity: 0.2;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
    font-weight: 600;
}

.author-info p {
    color: var(--medium-gray);
    font-size: 14px;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
}

.cta .btn {
    background-color: var(--accent-color);
    color: var(--white);
    border: 1px solid var(--accent-color);
    font-weight: 500;
}

.cta .btn:hover {
    background-color: transparent;
    color: var(--white);
}
/* Contacto */
.contact {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--medium-gray);
}

.contact-icon {
    margin-right: 15px;
    color: var(--accent-color);
    font-size: 18px;
}

.social-links {
    display: flex;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-5px);
}

/* Estilos para iconos de redes sociales */
.social-link i {
    font-size: 20px;
}

.social-link:hover i {
    transform: scale(1.2);
}

/* Estilo para el enlace de WhatsApp */
.whatsapp-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: #25D366; /* Color verde de WhatsApp */
}

.contact-form h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--medium-gray);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.form-submit {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: var(--accent-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col h4:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #aaa;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-newsletter p {
    margin-bottom: 20px;
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
}

.newsletter-form {
    display: flex;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-size: 14px;
}

.newsletter-btn {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
    .mobile-menu {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        box-shadow: 5px 0 10px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        z-index: 1000;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 30px;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta h2 {
        font-size: 28px;
    }
    
    .cta p {
        font-size: 16px;
    }
    
    .feature-card, .product-card, .gallery-item {
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .features, .products, .gallery, .testimonials, .contact {
        padding: 70px 0;
    }
    
    .testimonial-item {
        padding: 30px;
    }
    
    .feature-img, .product-img, .gallery-item {
        height: 220px;
    }
    
    /* Mejoras para móviles - tablets */
    .logo {
        font-size: 24px;
    }
    
    .logo::after {
        font-size: 10px;
        left: -12px;
    }
    
    .product-content h3 {
        font-size: 16px;
    }
    
    .product-price {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    /* Ajustes mejorados para móviles */
    h1 {
        font-size: 28px !important;
    }
    
    h2 {
        font-size: 24px !important;
    }
    
    h3 {
        font-size: 18px !important;
    }
    
    p {
        font-size: 16px !important;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Ajustar espaciado */
    .container {
        padding: 0 15px;
    }
    
    /* Ajustar secciones */
    section {
        padding: 40px 0 !important;
    }
    
    /* Hero más compacto */
    .hero {
        height: auto !important;
        min-height: 80vh;
        padding-top: 80px;
    }
    
    /* Arreglar encabezado móvil */
    .header-container {
        padding: 10px 0;
    }
    
    /* Mejorar visualización del menú móvil */
    .mobile-menu {
        font-size: 28px;
        padding: 5px 10px;
    }
    
    .products-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        margin: 5px 0;
    }
    
    .contact-form, .contact-info {
        padding: 0;
    }
    
    /* Mejorar tarjetas de productos en móvil */
    .product-card {
        margin-bottom: 20px;
    }
    
    .product-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-price {
        margin-bottom: 10px;
        font-size: 16px;
    }
    
    .product-actions {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    
    .view-btn {
        padding: 8px 12px;
    }
    
    /* Mejorar visualización de imágenes en galerías */
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .feature-img {
        height: 180px;
    }
    
    /* Mejorar formulario en móvil */
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-control {
        padding: 10px;
    }
    
    textarea.form-control {
        height: 100px;
    }
    
    /* Ajustes para la sección de características */
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        margin-bottom: 20px;
    }
}

/* Estilos para el carrusel del hero */
.hero {
    position: relative;
    transition: background-image 0.5s ease-in-out;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.hero-nav:hover {
    background-color: rgba(0,0,0,0.7);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

/* Estilos responsive para los botones de navegacion */
@media (max-width: 768px) {
    .hero-nav {
        font-size: 18px;
        padding: 8px 12px;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--light-color);
}

.faq-main-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-column {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-column-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-container {
    /* Contenedor para los items FAQ */
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 15px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-color);
}

.faq-question h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: var(--accent-color);
    transition: transform 0.3s ease;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f9f9f9;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 25px 30px;
}

.faq-answer p {
    margin: 0;
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 15px;
}

/* Responsive para FAQ */
@media (max-width: 992px) {
    .faq-main-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-column {
        padding: 25px;
    }
    
    .faq-column-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 70px 0;
    }
    
    .faq-column {
        padding: 20px;
    }
    
    .faq-column-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 15px;
        padding-right: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
        max-height: 350px;
    }
    
    .faq-toggle {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .faq-main-container {
        gap: 20px;
    }
    
    .faq-column {
        padding: 15px;
    }
    
    .faq-column-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .faq-question {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .faq-question h3 {
        padding-right: 0;
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .faq-toggle {
        align-self: flex-end;
        margin-top: -35px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px;
        max-height: 400px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

/* Calculadora CTA */
.calculator-cta {
    margin-bottom: 50px;
}

.calculator-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.calculator-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 106, 0.1) 100%);
}

.calculator-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--white);
}

.calculator-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.calculator-btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.calculator-btn:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.calculator-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    font-size: 14px;
    opacity: 0.9;
    padding: 5px 0;
}

/* Responsive para calculadora CTA */
@media (max-width: 768px) {
    .calculator-banner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
        text-align: center;
    }
    
    .calculator-content h3 {
        font-size: 20px;
    }
    
    .calculator-content p {
        font-size: 14px;
    }
    
    .calculator-features {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .feature-item {
        font-size: 12px;
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .calculator-banner {
        padding: 20px;
    }
    
    .calculator-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        margin: 0;
    }
}

/* Asegurar que Font Awesome esté disponible para los iconos */
.fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Espaciado para iconos en notificaciones */
.notification .fas {
    margin-right: 8px;
}

/* ============================
   DROPDOWN CATÁLOGOS - HOVER MEJORADO
   ============================ */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    display: flex !important;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-gray);
    text-decoration: none;
}

.dropbtn:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.dropdown:hover .dropbtn:after {
    width: 100%;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
    color: var(--accent-color);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* 🔑 DROPDOWN con área de hover extendida */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    z-index: 1001;
    padding: 10px 0;
    margin-top: 5px;  /* 🔧 REDUCIDO de 10px a 5px */
    border: 1px solid var(--light-gray);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;  /* 🔧 Transición más rápida */
}

/* 🆕 ÁREA INVISIBLE para mantener hover */
.dropdown-content::after {
    content: '';
    position: absolute;
    top: -15px;  /* Cubre el gap + un poco más */
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

/* Flecha hacia arriba */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
    z-index: 1;
}

/* 🔑 HOVER con delay para mejor UX */
.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;  /* Sin delay al mostrar */
}

/* 🆕 DELAY al ocultar para mejor UX */
.dropdown-content {
    transition-delay: 0.15s;  /* Pequeño delay al ocultar */
}

.dropdown:hover .dropdown-content {
    transition-delay: 0s;  /* Sin delay al mostrar */
}

.catalog-link {
    display: flex !important;
    align-items: center;
    padding: 12px 20px;
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    border-radius: 0;
}

.catalog-link:hover {
    background-color: var(--light-color);
    color: var(--accent-color) !important;
    padding-left: 25px;
}

.catalog-link i {
    margin-right: 10px;
    color: #dc3545;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.catalog-link:hover i {
    transform: scale(1.1);
}

.catalog-link span {
    white-space: nowrap;
}

/* ============================
   RESPONSIVE DROPDOWN
   ============================ */

@media (max-width: 991px) {
    .dropdown {
        display: block;
        width: 100%;
    }
    
    .dropdown-content {
        position: static !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0;
        margin: 0;
        min-width: auto;
        transform: none !important;
        transition: none;
    }
    
    .dropdown-content::before,
    .dropdown-content::after {
        display: none;
    }
    
    .catalog-link {
        padding: 15px 30px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        background: rgba(255,255,255,0.05);
    }
    
    .catalog-link:hover {
        padding-left: 35px;
        background: rgba(201, 168, 106, 0.1);
    }
    
    .dropdown-arrow {
        display: none;
    }
    
    .dropbtn {
        pointer-events: none;
        color: var(--medium-gray) !important;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 12px;
        padding: 10px 30px !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .dropbtn:after {
        display: none;
    }
}

@media (max-width: 768px) {
    .catalog-link {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .catalog-link:hover {
        padding-left: 30px;
    }
}

/* Banner Promocional 3 cuotas sin interés */
.promo-banner {
    position: sticky;
    top: 80px; /* Ajustado para mayor separación del header */
    width: 100%;
    z-index: 999;
    background: linear-gradient(90deg, var(--accent-color) 0%, #ffe9b3 100%);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 0;
    min-height: 56px; /* Más alto */
    font-size: 1rem;
    animation: promoBannerFadeIn 0.7s;
}

@keyframes promoBannerFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.promo-banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    padding: 16px 0; /* Más padding vertical */
}

.promo-banner .fa-credit-card {
    font-size: 1.3em;
    color: var(--primary-color);
    background: var(--white);
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    margin-right: 6px;
}

.promo-banner-close {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5em;
    margin-left: 18px;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0 12px;
    line-height: 1;
    opacity: 0.7;
}
.promo-banner-close:hover {
    color: #a67c2d;
    opacity: 1;
}

@media (max-width: 768px) {
    .promo-banner {
        font-size: 0.95rem;
        min-height: 48px;
        top: 70px; /* Ajuste para mobile */
    }
    .promo-banner-content {
        gap: 8px;
        padding: 10px 0;
    }
    .promo-banner .fa-credit-card {
        font-size: 1em;
        padding: 4px;
    }
    .promo-banner-close {
        font-size: 1.2em;
        margin-left: 8px;
        padding: 0 6px;
    }
}