/* ============================= */
/* VARIABLES CSS */
/* ============================= */
:root {
    --color-primary: #0a0f1e;
    --color-primary-light: #1a2a3a;
    --color-green: #22c55e;
    --color-green-dark: #16a34a;
    --color-green-gradient: linear-gradient(135deg, #22c55e, #16a34a);
    --color-white: #ffffff;
    --color-gray-100: #f8fafc;
    --color-gray-200: #e2e8f0;
    --color-gray-300: #cbd5e1;
    --color-gray-400: #94a3b8;
    --color-gray-500: #64748b;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1e293b;
    --color-gray-900: #0f172a;
    --color-whatsapp: #25d366;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============================= */
/* RESET & BASE */
/* ============================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-gray-100);
    color: var(--color-gray-900);
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

.highlight {
    color: var(--color-green);
    background: var(--color-green-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================= */
/* SCROLLBAR PERSONALIZADA */
/* ============================= */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-gray-100);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--color-green-dark);
}

/* ============================= */
/* NAVBAR GLASS */
/* ============================= */
.navbar-glass {
    background: rgba(10, 15, 30, 0.7) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-glass.navbar-scrolled {
    background: rgba(10, 15, 30, 0.9) !important;
    backdrop-filter: blur(30px) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-link {
    position: relative;
}

.nav-hover-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover .nav-hover-line,
.nav-link.active .nav-hover-line {
    width: 60%;
}

/* Botón presupuesto con glow */
.btn-presupuesto {
    position: relative;
    overflow: hidden;
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.btn-presupuesto:hover .btn-glow {
    opacity: 1;
}

/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero {
    padding: 80px 0 100px;
    background: var(--color-primary);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1), transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.15);
    color: var(--color-green);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .highlight {
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-gray-400);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-green-gradient);
    color: var(--color-white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(34, 197, 94, 0.6);
    color: var(--color-white);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    border: 2px solid var(--color-gray-700);
    transition: all var(--transition);
    background: transparent;
}

.btn-secondary:hover {
    border-color: var(--color-green);
    background: rgba(34, 197, 94, 0.1);
    transform: translateY(-3px);
    color: var(--color-white);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.2rem;
}

.hero-image {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--color-white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card i {
    color: #fbbf24;
    font-size: 1.5rem;
}

.hero-floating-card strong {
    display: block;
    font-size: 1.2rem;
    color: var(--color-gray-900);
}

.hero-floating-card span {
    font-size: 0.85rem;
    color: var(--color-gray-500);
}

/* ============================= */
/* SECCIÓN SERVICIOS */
/* ============================= */
.servicios {
    padding: 100px 0;
    background: var(--color-white);
}

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

.section-tag {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    color: var(--color-green);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-gray-900);
    margin-bottom: 16px;
}

.section-title .highlight {
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.servicio-card {
    background: var(--color-gray-100);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--color-gray-200);
}

.servicio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-green);
}

.servicio-icon {
    width: 70px;
    height: 70px;
    background: var(--color-green-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--color-white);
}

.servicio-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-gray-900);
}

.servicio-card p {
    color: var(--color-gray-500);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.servicio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-green);
    font-weight: 600;
    transition: var(--transition);
}

.servicio-link:hover {
    gap: 14px;
    color: var(--color-green-dark);
}

/* ============================= */
/* SECCIÓN BENEFICIOS */
/* ============================= */
.beneficios {
    padding: 100px 0;
    background: var(--color-gray-100);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.beneficio-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.beneficio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.beneficio-icon {
    width: 60px;
    height: 60px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.8rem;
    color: var(--color-green);
    transition: var(--transition);
}

.beneficio-item:hover .beneficio-icon {
    background: var(--color-green-gradient);
    color: var(--color-white);
    transform: scale(1.1);
}

.beneficio-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.beneficio-item p {
    color: var(--color-gray-500);
    font-size: 0.95rem;
}

/* ============================= */
/* SECCIÓN TESTIMONIOS */
/* ============================= */
.testimonios {
    padding: 100px 0;
    background: var(--color-white);
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonio-card {
    background: var(--color-gray-100);
    padding: 30px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    border: 1px solid var(--color-gray-200);
}

.testimonio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-green);
}

.testimonio-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.testimonio-text {
    font-size: 1.05rem;
    color: var(--color-gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonio-author strong {
    display: block;
    font-size: 1.05rem;
    color: var(--color-gray-900);
}

.testimonio-author span {
    font-size: 0.9rem;
    color: var(--color-gray-500);
}

/* ============================= */
/* CTA SECTION */
/* ============================= */
.cta-section {
    padding: 100px 0;
    background: var(--color-primary);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--color-gray-400);
    max-width: 600px;
    margin: 0 auto 32px;
}

/* ============================= */
/* SECCIÓN CONTACTO */
/* ============================= */
.contacto {
    padding: 100px 0;
    background: var(--color-white);
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--color-gray-100);
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid var(--color-gray-200);
}

.contacto-item:hover {
    border-color: var(--color-green);
    transform: translateX(5px);
}

.contacto-icon {
    width: 50px;
    height: 50px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-green);
    flex-shrink: 0;
}

.contacto-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-gray-500);
}

.contacto-item span {
    font-size: 1.05rem;
    color: var(--color-gray-900);
    font-weight: 600;
}

.contacto-whatsapp {
    display: flex;
    align-items: center;
}

.whatsapp-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--color-whatsapp);
    color: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    width: 100%;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
    color: var(--color-white);
}

.whatsapp-card .fa-whatsapp {
    font-size: 3rem;
}

.whatsapp-card div span {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

.whatsapp-card div small {
    font-size: 0.9rem;
    opacity: 0.9;
}

.whatsapp-card .fa-arrow-right {
    font-size: 1.5rem;
    margin-left: auto;
    transition: transform var(--transition);
}

.whatsapp-card:hover .fa-arrow-right {
    transform: translateX(8px);
}

/* ============================= */
/* WHATSAPP FLOTANTE */
/* ============================= */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 14px;
}

.whatsapp-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--color-green-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(34, 197, 94, 0.5);
    transition: all var(--transition);
    animation: pulse-whatsapp 2.5s infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 6px 24px rgba(34, 197, 94, 0.5); }
    50% { box-shadow: 0 6px 40px rgba(34, 197, 94, 0.8); }
}

.whatsapp-btn:hover {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 8px 40px rgba(34, 197, 94, 0.7);
}

.whatsapp-btn i {
    font-size: 34px;
    color: var(--color-white);
}

.whatsapp-tooltip {
    background: var(--color-white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition);
    pointer-events: none;
    white-space: nowrap;
    position: relative;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid var(--color-white);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-tooltip-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-gray-900);
}

.whatsapp-tooltip-sub {
    display: block;
    font-size: 0.8rem;
    color: var(--color-gray-500);
}

.whatsapp-scrolling .whatsapp-btn {
    opacity: 0.5;
    pointer-events: none;
}

/* ============================= */
/* FOOTER MOBILE-FIRST */
/* ============================= */
.footer-mobile-first {
    background: var(--color-primary);
    color: var(--color-gray-400);
    padding: 30px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
}

/* ===== ONDAS EN EL FOOTER ===== */
.footer-waves {
    position: relative;
    width: 100%;
    height: 80px;
    overflow: hidden;
    margin-top: -80px;
}

.footer-waves svg {
    width: 100%;
    height: 100%;
}

.wave {
    fill: #0a0f1e;
    opacity: 0.4;
    animation: waveMove 6s ease-in-out infinite;
}

.wave1 {
    opacity: 0.6;
    animation-delay: 0s;
}

.wave2 {
    opacity: 0.3;
    animation-delay: -2s;
}

.wave3 {
    opacity: 0.5;
    animation-delay: -4s;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10%); }
}

/* ===== BRAND ===== */
.footer-brand-mobile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 16px;
}

.brand-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--color-green-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.25);
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    display: block;
    line-height: 1.2;
}

.brand-name .highlight {
    -webkit-text-fill-color: transparent;
}

.brand-tag {
    font-size: 0.75rem;
    color: var(--color-gray-500);
    display: block;
}

/* ===== ACORDEÓN ===== */
.footer-accordion {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 20px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.accordion-header {
    width: 100%;
    padding: 14px 16px;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background var(--transition);
    font-family: var(--font-family);
    -webkit-tap-highlight-color: transparent;
}

.accordion-header:hover,
.accordion-header:focus {
    background: rgba(255, 255, 255, 0.04);
}

.accordion-header i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    color: var(--color-gray-400);
}

.accordion-header[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body.open {
    max-height: 500px;
}

.accordion-body ul {
    list-style: none;
    padding: 0 16px 16px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-body ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.accordion-body ul li a,
.accordion-body ul li span {
    color: var(--color-gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
    padding: 6px 0;
    width: 100%;
}

.accordion-body ul li a:active {
    color: var(--color-green);
}

.accordion-body ul li i {
    color: var(--color-green);
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
}

/* ===== CONTACTO ===== */
.contact-list li {
    gap: 12px !important;
}

.contact-list li a {
    word-break: break-all;
}

/* ===== SOCIAL ===== */
.social-row {
    display: flex;
    gap: 12px;
    padding: 4px 16px 16px;
    flex-wrap: wrap;
}

.social-icon {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all var(--transition);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.social-icon:active {
    transform: scale(0.92);
}

.social-icon.insta:hover,
.social-icon.insta:active { background: #E4405F; border-color: #E4405F; }
.social-icon.fb:hover,
.social-icon.fb:active { background: #1877F2; border-color: #1877F2; }
.social-icon.yt:hover,
.social-icon.yt:active { background: #FF0000; border-color: #FF0000; }
.social-icon.ws:hover,
.social-icon.ws:active { background: #25D366; border-color: #25D366; }

/* ===== SOCIAL TOOLTIPS ===== */
.social-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.social-icon:hover .social-tooltip {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* ===== NEWSLETTER ===== */
.footer-newsletter-mobile {
    padding: 16px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 16px;
}

.footer-newsletter-mobile p {
    font-size: 0.85rem;
    color: var(--color-gray-400);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-newsletter-mobile p i {
    color: var(--color-green);
}

.newsletter-form-mobile {
    display: flex;
    gap: 8px;
}

.newsletter-form-mobile input {
    flex: 1;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-gray-800);
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-white);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition);
    min-height: 48px;
}

.newsletter-form-mobile input:focus {
    border-color: var(--color-green);
}

.newsletter-form-mobile input::placeholder {
    color: var(--color-gray-500);
}

.newsletter-form-mobile button {
    padding: 12px 18px;
    min-height: 48px;
    border-radius: var(--radius-sm);
    border: none;
    background: var(--color-green-gradient);
    color: var(--color-white);
    cursor: pointer;
    transition: all var(--transition);
    font-size: 1rem;
    min-width: 48px;
}

.newsletter-form-mobile button:active {
    transform: scale(0.95);
}

/* ===== BOTTOM BAR ===== */
.footer-bottom-mobile {
    padding: 16px 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-gray-500);
}

.footer-bottom-mobile p {
    margin: 0;
}

.bottom-links {
    display: flex;
    gap: 16px;
}

.bottom-links a {
    color: var(--color-gray-500);
    text-decoration: none;
    transition: color var(--transition);
    font-size: 0.75rem;
}

.bottom-links a:active {
    color: var(--color-green);
}

.credit-link {
    color: var(--color-gray-500);
    text-decoration: none;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
}

.credit-link i {
    color: var(--color-green);
}

.credit-link:active {
    color: var(--color-white);
}

/* ============================= */
/* LIGHTBOX */
/* ============================= */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--color-white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
}

.close-lightbox:hover {
    transform: rotate(90deg);
}

/* ============================================================ */
/* HERO CINEMÁTICO */
/* ============================================================ */
.hero-cinematic {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-primary);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-glow {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.12), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Partículas */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-200px) rotate(720deg); opacity: 0; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(34, 197, 94, 0.12);
    color: var(--color-green);
    padding: 6px 18px 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.2);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-green);
    animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero-title .highlight-gradient {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-underline {
    position: relative;
    display: inline-block;
}

.hero-underline::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-green-gradient);
    border-radius: 2px;
    opacity: 0.4;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-gray-400);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-gray-500);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.hero-image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), transparent 50%);
    pointer-events: none;
}

/* Floating Cards */
.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: floatY 4s ease-in-out infinite;
}

.hero-floating-card:nth-child(2) { animation-delay: 1s; }

.hero-floating-card.second {
    bottom: 30px;
    right: -20px;
    animation-delay: 2s;
}

.floating-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-white);
}

.hero-floating-card:first-child .floating-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.hero-floating-card.second .floating-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.hero-floating-card strong {
    display: block;
    font-size: 1.1rem;
    color: var(--color-white);
    font-weight: 700;
}

.hero-floating-card span {
    font-size: 0.75rem;
    color: var(--color-gray-400);
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-gray-500);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.4;
    animation: fadeInDown 2s ease-out 1s both;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--color-gray-500);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--color-gray-500);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
    to { opacity: 0.4; transform: translateX(-50%) translateY(0); }
}

/* ============================================================ */
/* SERVICIOS PREMIUM */
/* ============================================================ */
.servicios-premium {
    padding: 100px 0;
    background: var(--color-white);
}

.servicios-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.servicio-card-premium {
    position: relative;
    background: var(--color-gray-100);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--color-gray-200);
    overflow: hidden;
}

.servicio-card-premium:hover {
    transform: translateY(-8px);
    border-color: var(--color-green);
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.15);
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(34, 197, 94, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.servicio-card-premium:hover .card-glow {
    opacity: 1;
}

.card-number {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-gray-300);
    letter-spacing: 1px;
}

.servicio-icon-premium {
    width: 72px;
    height: 72px;
    background: var(--color-green-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--color-white);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.25);
    transition: transform 0.4s ease;
}

.servicio-card-premium:hover .servicio-icon-premium {
    transform: scale(1.08) rotate(-4deg);
}

.servicio-card-premium h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-gray-900);
}

.servicio-card-premium p {
    color: var(--color-gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.servicio-link-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-green);
    font-weight: 600;
    transition: all 0.3s ease;
}

.servicio-link-premium:hover {
    gap: 16px;
    color: var(--color-green-dark);
}

/* ============================================================ */
/* BENEFICIOS PREMIUM */
/* ============================================================ */
.beneficios-premium {
    padding: 100px 0;
    background: var(--color-gray-100);
}

.beneficios-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.beneficio-item-premium {
    text-align: center;
    padding: 35px 24px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.beneficio-item-premium:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.beneficio-icon-premium {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-green);
}

.beneficio-icon-premium i {
    position: relative;
    z-index: 2;
}

.icon-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: ringRotate 20s linear infinite;
}

.icon-ring circle {
    fill: none;
    stroke: var(--color-green);
    stroke-width: 2;
    stroke-dasharray: 251;
    stroke-dashoffset: 251;
    transition: stroke-dashoffset 0.8s ease;
}

.beneficio-item-premium:hover .icon-ring circle {
    stroke-dashoffset: 0;
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.beneficio-item-premium h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.beneficio-item-premium p {
    color: var(--color-gray-500);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ============================================================ */
/* TESTIMONIOS MARQUEE */
/* ============================================================ */
.testimonios-premium {
    padding: 100px 0;
    background: var(--color-white);
    overflow: hidden;
}

.testimonios-marquee {
    overflow: hidden;
    margin-top: 40px;
}

.marquee-track {
    display: flex;
    gap: 30px;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonio-card-premium {
    min-width: 320px;
    max-width: 320px;
    background: var(--color-gray-100);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-200);
    transition: all 0.3s ease;
}

.testimonio-card-premium:hover {
    border-color: var(--color-green);
    box-shadow: var(--shadow-md);
}

.testimonio-stars {
    color: #fbbf24;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.testimonio-text {
    font-size: 1rem;
    color: var(--color-gray-700);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonio-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-green-gradient);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonio-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-gray-900);
}

.testimonio-author span {
    font-size: 0.8rem;
    color: var(--color-gray-500);
}

/* ============================================================ */
/* CTA PREMIUM */
/* ============================================================ */
.cta-premium {
    padding: 100px 0;
    background: var(--color-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 50%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--color-gray-400);
    max-width: 560px;
    margin: 0 auto 32px;
}

/* ============================================================ */
/* CONTACTO PREMIUM */
/* ============================================================ */
.contacto-premium {
    padding: 100px 0;
    background: var(--color-white);
}

.contacto-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contacto-info-premium {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contacto-item-premium {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    background: var(--color-gray-100);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid var(--color-gray-200);
}

.contacto-item-premium:hover {
    border-color: var(--color-green);
    transform: translateX(6px);
}

.contacto-icon-premium {
    width: 48px;
    height: 48px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-green);
    flex-shrink: 0;
}

.contacto-item-premium strong {
    display: block;
    font-size: 0.8rem;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contacto-item-premium a,
.contacto-item-premium span {
    font-size: 1rem;
    color: var(--color-gray-900);
    font-weight: 600;
}

.contacto-item-premium a:hover {
    color: var(--color-green);
}

.contacto-social-premium {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.contacto-social-premium a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-gray-100);
    border: 1px solid var(--color-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-500);
    transition: all 0.3s ease;
}

.contacto-social-premium a:hover {
    background: var(--color-green);
    border-color: var(--color-green);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* WhatsApp Card */
.contacto-whatsapp-premium {
    display: flex;
    align-items: center;
}

.whatsapp-card-premium {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #25d366;
    color: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    width: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.3);
    text-decoration: none;
}

.whatsapp-card-premium:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 50px rgba(37, 211, 102, 0.5);
    color: var(--color-white);
}

.whatsapp-card-premium .fa-whatsapp {
    font-size: 3.2rem;
}

.whatsapp-card-premium div span {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

.whatsapp-card-premium div small {
    font-size: 0.9rem;
    opacity: 0.9;
}

.whatsapp-card-premium .fa-arrow-right {
    font-size: 1.5rem;
    margin-left: auto;
    transition: transform 0.4s ease;
}

.whatsapp-card-premium:hover .fa-arrow-right {
    transform: translateX(10px);
}

/* ============================================================ */
/* HERO CINEMÁTICO DE GALERÍA */
/* ============================================================ */
.galeria-hero-premium {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: var(--color-primary);
    overflow: hidden;
    padding: 140px 0 80px;
}

.galeria-hero-premium .hero-bg-glow {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
}

.galeria-hero-premium .hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.galeria-hero-premium .particle {
    position: absolute;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

.galeria-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.galeria-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(34, 197, 94, 0.12);
    color: var(--color-green);
    padding: 6px 20px 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.2);
    margin-bottom: 24px;
}

.galeria-badge-premium .badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-green);
    animation: dotPulse 1.5s ease-in-out infinite;
}

.galeria-title-premium {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.05;
    margin-bottom: 16px;
}

.galeria-title-premium .highlight-gradient {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.galeria-subtitle-premium {
    font-size: 1.15rem;
    color: var(--color-gray-400);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.galeria-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--color-gray-500);
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================ */
/* FILTROS PREMIUM */
/* ============================================================ */
.galeria-filtros-premium {
    padding: 24px 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 76px;
    z-index: 100;
}

.filtros-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.filtros-scroll {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filtro-btn-premium {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-gray-400);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.filtro-btn-premium i {
    font-size: 0.85rem;
}

.filtro-btn-premium:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
    color: var(--color-white);
}

.filtro-btn-premium.active {
    background: var(--color-green-gradient);
    border-color: var(--color-green);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.filtros-count {
    color: var(--color-gray-500);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.filtros-count span {
    color: var(--color-white);
    font-weight: 700;
}

/* ============================================================ */
/* GALERÍA MASONRY PREMIUM */
/* ============================================================ */
.galeria-grid-premium {
    padding: 60px 0 100px;
    background: var(--color-gray-100);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item-premium {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gallery-item-inner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-inner:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 30, 0.85), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.gallery-item-inner:hover .gallery-item-overlay {
    opacity: 1;
}

.overlay-content {
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-inner:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content .item-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-green);
    background: rgba(34, 197, 94, 0.15);
    padding: 2px 12px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.overlay-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.overlay-actions {
    display: flex;
    gap: 10px;
}

.btn-expand {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.btn-expand:hover {
    background: var(--color-green);
    border-color: var(--color-green);
    transform: scale(1.1);
}

/* ============================================================ */
/* EMPTY STATE */
/* ============================================================ */
.gallery-empty {
    display: none;
    text-align: center;
    padding: 80px 20px;
    color: var(--color-gray-500);
}

.gallery-empty i {
    font-size: 3rem;
    color: var(--color-gray-300);
    margin-bottom: 16px;
}

.gallery-empty h3 {
    font-size: 1.3rem;
    color: var(--color-gray-700);
    margin-bottom: 8px;
}

/* ============================================================ */
/* ESTADÍSTICAS PREMIUM */
/* ============================================================ */
.galeria-stats-premium {
    padding: 80px 0;
    background: var(--color-primary);
}

.stats-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item-premium {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.5rem;
    color: var(--color-green);
    transition: all 0.3s ease;
}

.stat-item-premium:hover .stat-icon {
    background: var(--color-green-gradient);
    color: var(--color-white);
    transform: scale(1.1);
}

.stat-number-premium {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label-premium {
    font-size: 0.9rem;
    color: var(--color-gray-400);
    font-weight: 500;
}

/* ============================================================ */
/* LIGHTBOX ULTRA MODERNO */
/* ============================================================ */
.lightbox-premium {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 40px;
}

.lightbox-premium.show {
    opacity: 1;
}

.lightbox-close-premium {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
    opacity: 0.6;
}

.lightbox-close-premium:hover {
    transform: rotate(90deg);
    opacity: 1;
}

.lightbox-nav-premium {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
}

.lightbox-nav-premium:hover {
    background: rgba(34, 197, 94, 0.3);
    border-color: var(--color-green);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-content-wrapper {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
}

.lightbox-content-wrapper img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-info {
    position: absolute;
    bottom: -56px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background: rgba(10, 15, 30, 0.8);
    backdrop-filter: blur(20px);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.lightbox-info .lightbox-category {
    font-size: 0.7rem;
    color: var(--color-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.lightbox-info h3 {
    font-size: 1rem;
    color: var(--color-white);
    font-weight: 600;
}

.lightbox-counter {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-gray-500);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ============================================================ */
/* RESPONSIVE */
/* ============================================================ */
@media (max-width: 1024px) {
    .galeria-title-premium {
        font-size: 3rem;
    }
    
    .stats-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .galeria-hero-premium {
        padding: 100px 0 60px;
        min-height: 50vh;
    }
    
    .galeria-title-premium {
        font-size: 2.4rem;
    }
    
    .galeria-subtitle-premium {
        font-size: 1rem;
    }
    
    .galeria-hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .filtros-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .filtros-scroll {
        justify-content: center;
    }
    
    .filtros-count {
        text-align: center;
    }
    
    .filtro-btn-premium {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .filtro-btn-premium i {
        font-size: 0.75rem;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .stats-grid-premium {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-number-premium {
        font-size: 2.2rem;
    }
    
    .lightbox-premium {
        padding: 16px;
    }
    
    .lightbox-nav-premium {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    
    .lightbox-info {
        bottom: -48px;
        padding: 8px 16px;
    }
    
    .lightbox-counter {
        bottom: -80px;
    }
}

@media (max-width: 480px) {
    .galeria-title-premium {
        font-size: 1.8rem;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stats-grid-premium {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .stat-number-premium {
        font-size: 1.8rem;
    }
    
    .stat-label-premium {
        font-size: 0.8rem;
    }
    
    .filtros-scroll {
        gap: 6px;
    }
    
    .filtro-btn-premium {
        padding: 6px 12px;
        font-size: 0.75rem;
        gap: 4px;
    }
    
    .overlay-content h3 {
        font-size: 0.95rem;
    }
}

/* ============================================================ */
/* FORM HERO */
/* ============================================================ */
.form-hero-premium {
    position: relative;
    padding: 120px 0 60px;
    background: var(--color-primary);
    overflow: hidden;
    text-align: center;
}

.form-hero-premium .hero-bg-glow {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
}

.form-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.form-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(34, 197, 94, 0.12);
    color: var(--color-green);
    padding: 6px 20px 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.2);
    margin-bottom: 20px;
}

.form-hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-green);
    animation: dotPulse 1.5s ease-in-out infinite;
}

.form-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 16px;
}

.form-hero-title .highlight-gradient {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-gray-400);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================================ */
/* FORM SECTION */
/* ============================================================ */
.form-section-premium {
    padding: 60px 0 80px;
    background: var(--color-gray-100);
}

.form-wrapper-premium {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-gray-200);
}

.form-header-premium {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-gray-200);
}

.form-header-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-green-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-white);
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.25);
}

.form-header-premium h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin: 0;
}

.form-header-premium p {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    margin: 0;
}

/* ============================================================ */
/* FORM FIELDS - CORREGIDO */
/* ============================================================ */
.form-group-premium {
    margin-bottom: 28px;
}

.form-field-wrapper {
    position: relative;
}

.form-field-wrapper .form-field-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gray-400);
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.form-field-wrapper.textarea-wrapper .form-field-icon {
    top: 20px;
    transform: none;
}

/* ===== INPUTS ===== */
.form-field-wrapper input,
.form-field-wrapper textarea {
    width: 100%;
    padding: 16px 16px 8px 48px;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-family);
    background: var(--color-white);
    transition: all 0.3s ease;
    outline: none;
    color: var(--color-gray-900);
    position: relative;
    z-index: 1;
    height: 56px;
}

.form-field-wrapper textarea {
    min-height: 120px;
    resize: vertical;
    padding-top: 24px;
    height: auto;
}

.form-field-wrapper input:focus,
.form-field-wrapper textarea:focus {
    border-color: var(--color-green);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.form-field-wrapper input.is-valid,
.form-field-wrapper textarea.is-valid {
    border-color: #22c55e;
}

.form-field-wrapper input.is-invalid,
.form-field-wrapper textarea.is-invalid {
    border-color: #ef4444;
}

.form-field-wrapper input.is-invalid ~ .form-field-error,
.form-field-wrapper textarea.is-invalid ~ .form-field-error {
    display: flex;
}

/* Placeholder transparente para que funcione el label flotante */
.form-field-wrapper input::placeholder,
.form-field-wrapper textarea::placeholder {
    color: transparent;
}

.form-field-wrapper input:focus::placeholder,
.form-field-wrapper textarea:focus::placeholder {
    color: var(--color-gray-400);
}

/* ===== LABEL FLOTANTE ===== */
.form-label-float {
    position: absolute;
    left: 48px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gray-500);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 2;
    background: transparent;
    padding: 0 4px;
    line-height: 1;
}

.form-field-wrapper.textarea-wrapper .form-label-float {
    top: 22px;
    transform: none;
}

/* Label activo (cuando el input tiene focus o texto) */
.form-field-wrapper.focused .form-label-float,
.form-field-wrapper .form-label-float.active {
    top: -2px;
    left: 44px;
    font-size: 0.7rem;
    color: var(--color-green);
    background: var(--color-white);
    padding: 0 8px;
    transform: none;
    z-index: 3;
}

.form-field-wrapper.textarea-wrapper.focused .form-label-float,
.form-field-wrapper.textarea-wrapper .form-label-float.active {
    top: -2px;
}

/* ===== FIELD LINE ===== */
.form-field-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-green);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.form-field-wrapper.focused .form-field-line {
    width: 100%;
    left: 0;
}

/* ===== ERROR MESSAGE ===== */
.form-field-error {
    display: none;
    align-items: center;
    gap: 6px;
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 6px;
    padding-left: 4px;
}

.form-field-error i {
    font-size: 0.85rem;
}

/* ============================================================ */
/* SUBMIT BUTTON */
/* ============================================================ */
.form-submit-premium {
    margin-top: 32px;
}

.btn-submit-premium {
    position: relative;
    width: 100%;
    padding: 18px 32px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--color-green-gradient);
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-family);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 60px;
}

.btn-submit-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
}

.btn-submit-premium:active {
    transform: scale(0.98);
}

.btn-submit-premium.loading {
    opacity: 0.8;
    cursor: not-allowed;
}

.btn-submit-premium .btn-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-submit-premium:hover .btn-shimmer {
    transform: translateX(100%);
}

.btn-submit-premium .btn-loader {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-footer-text {
    text-align: center;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--color-gray-500);
}

.form-footer-text i {
    color: var(--color-green);
    margin-right: 4px;
}

/* ============================================================ */
/* WHATSAPP BANNER */
/* ============================================================ */
.form-whatsapp-premium {
    padding: 0 0 80px;
    background: var(--color-gray-100);
}

.whatsapp-banner-premium {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #25d366, #128C7E);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    color: var(--color-white);
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-banner-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.whatsapp-banner-premium h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.whatsapp-banner-premium p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
}

.whatsapp-banner-premium > div {
    flex: 1;
}

.whatsapp-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    background: var(--color-white);
    color: #25d366;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.whatsapp-banner-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    color: #128C7E;
}

.whatsapp-banner-btn i:last-child {
    transition: transform 0.3s ease;
}

.whatsapp-banner-btn:hover i:last-child {
    transform: translateX(4px);
}

/* ============================================================ */
/* RESPONSIVE */
/* ============================================================ */
@media (max-width: 768px) {
    .form-hero-premium {
        padding: 100px 0 40px;
    }
    
    .form-hero-title {
        font-size: 2.4rem;
    }
    
    .form-wrapper-premium {
        padding: 24px 20px;
        margin: 0 16px;
    }
    
    .form-header-premium {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .form-field-wrapper input,
    .form-field-wrapper textarea {
        padding-left: 44px;
        font-size: 0.95rem;
    }
    
    .form-label-float {
        left: 44px;
        font-size: 0.95rem;
    }
    
    .form-field-wrapper.textarea-wrapper .form-label-float {
        left: 44px;
    }
    
    .whatsapp-banner-premium {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        margin: 0 16px;
    }
    
    .whatsapp-banner-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .form-hero-title {
        font-size: 1.8rem;
    }
    
    .form-hero-subtitle {
        font-size: 1rem;
    }
    
    .form-header-premium h2 {
        font-size: 1.3rem;
    }
    
    .btn-submit-premium {
        font-size: 1rem;
        padding: 16px 24px;
        min-height: 52px;
    }
    
    .whatsapp-banner-premium h4 {
        font-size: 1rem;
    }
}

/* ============================================================ */
/* RESPONSIVE PREMIUM */
/* ============================================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 24px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-floating-card.second {
        display: none;
    }
    
    .contacto-grid-premium {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-img {
        height: 280px;
    }
    
    .hero-floating-card {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .hero-floating-card:first-child {
        bottom: -10px;
        left: 10px;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .testimonio-card-premium {
        min-width: 280px;
        max-width: 280px;
    }
    
    .servicios-grid-premium {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .beneficios-grid-premium {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .beneficios-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
    }
    
    .stat-divider {
        display: none;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}