/* ==========================================================================
   VARIABLES DIGITALES & COLORES
   ========================================================================== */
   :root {
    --color-primary: #10B981; /* Verde moderno */
    --color-primary-dark: #059669;
    --color-primary-light: #34D399;
    
    --color-secondary: #F59E0B; /* Naranja/Amarillo */
    --color-accent-red: #EF4444; /* Rojo */
    --color-dark: #0F172A; /* Azul oscuro elegante */
    --color-light: #F8FAFC; /* Fondo claro alternativo */
    --color-white: #FFFFFF;
    
    --text-main: #334155;
    --text-muted: #64748B;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.4);
    
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==========================================================================
   RESET & TIPOGRAFÍA
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    background-color: var(--color-white);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--color-light);
}

.highlight {
    color: var(--color-primary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* ==========================================================================
   UTILIDADES & COMPONENTES
   ========================================================================== */
/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-huge {
    padding: 1.2rem 2.5rem;
    font-size: 1.25rem;
}

/* Glassmorphism */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: pulse 2s infinite ease-in-out;
}

.preloader-logo {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.3));
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--color-light);
    border-top: 4px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-normal);
    padding: 1rem 0;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 50px;
    transition: transform var(--transition-fast);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 600;
    color: var(--color-white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-normal);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-primary);
    text-shadow: none;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Cambios al hacer scroll */
.navbar.scrolled .nav-link {
    color: var(--color-dark);
    text-shadow: none;
}

.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active {
    color: var(--color-primary);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--color-white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    cursor: pointer;
}

.navbar.scrolled .nav-toggle {
    color: var(--color-dark);
    text-shadow: none;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    /* Al usar 'px' en lugar de 'vh' (alto de pantalla), garantizamos que la caja se reduzca físicamente cuando se hace zoom out. */
    min-height: 750px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Fondo de la sección principal */
    background-color: #1a1a1a;
    background-image: url('./imagenprincipal.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Degradado oscuro a la izquierda que se difumina hacia la derecha */
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-style: italic;
    transform: skewX(-5deg);
}

.badge-text-white {
    color: var(--color-white);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.6);
}

.badge-text-green {
    color: var(--color-primary-light);
    font-size: 3.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.6);
}

.badge-text-outline {
    color: var(--color-white);
    -webkit-text-stroke: 2px #0f172a;
    text-shadow: 3px 3px 0 #0f172a;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #f8fafc;
    margin-bottom: 2.5rem;
    max-width: 500px;
    font-weight: 400;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.9);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about {
    position: relative;
}

.about-stage {
    position: relative;
    overflow: hidden;
    min-height: 700px;
    border-radius: 0;
    display: flex;
    align-items: center;
    background-color: #0f172a;
    background-image: url('./imagen2.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.28);
}

.about-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 20%, rgba(255,255,255,0.18) 0, rgba(255,255,255,0) 34%),
        radial-gradient(circle at 92% 6%, rgba(52,211,153,0.3) 0, rgba(52,211,153,0) 38%);
}

.about-stage-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.44) 52%, rgba(0,0,0,0.12) 100%);
}

.about-stage-container {
    position: relative;
    z-index: 1;
}

.about-stage-content-wrap {
    display: block;
    align-items: center;
}

.about-stage-content {
    position: relative;
    z-index: 1;
    max-width: 660px;
    color: #f8fafc;
}

.about-stage-badge {
    margin-bottom: 1.15rem;
}

.about-stage-title {
    margin-bottom: 1.25rem;
}

.about-stage-subtitle {
    margin-bottom: 1.35rem;
}

.about-stage-tags {
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.about-stage-tags span {
    border: 1px solid rgba(167,243,208,0.42);
    border-radius: 999px;
    padding: 0.34rem 0.76rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ecfeff;
    background: rgba(15,23,42,0.38);
}

.about-stage-hashtag {
    margin: 1.05rem 0 0;
    font-size: clamp(1.2rem, 2.4vw, 1.6rem);
    font-weight: 800;
    color: #6ee7b7;
}

/* ==========================================================================
   PRODUCTS SECTION
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
    top: 0;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-img-box {
    height: 250px;
    background: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.placeholder-img {
    font-size: 4rem;
    color: var(--color-primary);
    transition: transform var(--transition-slow);
}

.product-card:hover .placeholder-img {
    transform: scale(1.1);
}

.product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-name {
    font-size: 1.4rem;
    color: var(--color-dark);
    font-weight: 700;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

/* ==========================================================================
   EXPERIENCE SECTION
   ========================================================================== */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.exp-item {
    padding: 2rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

.exp-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.exp-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(16,185,129,0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-primary);
}

.exp-item h4 {
    font-size: 1.2rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    position: relative;
    cursor: pointer;
}

.g-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #e2e8f0, #cbd5e1);
    transition: transform var(--transition-slow);
}

.gallery-item:hover .g-placeholder {
    transform: scale(1.05);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    position: relative;
    overflow: hidden;
    text-align: center;
    color: var(--color-white);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-dark), var(--color-primary-dark));
    z-index: -1;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 4rem 0 1rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 2fr 1fr;
    }
}

.footer-logo {
    width: 150px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 400px;
}

.footer-links h3 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.panel-miche-btn {
    display: inline-block;
    margin-top: 12px;
    border-radius: var(--radius-full);
    padding: 0.52rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #092a20;
    background: linear-gradient(135deg, #8bf5b6, #4ade80);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.panel-miche-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}

/* ==========================================================================
   FLOATING BUTTON
   ========================================================================== */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    transition: all 0.3s ease;
    animation: wa-pulse 2s infinite;
}

.wa-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.pqr-float {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 58px;
    height: 58px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 52%, #b91c1c 100%);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(185, 28, 28, 0.35);
    z-index: 101;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}

.pqr-float:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 28px rgba(185, 28, 28, 0.45);
    filter: saturate(1.06);
}

.pqr-float i {
    display: none;
}

.pqr-float span {
    font-size: 0.78rem;
}

.pqr-card {
    position: fixed;
    right: 30px;
    bottom: 160px;
    width: min(310px, calc(100vw - 40px));
    max-height: min(76vh, 560px);
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid #fca5a5;
    border-radius: 16px;
    box-shadow: 0 24px 42px rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(6px);
    padding: 12px;
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 101;
}

.pqr-card.active {
    display: flex;
}

.pqr-title {
    font-weight: 700;
    color: #991B1B;
    margin: 0;
    font-size: 1rem;
}

.pqr-form {
    display: grid;
    gap: 0.32rem;
}

.pqr-form label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #7f1d1d;
}

.pqr-form input,
.pqr-form textarea {
    width: 100%;
    border: 1px solid #fca5a5;
    border-radius: 10px;
    padding: 0.48rem 0.58rem;
    font-family: inherit;
    font-size: 0.84rem;
    color: #3f3f46;
    background: #fff;
}

.pqr-form textarea {
    min-height: 82px;
    resize: vertical;
}

.pqr-form input:focus-visible,
.pqr-form textarea:focus-visible {
    outline: none;
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.pqr-counter {
    margin: 0;
    text-align: right;
    font-size: 0.75rem;
    color: #7f1d1d;
}

.pqr-send-btn {
    border: none;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    color: #fff;
    padding: 0.56rem 0.84rem;
    font-size: 0.83rem;
    font-weight: 700;
    cursor: pointer;
}

.pqr-send-btn:hover {
    filter: brightness(1.05);
}

.pqr-status {
    margin: 0;
    min-height: 1.1rem;
    font-size: 0.78rem;
}

.pqr-status.success {
    color: #166534;
}

.pqr-status.error {
    color: #b91c1c;
}

.pqr-emails {
    padding-top: 0.25rem;
    border-top: 1px solid #fecaca;
    display: grid;
    gap: 0.2rem;
}

.pqr-subtitle {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    color: #991b1b;
}

.pqr-card a {
    color: #B91C1C;
    font-weight: 600;
    font-size: 0.88rem;
    word-break: break-word;
}

.pqr-card a:hover {
    text-decoration: underline;
}

.order-modal {
    position: fixed;
    inset: 0;
    display: none;
    padding: 12px;
    align-items: center;
    justify-content: center;
    z-index: 1200;
}

.order-modal.active {
    display: flex;
}

.order-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(2px);
}

.order-modal-content {
    position: relative;
    width: min(520px, calc(100vw - 30px));
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--color-white);
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
    padding: 1.4rem;
    z-index: 1;
}

.order-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eef2ff;
    color: #334155;
    cursor: pointer;
}

.order-modal-content h3 {
    font-size: 1.35rem;
    color: var(--color-dark);
    margin-bottom: 0.2rem;
}

.order-modal-note {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.order-form {
    display: grid;
    gap: 0.58rem;
}

.order-form label {
    font-size: 0.86rem;
    font-weight: 600;
    color: #1e293b;
}

.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 0.6rem 0.72rem;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-main);
    background: #ffffff;
}

.order-form input:focus-visible,
.order-form select:focus-visible,
.order-form textarea:focus-visible {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.order-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 10px;
    padding: 0.68rem 0.72rem;
    color: #14532d;
}

.order-status {
    min-height: 1.2rem;
    font-size: 0.88rem;
    margin-top: 0.3rem;
}

.order-status.success {
    color: #166534;
}

.order-status.error {
    color: #b91c1c;
}

/* ==========================================================================
   ANIMACIONES
   ========================================================================== */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
    100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MÓVIL)
   ========================================================================== */
@media (max-width: 991px) {
    .hero {
        min-height: 650px;
    }

    .hero-container {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 3rem;
        padding-left: 14px;
        padding-right: 14px;
    }
    
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.85) 100%);
    }

    .hero-title {
        font-size: 3.2rem;
    }
    
    .badge-text-green {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        margin: 0 0 2.5rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .about-stage {
        min-height: 640px;
        background-image: url('./imagen2.png');
        background-position: center;
    }

    .about-stage-overlay {
        background: linear-gradient(to bottom, rgba(4, 12, 24, 0.55) 0%, rgba(4, 12, 24, 0.85) 100%);
    }

    .about-stage-content-wrap {
        display: block;
    }

    .about-stage-content {
        max-width: 100%;
        text-align: center;
    }

    .about-stage-tags {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        background-image: url('./imagenprincipalv.png');
        background-position: top center;
    }

    .about-stage {
        background-image: url('./imagen2v.png');
        background-position: top center;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: var(--shadow-md);
        backdrop-filter: blur(10px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }
    
    .image-placeholder {
        width: 300px;
        height: 380px;
    }
    
    .section {
        padding: 70px 0;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 50px 0;
    }

    .hero-badge {
        font-size: 1.5rem;
    }

    .badge-text-green {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .cta-container h2 {
        font-size: 2rem;
    }

    .footer-container {
        gap: 2rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .wa-float {
        width: 56px;
        height: 56px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }

    .pqr-float {
        bottom: 86px;
        right: 20px;
        width: 52px;
        height: 52px;
        padding: 0;
    }

    .pqr-card {
        right: 20px;
        bottom: 136px;
        width: min(300px, calc(100vw - 32px));
    }

    .order-modal {
        align-items: flex-start;
        padding: 8px;
    }

    .order-modal-content {
        width: min(500px, calc(100vw - 20px));
        max-height: calc(100dvh - 16px);
        padding: 1.1rem;
    }
}

@media (min-width: 992px) {
    .pqr-float {
        bottom: 105px !important;
        right: 30px !important;
        width: 58px !important;
        height: 58px !important;
        padding: 0 !important;
    }

    .pqr-card {
        top: 86px !important;
        bottom: 142px !important;
        right: 24px !important;
        width: 286px !important;
        max-height: none !important;
        height: auto !important;
        overflow-y: auto !important;
        padding: 10px !important;
        gap: 5px !important;
    }

    .pqr-title {
        font-size: 0.92rem !important;
    }

    .pqr-form label,
    .pqr-subtitle,
    .pqr-counter,
    .pqr-status {
        font-size: 0.74rem !important;
    }

    .pqr-form input,
    .pqr-form textarea,
    .pqr-card a {
        font-size: 0.8rem !important;
    }

    .pqr-form textarea {
        min-height: 60px !important;
    }
}