:root {
    --color-bg: #ffffff; /* Blanco puro */
    --color-bg-alt: #f8fafc; /* Gris azulado muy claro */
    --color-surface: #ffffff;
    --color-surface-hover: #f1f5f9;
    --color-border: #e2e8f0; /* Borde muy sutil de 1px */
    --color-text-main: #0f172a; /* Negro pizarra/carbón */
    --color-text-muted: #64748b; /* Gris pizarra suave */
    
    --color-gold-start: #00c1c7; /* Celeste/Turquesa corporativo */
    --color-gold-end: #008f94; /* Turquesa oscuro para degradados */
    --color-accent-yellow: #fdbc1c; /* Amarillo corporativo */
    
    --gradient-gold: linear-gradient(135deg, var(--color-gold-start) 0%, var(--color-gold-end) 100%);
    --gradient-brand-accent: linear-gradient(135deg, var(--color-gold-start) 0%, var(--color-accent-yellow) 100%);
    
    --font-title: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --header-height: 80px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* CONTENEDORES Y UTILS */
.text-brand {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.text-brand-accent {
    color: var(--color-accent-yellow);
    font-weight: 700;
}

/* BOTONES */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    color: #000000;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00e5ec 0%, #00c1c7 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 193, 199, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
    font-weight: 500;
    padding: 13px 27px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    border-color: var(--color-gold-start);
    color: var(--color-gold-start);
    transform: translateY(-2px);
}

/* CABECERA (HEADER) */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
    transition: var(--transition-smooth);
}

.header.scrolled {
    height: 70px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.header-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 38px;
    width: auto;
}

.nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
    color: var(--color-text-main);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(229, 192, 123, 0.4);
    color: var(--color-text-main);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #25d366;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.btn-whatsapp:hover {
    border-color: var(--color-gold-start);
    background-color: rgba(229, 192, 123, 0.05);
    box-shadow: 0 0 15px rgba(229, 192, 123, 0.1);
}

/* TOGGLE MENÚ MOVIL */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 110;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-main);
    transition: var(--transition-smooth);
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--color-bg);
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.02;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    color: var(--color-text-main);
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.6;
}

.hero-action-link-wrapper {
    margin-bottom: 12px;
}

.hero-action-link {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--color-text-main);
    border-bottom: 2px solid var(--color-text-main);
    padding-bottom: 6px;
    display: inline-block;
}

.hero-action-link:hover {
    color: var(--color-gold-start);
    border-color: var(--color-gold-start);
    transform: translateX(4px);
}

/* SOCIAL PROOF */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 50px;
}

.avatar-group {
    display: flex;
}

.avatar-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    object-fit: cover;
    margin-left: -12px;
}

.avatar-img:first-child {
    margin-left: 0;
}

.social-proof-text {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    line-height: 1.3;
}

.social-proof-text strong {
    color: var(--color-text-main);
    font-weight: 700;
    font-size: 0.9rem;
}

.social-proof-text span {
    color: var(--color-text-muted);
}

/* VISUAL WRAPPER Y PREVIEW CARD */
.hero-visual-wrapper {
    position: relative;
    width: 100%;
}

.hero-main-visual {
    position: relative;
    height: 540px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Tarjeta flotante Haven preview */
.hero-preview-card {
    position: absolute;
    bottom: 30px;
    right: -24px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--color-border);
    width: 310px;
    z-index: 10;
    transition: var(--transition-smooth);
}

.preview-card-img {
    width: 68px;
    height: 68px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.preview-card-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.preview-card-info h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.preview-card-info p {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.3;
    margin-bottom: 8px;
}

.preview-slider-indicators {
    display: flex;
    gap: 6px;
}

.preview-indicator {
    width: 12px;
    height: 2px;
    background-color: #e2e8f0;
}

.preview-indicator.active {
    background-color: var(--color-gold-start);
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    z-index: 10;
}

.scroll-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background-color: var(--color-border);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--gradient-gold);
    animation: scroll-anim 2s infinite ease-in-out;
}

@keyframes scroll-anim {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(200%);
    }
}

/* ANIMACIONES DE ENTRADA (SCROLL REVEAL) */
.reveal-on-scroll {
    opacity: 0 !important;
    transform: translateY(40px) !important;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    pointer-events: none;
}

.reveal-on-scroll.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: all;
}

/* MENU MOVIL CONTENIDOS */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg);
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
}

.mobile-nav-list li {
    margin: 24px 0;
}

.mobile-nav-link {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.mobile-nav-link:hover {
    color: var(--color-text-main);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-whatsapp-mobile {
    display: inline-block;
    margin-top: 16px;
    border: 1px solid var(--color-gold-start);
    color: var(--color-gold-start);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
}

/* SECCIÓN SOBRE NOSOTROS (ESTILO HAVEN) */
.about {
    padding: 120px 24px;
    background-color: var(--color-bg);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.about-editorial-grid {
    display: grid;
    grid-template-columns: 0.25fr 1.75fr;
    gap: 60px;
    align-items: flex-start;
}

.about-left-label span {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-main);
    display: inline-block;
    border-bottom: 2px solid var(--color-text-main);
    padding-bottom: 4px;
}

.about-paragraph-hero {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.03em;
    color: var(--color-text-main);
}

.text-muted-fade {
    color: #cbd5e1;
}

.about-visual-hero {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.about-hero-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.about-stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.about-stat-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: var(--color-text-main);
}

.about-stat-number-wrapper .stat-number {
    font-family: var(--font-title);
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
}

.about-stat-number-wrapper .stat-plus,
.about-stat-number-wrapper .stat-percent {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-gold-start);
    margin-left: 2px;
}

.about-stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-top: 12px;
    font-weight: 600;
}

.about-stat-box-divider {
    width: 1px;
    height: 70px;
    background-color: var(--color-border);
}

}

/* SECCIÓN SHOWROOM DE PRODUCTOS (HAVEN STYLE) */
.showroom {
    padding: 125px 24px;
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

.showroom-container {
    max-width: 1200px;
    margin: 0 auto;
}

.showroom-header {
    margin-bottom: 80px;
    text-align: left;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 70px 40px;
}

.product-card {
    background: none;
    border: none;
    overflow: hidden;
    height: 100%;
    transition: var(--transition-smooth);
}

.product-image-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-alt);
    aspect-ratio: 3/2;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.15);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.explore-arrow {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 300;
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Grilla Asimétrica */
.card-vertical-large {
    grid-column: span 3;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.card-vertical-large .product-image-container {
    aspect-ratio: auto;
    flex-grow: 1;
}

.card-horizontal-half {
    grid-column: span 3;
    grid-row: span 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.card-horizontal-half .product-image-container {
    aspect-ratio: 1.1/1;
    height: 100%;
}

.card-regular {
    grid-column: span 2;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
}

.card-horizontal-wide {
    grid-column: span 3;
    grid-row: span 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 24px;
    align-items: start;
}

.card-horizontal-wide .product-image-container {
    aspect-ratio: 1.2/1;
    height: 100%;
}

.product-card-content {
    padding: 16px 0 0 0;
}

.product-card-content h3 {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--color-text-main);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.product-card-content p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
}

.btn-card-details {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-main);
    cursor: pointer;
    border-bottom: 2px solid var(--color-text-main);
    transition: var(--transition-smooth);
    display: inline-block;
    padding-bottom: 2px;
}

/* Hover effects */
.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-card:hover .product-hover-overlay {
    opacity: 1;
}

.product-card:hover .explore-arrow {
    transform: translateY(0);
}

.product-card:hover .btn-card-details {
    color: var(--color-gold-start);
    border-color: var(--color-gold-start);
    transform: translateX(4px);
}

/* MODALES DE DETALLE DE PRODUCTO (HTML5 DIALOG - HAVEN LIGHT THEME) */
.product-modal {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background-color: #ffffff;
    color: var(--color-text-main);
    max-width: 850px;
    width: calc(100% - 48px);
    max-height: calc(100vh - 80px);
    margin: auto;
    padding: 0;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

.product-modal::-webkit-scrollbar {
    width: 6px;
}

.product-modal::-webkit-scrollbar-track {
    background: transparent;
}

.product-modal::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 10px;
}

.product-modal::backdrop {
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fade-in 0.4s ease-out;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    padding: 40px;
}

.btn-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2.2rem;
    color: var(--color-text-muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    line-height: 1;
    z-index: 10;
}

.btn-modal-close:hover {
    color: var(--color-text-main);
    transform: rotate(90deg);
}

.modal-body-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: start;
}

.modal-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-main-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.modal-sub-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.modal-info {
    display: flex;
    flex-direction: column;
}

.modal-tag {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold-start);
    margin-bottom: 8px;
}

.modal-info h2 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.modal-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.modal-features {
    margin-bottom: 28px;
}

.modal-features h3 {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    color: var(--color-text-main);
    text-transform: uppercase;
}

.modal-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-features li {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.modal-features li::before {
    content: '✓';
    color: var(--color-gold-start);
    font-weight: bold;
}

.modal-cta {
    width: 100%;
    margin-top: auto;
}

/* SECCIÓN TESTIMONIALES */
.testimonials {
    padding: 120px 24px;
    background-color: var(--color-bg-alt);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-header {
    margin-bottom: 60px;
    text-align: center;
}

.testimonials-header .section-tagline {
    text-align: center;
}

.testimonials-header .section-title {
    text-align: center;
}

.testimonials-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonials-track {
    position: relative;
    width: 100%;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(10px);
    z-index: 1;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
    z-index: 2;
}

.testimonial-card {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.03);
}

.testimonial-stars {
    color: var(--color-accent-yellow);
    font-size: 1.25rem;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-text-main);
    font-style: italic;
    margin-bottom: 32px;
}

.testimonial-author {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-border);
}

.author-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-main);
    display: block;
    margin-bottom: 2px;
}

.author-meta cite {
    font-style: normal;
}

.author-role {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.btn-testimonial-prev, .btn-testimonial-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-testimonial-prev:hover, .btn-testimonial-next:hover {
    border-color: var(--color-gold-start);
    color: var(--color-gold-start);
    background-color: var(--color-bg-alt);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    background-color: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.testimonial-dot.active {
    background-color: var(--color-gold-start);
    transform: scale(1.3);
}

/* SECCIÓN PREGUNTAS FRECUENTES (FAQ) */
.faq {
    padding: 120px 24px;
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-header {
    margin-bottom: 80px;
    text-align: center;
}

.faq-header .section-tagline {
    text-align: center;
}

.faq-header .section-title {
    text-align: center;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.faq-item {
    background: none;
    border: none;
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-text-main);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: var(--transition-smooth);
}

.faq-icon {
    font-size: 1.3rem;
    color: var(--color-text-muted);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
    line-height: 1;
}

/* Panel Accordion Animado con CSS Grid */
.faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
    overflow: hidden;
}

.faq-content p {
    padding: 0 0 28px 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.faq-content strong {
    color: var(--color-text-main);
}

/* Active FAQ Item states */
.faq-item.active {
    border-bottom: 1px solid var(--color-text-main);
}

.faq-item.active .faq-trigger {
    color: var(--color-gold-start);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--color-gold-start);
}

.faq-item.active .faq-panel {
    grid-template-rows: 1fr;
}

/* SECCIÓN CONTACTO */
.contact {
    padding: 120px 24px;
    background-color: var(--color-bg);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    margin-bottom: 60px;
    text-align: center;
}

.contact-header .section-tagline {
    text-align: center;
}

.contact-header .section-title {
    text-align: center;
}

.contact-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-top: 12px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-card-info {
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-start);
    flex-shrink: 0;
}

.info-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.info-item p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.info-item a:hover {
    color: var(--color-gold-start);
}

/* FORMULARIO DE CONTACTO PREMIUM */
.contact-form-wrapper {
    position: relative;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.03);
    overflow: hidden;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: opacity 0.4s ease;
}

.contact-form-wrapper.sent .contact-form {
    opacity: 0;
    pointer-events: none;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-main);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.4s ease;
    resize: none;
}

.form-group textarea {
    min-height: 100px;
}

.form-group label {
    position: absolute;
    top: 12px;
    left: 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), font-size 0.4s ease, color 0.4s ease;
    transform-origin: left top;
}

/* Float label logic using modern CSS placeholder-shown trick */
.form-group input:focus, .form-group textarea:focus {
    border-bottom-color: var(--color-text-main);
    outline: none;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    transform: translateY(-24px);
    font-size: 0.8rem;
    color: var(--color-text-main);
}

.form-submit-btn {
    width: 100%;
    margin-top: 10px;
}

/* SUCCESS FEEDBACK */
.form-success-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    width: calc(100% - 96px);
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form-wrapper.sent .form-success-message {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%);
}

.success-icon {
    font-size: 2rem;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.1);
    border: 2px solid #25d366;
    color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.form-success-message h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.form-success-message p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* FOOTER */
.footer {
    background-color: #ffffff;
    border-top: 1px solid var(--color-border);
    padding: 80px 24px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 48px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    max-width: 600px;
}

.footer-divider {
    height: 1px;
    background-color: var(--color-border);
    margin-bottom: 40px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.copyright {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-gold-start);
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 99;
    transition: var(--transition-smooth);
}

.whatsapp-svg {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .nav, .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-top: 60px;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        height: 380px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about {
        padding: 80px 24px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-headline {
        font-size: 1.5rem;
    }
    
    .about-visual {
        max-width: 600px;
        margin: 0 auto 30px;
    }
    
    .stats-card {
        bottom: -20px;
        left: 20px;
        right: 20px;
        padding: 20px;
        justify-content: space-around;
    }
    
    .modal-body-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .modal-content {
        padding: 40px 24px 24px;
    }
    
    .modal-main-img {
        height: 240px;
    }
    
    .modal-sub-img {
        height: 120px;
    }
    
    .testimonial-card {
        padding: 36px 24px;
    }
    
    .faq-trigger {
        padding: 20px 24px;
        font-size: 1rem;
    }
    
    .faq-content p {
        padding: 0 24px 20px;
        font-size: 0.9rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 36px 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-links {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-visual {
        height: 280px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .showroom {
        padding: 80px 16px;
    }
    
    .products-grid {
        gap: 20px;
    }
    
    .modal-info h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 24px 16px;
    }
    
    .testimonial-quote {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    
    .faq {
        padding: 80px 16px;
    }
    
    .faq-trigger {
        padding: 16px 20px;
    }
    
    .faq-content p {
        padding: 0 20px 16px;
    }
    
    .contact {
        padding: 80px 16px;
    }
    
    .contact-card-info {
        padding: 24px 16px;
    }
    
    .contact-form-wrapper {
        padding: 24px 16px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}
