/* ============================================
   LAPAROTEC - Stylesheet Consolidd
   ============================================ */

/* ----------------------------------------
   CSS Variables / Root
   ---------------------------------------- */
:root {
    /* Colors */
    --primary-blue: #0066CC;
    --primary-blue-dark: #0052a3;
    --primary-blue-light: #3399FF;
    --navy-deep: #0a1628;
    --navy-medium: #1a2a4a;
    --navy-light: #2a3a5a;
    --teal: #00B4D8;
    --teal-dark: #0096B4;
    --teal-light: #48CAE4;
    --cyan: #90E0EF;
    --white: #FFFFFF;
    --light-gray: #F8FAFC;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --text-dark: #0F172A;
    --text-body: #334155;
    --text-muted: #64748B;
    --success: #10B981;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal) 100%);
    --gradient-dark: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-medium) 100%);
    --gradient-teal: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 40px rgba(0, 180, 216, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------------------------------------
   Base Styles / Reset
   ---------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-body);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ----------------------------------------
   Utility Classes
   ---------------------------------------- */
.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-padding {
    padding: 120px 0;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ----------------------------------------
   Section Tags & Titles
   ---------------------------------------- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--teal);
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 50px;
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.7;
}

/* ----------------------------------------
   Buttons
   ---------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

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

.btn-primary {
    background: var(--gradient-teal);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy-deep);
    border-color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--teal);
}

.btn-white:hover {
    background: var(--gray-100);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ----------------------------------------
   Header
   ---------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 48px;
    width: auto;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-deep);
}

.logo-text span {
    color: var(--teal);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-body);
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

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

.nav-link.active {
    color: var(--teal);
}

.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 24px;
    font-size: 0.875rem;
    border-radius: 10px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn svg {
    width: 28px;
    height: 28px;
    color: var(--navy-deep);
}

/* ----------------------------------------
   Hero Section (Index)
   ---------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy-deep);
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(26, 42, 74, 0.80) 40%, rgba(0, 82, 163, 0.75) 100%),
                url('https://images.unsplash.com/photo-1551076805-e1869033e561?w=1920&q=85&auto=format');
    background-size: cover;
    background-position: center;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(0, 180, 216, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(0, 102, 204, 0.2) 0%, transparent 50%);
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    animation: float-glow 8s ease-in-out infinite;
}

.hero-glow-1 {
    top: -200px;
    right: -100px;
    background: rgba(0, 180, 216, 0.3);
}

.hero-glow-2 {
    bottom: -200px;
    left: -100px;
    background: rgba(0, 102, 204, 0.4);
    animation-delay: -4s;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge-dot {
    width: 10px;
    height: 10px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px var(--teal);
}

.hero-badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    max-width: 1350px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 50%, var(--teal-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 520px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* ----------------------------------------
   Page Hero (Inner Pages)
   ---------------------------------------- */
.page-hero {
    background: var(--navy-deep);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 180, 216, 0.15) 0%, transparent 50%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.page-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.125rem;
    line-height: 1.7;
}

.page-hero .highlight {
    color: var(--teal);
    font-weight: 600;
}

/* ----------------------------------------
   Services Section (Index)
   ---------------------------------------- */
.services {
    background: var(--white);
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 16px;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--teal);
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ----------------------------------------
   Products Section (Index)
   ---------------------------------------- */
.products {
    background: var(--gray-50);
    position: relative;
}

.products-header {
    text-align: center;
    margin-bottom: 64px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image svg {
    width: 80px;
    height: 80px;
    color: var(--gray-400);
}

.product-content {
    padding: 32px;
}

.product-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.product-content p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ----------------------------------------
   Process Section (Index)
   ---------------------------------------- */
.process {
    background: var(--white);
    position: relative;
}

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

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-teal);
    border-radius: 50%;
    margin: 0 auto 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.4);
}

.process-step h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ----------------------------------------
   Testimonials Section (Index)
   ---------------------------------------- */
.testimonials {
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 180, 216, 0.1) 0%, transparent 50%);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.testimonials-header .section-tag {
    background: rgba(0, 180, 216, 0.2);
}

.testimonials-header .section-title {
    color: var(--white);
}

.testimonials-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    color: #FFD700;
    fill: #FFD700;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.testimonial-info h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* ----------------------------------------
   Importance Section (Index)
   ---------------------------------------- */
.importance {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.importance-header {
    text-align: center;
    margin-bottom: 64px;
}

.importance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 64px;
}

.importance-card {
    text-align: center;
    padding: 40px 32px;
}

.importance-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    margin: 0 auto 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.importance-icon svg {
    width: 48px;
    height: 48px;
    color: var(--teal);
}

.importance-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.importance-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.importance-cta {
    text-align: center;
    padding: 48px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.importance-cta h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.importance-cta p {
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ----------------------------------------
   CTA Section
   ---------------------------------------- */
.cta {
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 180, 216, 0.15) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ----------------------------------------
   Footer
   ---------------------------------------- */
.footer {
    background: var(--navy-deep);
    padding: 80px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    line-height: 1.7;
}

.footer h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* ----------------------------------------
   WhatsApp Float Button
   ---------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 64px;
    height: 64px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    transition: all var(--transition-base);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 36px;
    height: 36px;
    color: white;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}

@keyframes float-glow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

/* ============================================
   PAGE-SPECIFIC STYLES
   ============================================ */

/* ----------------------------------------
   About Page (Nosotros)
   ---------------------------------------- */
.about-intro {
    background: var(--white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border-radius: 24px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-image svg {
    width: 200px;
    height: 200px;
    color: var(--gray-300);
}

.about-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-content .highlight {
    color: var(--teal);
    font-weight: 600;
}

/* Mission Vision */
.mission-vision {
    background: var(--gray-50);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mv-card {
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.mv-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 50%;
    margin: 0 auto 24px;
}

.mv-icon svg {
    width: 40px;
    height: 40px;
    color: var(--teal);
}

.mv-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.mv-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Target Audience */
.target {
    background: var(--white);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.target-card {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 48px;
    border-left: 4px solid var(--teal);
}

.target-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.target-card h3 svg {
    width: 32px;
    height: 32px;
    color: var(--teal);
}

.target-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.target-list {
    margin-top: 16px;
    padding-left: 0;
    list-style: none;
}

.target-list li {
    color: var(--text-body);
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.target-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
}

/* Differentiators */
.differentiators {
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
}

.differentiators-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 180, 216, 0.15) 0%, transparent 50%);
}

.differentiators .section-tag {
    background: rgba(0, 180, 216, 0.2);
}

.differentiators .section-title {
    color: var(--white);
}

.differentiators .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.diff-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all var(--transition-base);
}

.diff-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.diff-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-teal);
    border-radius: 50%;
    margin: 0 auto 24px;
}

.diff-icon svg {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.diff-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.diff-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Brands */
.brands {
    background: var(--gray-50);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.brand-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.brand-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.brand-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ----------------------------------------
   Services Page
   ---------------------------------------- */
.services-overview {
    background: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.overview-card {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-teal);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.overview-card:hover::before {
    transform: scaleX(1);
}

.overview-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-md);
}

.overview-icon svg {
    width: 40px;
    height: 40px;
    color: var(--teal);
}

.overview-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.overview-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* Integral Service */
.integral {
    background: var(--gray-50);
}

.integral-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.integral-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.integral-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.integral-list {
    list-style: none;
    margin-top: 32px;
}

.integral-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.integral-list li .icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.integral-list li .icon svg {
    width: 24px;
    height: 24px;
    color: var(--teal);
}

.integral-list li h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.integral-list li p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9375rem;
}

.integral-image {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-medium) 100%);
    border-radius: 24px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.integral-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 180, 216, 0.2) 0%, transparent 50%);
}

.integral-image svg {
    width: 200px;
    height: 200px;
    color: var(--teal);
    opacity: 0.5;
}

/* Billing Service */
.billing {
    background: var(--white);
}

.billing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.billing-image {
    background: var(--gray-50);
    border-radius: 24px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.billing-image svg {
    width: 200px;
    height: 200px;
    color: var(--gray-300);
}

.billing-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.billing-content p {
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.billing-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.billing-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.billing-feature .check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

.billing-feature .check svg {
    width: 14px;
    height: 14px;
    color: var(--teal);
}

.billing-feature p {
    color: var(--text-body);
    font-size: 0.9375rem;
    margin: 0;
}

/* Clips Service */
.clips {
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
}

.clips-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 180, 216, 0.15) 0%, transparent 50%);
}

.clips .section-tag {
    background: rgba(0, 180, 216, 0.2);
}

.clips .section-title {
    color: var(--white);
}

.clips .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.clips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.clip-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all var(--transition-base);
}

.clip-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.clip-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-teal);
    border-radius: 50%;
    margin: 0 auto 24px;
}

.clip-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.clip-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.clip-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Towers */
.towers {
    background: var(--gray-50);
}

.towers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.tower-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.tower-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.tower-image {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-medium) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.tower-image svg {
    width: 150px;
    height: 150px;
    color: var(--teal);
    opacity: 0.7;
}

.tower-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tower-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--teal);
    background: rgba(0, 180, 216, 0.1);
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
    width: fit-content;
}

.tower-badge svg {
    width: 14px;
    height: 14px;
}

.tower-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.tower-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.tower-specs {
    list-style: none;
}

.tower-specs li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-body);
    font-size: 0.9375rem;
    margin-bottom: 8px;
}

.tower-specs li svg {
    width: 16px;
    height: 16px;
    color: var(--teal);
}

/* ----------------------------------------
   Products Page
   ---------------------------------------- */
.category {
    padding: 80px 0;
}

.category:nth-child(even) {
    background: var(--gray-50);
}

.category-header {
    margin-bottom: 48px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.category .product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.category .product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.category .product-image {
    height: 180px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category .product-image svg {
    width: 80px;
    height: 80px;
    color: var(--gray-400);
}

.category .product-content {
    padding: 32px;
}

.category .product-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.category .product-content p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-features {
    list-style: none;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-body);
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.product-features li svg {
    width: 16px;
    height: 16px;
    color: var(--teal);
    flex-shrink: 0;
}

/* Brands Bar */
.brands-bar {
    background: var(--white);
    padding: 48px 0;
    border-bottom: 1px solid var(--gray-200);
}

.brands-grid {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.brand-item {
    text-align: center;
}

.brand-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

/* ----------------------------------------
   Paquetes Page
   ---------------------------------------- */
.packages {
    background: var(--gray-50);
}

.packages-header {
    text-align: center;
    margin-bottom: 64px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.package-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    position: relative;
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    border: 3px solid var(--teal);
}

.package-card.featured::before {
    content: 'MÁS POPULAR';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--teal);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 40px;
    transform: rotate(45deg);
    z-index: 10;
}

.package-header {
    padding: 40px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.package-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.package-icon svg {
    width: 40px;
    height: 40px;
    color: var(--teal);
}

.package-card.featured .package-icon {
    background: rgba(0, 180, 216, 0.1);
}

.package-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.package-description {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.package-body {
    padding: 32px 40px;
}

.package-features {
    list-style: none;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-body);
    font-size: 0.9375rem;
}

.package-features li .check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

.package-features li .check svg {
    width: 14px;
    height: 14px;
    color: var(--teal);
}

.package-footer {
    padding: 24px 40px 40px;
}

.package-cta {
    width: 100%;
}

/* Procedures */
.procedures {
    background: var(--white);
}

.procedures-header {
    text-align: center;
    margin-bottom: 64px;
}

.procedures-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.procedure-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    transition: all var(--transition-base);
}

.procedure-card:hover {
    background: var(--gray-100);
    transform: translateY(-4px);
}

.procedure-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-sm);
}

.procedure-icon svg {
    width: 28px;
    height: 28px;
    color: var(--teal);
}

.procedure-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.procedure-card p {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Benefits */
.benefits {
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
}

.benefits-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 180, 216, 0.15) 0%, transparent 50%);
}

.benefits .section-tag {
    background: rgba(0, 180, 216, 0.2);
}

.benefits .section-title {
    color: var(--white);
}

.benefits .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition-base);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-teal);
    border-radius: 50%;
    margin: 0 auto 24px;
}

.benefit-icon svg {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.benefit-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ----------------------------------------
   Contact Page
   ---------------------------------------- */
.contact-section {
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.info-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.info-icon svg {
    width: 28px;
    height: 28px;
    color: var(--teal);
}

.info-card h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

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

.info-card a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 500;
}

.info-card a:hover {
    text-decoration: underline;
}

/* Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all var(--transition-base);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-submit {
    margin-top: 32px;
}

/* CTA Cards */
.cta-cards {
    background: var(--white);
}

.cta-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.cta-card {
    background: var(--gray-50);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.cta-card.whatsapp::before {
    background: #25D366;
}

.cta-card.phone::before {
    background: var(--teal);
}

.cta-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 24px;
}

.cta-card.whatsapp .cta-card-icon {
    background: rgba(37, 211, 102, 0.1);
}

.cta-card.phone .cta-card-icon {
    background: rgba(0, 180, 216, 0.1);
}

.cta-card-icon svg {
    width: 40px;
    height: 40px;
}

.cta-card.whatsapp .cta-card-icon svg {
    color: #25D366;
}

.cta-card.phone .cta-card-icon svg {
    color: var(--teal);
}

.cta-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.cta-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.cta-card .btn {
    width: 100%;
}

/* Location */
.location {
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
}

.location-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 180, 216, 0.1) 0%, transparent 50%);
}

.location .section-tag {
    background: rgba(0, 180, 216, 0.2);
}

.location .section-title {
    color: var(--white);
}

.location .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.location-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.location-hours {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 32px;
    border-radius: 16px;
    margin-top: 32px;
}

.location-hours svg {
    width: 24px;
    height: 24px;
    color: var(--teal);
}

.location-hours span {
    color: var(--white);
    font-weight: 500;
}

.location-hours strong {
    color: var(--teal);
}

/* ----------------------------------------
   Responsive / Media Queries
   ---------------------------------------- */
@media (max-width: 1024px) {
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .importance-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About */
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .mv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Services Page */
    .overview-grid {
        grid-template-columns: 1fr;
    }
    .integral-grid {
        grid-template-columns: 1fr;
    }
    .billing-grid {
        grid-template-columns: 1fr;
    }
    .clips-grid {
        grid-template-columns: 1fr;
    }
    .towers-grid {
        grid-template-columns: 1fr;
    }
    .tower-card {
        grid-template-columns: 1fr;
    }

    /* Products Page */
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Paquetes Page */
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .procedures-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .cta-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }

    /* Hero */
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* About */
    .target-grid {
        grid-template-columns: 1fr;
    }
    .mv-grid {
        grid-template-columns: 1fr;
    }
    .diff-grid {
        grid-template-columns: 1fr;
    }
    .brands-grid {
        grid-template-columns: 1fr;
    }

    /* Billing */
    .billing-features {
        grid-template-columns: 1fr;
    }

    /* Products */
    .category-grid {
        grid-template-columns: 1fr;
    }
    .brands-grid {
        gap: 32px;
    }

    /* Paquetes */
    .procedures-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ----------------------------------------
   Image placeholders for cards (added for foto*.jpg support)
   ---------------------------------------- */
.service-icon img,
.product-image img,
.tower-image img,
.overview-icon img,
.mv-icon img,
.diff-icon img,
.clip-icon img,
.procedure-icon img,
.benefit-icon img,
.package-icon img,
.info-icon img,
.about-image img,
.integral-image img,
.billing-image img,
.cta-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Fallback placeholder for missing images */
.service-icon,
.product-image,
.tower-image,
.overview-icon,
.mv-icon,
.diff-icon,
.clip-icon,
.procedure-icon,
.benefit-icon,
.package-icon,
.info-icon,
.about-image,
.integral-image,
.billing-image,
.cta-card-icon {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
}

/* ----------------------------------------
   Hero Video Background
   ---------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(26, 42, 74, 0.75) 50%, rgba(0, 102, 204, 0.6) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(0, 180, 216, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(0, 102, 204, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero-glow-1 {
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(0, 180, 216, 0.15);
}

.hero-glow-2 {
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(0, 102, 204, 0.1);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 32px;
    text-align: center;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--cyan);
}

.hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    gap: 64px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* ============================================
   CORRECCIONES VISUALES PREMIUM
   Fixes para layout consistente y limpio
   ============================================ */

/* ----------------------------------------
   IMÁGENES - Altura fija y consistente
   ---------------------------------------- */

/* TODAS las imágenes en cards deben tener altura fija */
.service-card > img,
.product-card > img,
.tower-card > img,
.package-card > img,
.clip-card > img,
.benefit-card > img,
.procedure-card > img,
.overview-card > img,
.mv-card > img,
.diff-card > img,
.info-card > img,
.about-image > img,
.integral-image > img,
.billing-image > img,
.importance-card > img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    transition: transform var(--transition-base);
}

/* Imágenes en content sections */
.integral-list li > img,
.info-card > img {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
}

/* Iconos de imagenes */
.service-icon > img,
.mv-icon > img,
.diff-icon > img,
.clip-icon > img,
.benefit-icon > img,
.package-icon > img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 16px !important;
}

/* ----------------------------------------
   CARDS - Flexbox para alturas consistentes
   ---------------------------------------- */

.service-card,
.product-card,
.tower-card,
.clip-card,
.benefit-card,
.procedure-card,
.overview-card,
.mv-card,
.diff-card,
.package-card,
.info-card,
.importance-card,
.target-card,
.cta-card,
.testimonial-card,
.brand-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    overflow: hidden !important;
}

/* Content dentro de cards debe expandirse */
.service-card .service-icon,
.product-card .product-content,
.tower-card .tower-content,
.clip-card .clip-icon,
.benefit-card .benefit-icon,
.procedure-card .procedure-icon,
.overview-card .overview-icon,
.mv-card .mv-icon,
.diff-card .diff-icon,
.package-card .package-header,
.package-card .package-body,
.package-card .package-footer,
.info-card > div,
.importance-card > img,
.importance-card > h3,
.importance-card > p,
.target-card > *,
.cta-card > * {
    flex-shrink: 0;
}

.testimonial-card > * {
    flex-shrink: 0;
}

.testimonial-card {
    justify-content: space-between;
}

/* ----------------------------------------
   GRIDS - Responsive con auto-fit
   ---------------------------------------- */

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)) !important;
    gap: 32px !important;
}

.products-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 32px !important;
}

.process-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
    gap: 32px !important;
}

.testimonials-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 32px !important;
}

.importance-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 40px !important;
}

.mv-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 40px !important;
}

.diff-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
    gap: 32px !important;
}

.overview-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 32px !important;
}

.clips-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 32px !important;
}

.towers-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)) !important;
    gap: 40px !important;
}

.tower-card {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
}

.tower-card > img {
    height: 100% !important;
    min-height: 200px !important;
}

.packages-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 32px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.procedures-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
    gap: 24px !important;
}

.benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
    gap: 32px !important;
}

.category-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 32px !important;
}

.target-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)) !important;
    gap: 40px !important;
}

.contact-grid {
    display: grid !important;
    grid-template-columns: 1fr 1.5fr !important;
    gap: 80px !important;
}

.cta-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 32px !important;
}

.integral-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 80px !important;
    align-items: center !important;
}

.billing-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 80px !important;
    align-items: center !important;
}

.about-intro-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 80px !important;
    align-items: center !important;
}

.brands-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 32px !important;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr !important;
    gap: 64px !important;
}

/* ----------------------------------------
   CONTENIDO DE TEXTO - Espaciado
   ---------------------------------------- */

.service-card h3,
.product-card h3,
.clip-card h3,
.benefit-card h3,
.procedure-card h4,
.overview-card h3,
.mv-card h3,
.diff-card h3,
.package-name,
.importance-card h3,
.target-card h3,
.cta-card h3 {
    margin-top: 20px !important;
}

.service-card p,
.product-card p,
.clip-card p,
.benefit-card p,
.procedure-card p,
.overview-card p,
.mv-card p,
.diff-card p,
.importance-card p,
.target-card p,
.cta-card p {
    margin-top: 8px !important;
}

/* Line-height para mejor legibilidad */
.service-card p,
.product-card p,
.clip-card p,
.benefit-card p,
.procedure-card p,
.overview-card p,
.mv-card p,
.diff-card p,
.importance-card p,
.target-card p,
.cta-card p {
    line-height: 1.7 !important;
}

/* ----------------------------------------
   TEXTOS - Prevención de desbordamiento
   ---------------------------------------- */

.service-card,
.product-card,
.clip-card,
.benefit-card,
.procedure-card,
.overview-card,
.mv-card,
.diff-card,
.package-card,
.importance-card,
.target-card,
.cta-card,
.testimonial-card {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

.service-card p,
.product-card p,
.clip-card p,
.benefit-card p,
.procedure-card p,
.overview-card p,
.mv-card p,
.diff-card p,
.importance-card p,
.target-card p,
.cta-card p,
.testimonial-card p {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* ----------------------------------------
   IMÁGENES RÓTULAS - Placeholder seguro
   ---------------------------------------- */

img[src*="foto"]:not([src*="http"]),
img[src="imgs/foto"]:not([src*="http"]) {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%) !important;
    min-height: 220px !important;
}

/* Placeholder visual para imágenes rotas */
img[src=""],
img[src="#"],
img:not([src]) {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%) !important;
    min-height: 220px !important;
}

/* ----------------------------------------
   RESPONSIVE - Ajustes por breakpoint
   ---------------------------------------- */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .about-intro-grid,
    .integral-grid,
    .billing-grid {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }

    .tower-card {
        grid-template-columns: 1fr !important;
    }

    .target-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px !important;
    }

    .section-padding {
        padding: 80px 0 !important;
    }

    .services-grid,
    .products-grid,
    .testimonials-grid,
    .importance-grid,
    .mv-grid,
    .diff-grid,
    .overview-grid,
    .clips-grid,
    .benefits-grid,
    .category-grid,
    .packages-grid,
    .cta-cards-grid {
        grid-template-columns: 1fr !important;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .procedures-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .tower-card > img,
    .about-image > img,
    .integral-image > img,
    .billing-image > img {
        height: 200px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px !important;
    }

    .section-padding {
        padding: 60px 0 !important;
    }

    .process-grid {
        grid-template-columns: 1fr !important;
    }

    .procedures-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .service-card,
    .product-card,
    .package-card {
        padding: 24px !important;
    }
}

/* ----------------------------------------
   PREVENIR DESBORDAMIENTOS
   ---------------------------------------- */

img {
    max-width: 100% !important;
    height: auto !important;
}

.section-padding {
    overflow: hidden !important;
}

.container {
    overflow: hidden !important;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-content {
        padding: 100px 24px 80px;
    }

    .hero-stats {
        gap: 32px;
    }

    .hero-stat-number {
        font-size: 2rem;
    }
}

/* ============================================
   CORRECCIÓN FINAL DE IMÁGENES
   Garantizar que TODAS las fotos se muestren
   ============================================ */

/* Forzar display de todas las imágenes en cards */
.service-card img,
.product-card img,
.tower-card img,
.package-card img,
.clip-card img,
.benefit-card img,
.procedure-card img,
.overview-card img,
.mv-card img,
.diff-card img,
.info-card img,
.importance-card img,
.cta-card img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 180px !important;
    max-height: 250px !important;
    height: 250px !important;
    object-fit: cover !important;
    object-position: center center !important;
    background-color: #f0f0f0 !important;
    border-radius: 11px !important;
}

.tower-card1 img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 180px !important;
    max-height: 550px !important;
    height: 550px !important;
    object-fit: cover !important;
    object-position: center center !important;
    background-color: #f0f0f0 !important;
    border-radius: 11px !important;
}


/* Imágenes en secciones de grid layout */
.about-intro-grid > img,
.integral-grid > img,
.billing-grid > img {
    width: 100% !important;
    height: 100% !important;
    max-height: 600px !important;
    object-fit: cover !important;
    border-radius: 11px !important;
}

/* Imágenes pequeñas en listas */
.integral-list img {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    object-fit: cover !important;
    border-radius: 11px !important;
    display: block !important;
}

/* Package header images */
.package-header img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 11px 11px 0 0 !important;
}

/* Info card images */
.info-card img {
    width: 100% !important;
    height: 150px !important;
    object-fit: cover !important;
    display: block !important;
    margin-bottom: 16px !important;
    border-radius: 11px !important;
}

/* Override any inline styles that might break images */
img[style*="object-fit"] {
    object-fit: cover !important;
}

/* ============================================
   ANIMACIONES SUAVES
   Transiciones y efectos premium
   ============================================ */

/* Transiciones base */
* {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Cards con transición suave */
.service-card,
.product-card,
.tower-card,
.package-card,
.clip-card,
.benefit-card,
.procedure-card,
.overview-card,
.mv-card,
.diff-card,
.importance-card,
.info-card,
.target-card,
.cta-card,
.testimonial-card,
.brand-card {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Imágenes con zoom suave */
.service-card img,
.product-card img,
.tower-card img,
.package-card img,
.clip-card img,
.benefit-card img,
.procedure-card img,
.overview-card img,
.mv-card img,
.diff-card img,
.importance-card img,
.info-card img,
.cta-card img {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Botones con efecto premium */
.btn {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                background-color 0.3s ease,
                color 0.3s ease !important;
}

/* Navegación con transición */
.nav-link,
.footer-links a {
    transition: color 0.3s ease, padding-left 0.3s ease !important;
}

/* Formularios con efecto focus */
.form-group {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

input, textarea, select {
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

/* Sección hero con animación */
.hero-badge,
.hero h1,
.hero p,
.hero-buttons,
.hero-stats {
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Wave animation */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
    animation: waveFloat 6s ease-in-out infinite;
}

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

/* Animaciones de entrada */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Section tags con animación */
.section-tag {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Page hero animado */
.page-hero {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

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

/* Hover effects para secciones */
.category:hover,
.services:hover,
.products:hover,
.process:hover,
.testimonials:hover,
.importance:hover,
.cta:hover {
    transform: translateZ(0);
}

/* Badge pulsante */
.hero-badge-dot {
    animation: pulse 2s ease-in-out infinite;
}

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

/* Footer links staggered */
.footer-links li:nth-child(1) { transition-delay: 0.1s !important; }
.footer-links li:nth-child(2) { transition-delay: 0.2s !important; }
.footer-links li:nth-child(3) { transition-delay: 0.3s !important; }
.footer-links li:nth-child(4) { transition-delay: 0.4s !important; }
.footer-links li:nth-child(5) { transition-delay: 0.5s !important; }

/* WhatsApp float animation */
.whatsapp-float {
    animation: bounce 2s ease-in-out infinite;
}

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

/* Gradient text animation */
.highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #0052a3;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glow effect para elementos destacados */
.package-card.featured {
    position: relative;
    overflow: hidden;
}

.package-card.featured::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 201, 167, 0.1) 0%, transparent 70%);
    animation: glowRotate 10s linear infinite;
    pointer-events: none;
}

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

/* Testimonial cards con micro-interacción */
.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card:hover .testimonial-stars svg {
    transform: scale(1.1);
}

.testimonial-card:hover .testimonial-stars svg:nth-child(2) {
    transition-delay: 0.05s;
}

.testimonial-card:hover .testimonial-stars svg:nth-child(3) {
    transition-delay: 0.1s;
}

.testimonial-card:hover .testimonial-stars svg:nth-child(4) {
    transition-delay: 0.15s;
}

.testimonial-card:hover .testimonial-stars svg:nth-child(5) {
    transition-delay: 0.2s;
}

.testimonial-stars svg {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Progress bars animadas (si existen) */
.progress-bar {
    transition: width 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Scroll suave para anchors */
html {
    scroll-behavior: smooth;
}

/* Form focus effects */
.form-group.focused label {
    color: var(--primary) !important;
}

.form-group.focused input,
.form-group.focused textarea,
.form-group.focused select {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.2) !important;
}

/* Loading animation para página */
body {
    animation: pageLoad 0.5s ease-out forwards;
}

@keyframes pageLoad {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Parallax sections */
.testimonials-bg,
.clips-bg,
.benefits-bg,
.differentiators-bg,
.cta-bg {
    will-change: transform;
}

/* Responsive animations */
@media (max-width: 768px) {
    .scroll-animate {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-wave svg {
        height: 60px;
    }
}

/* ============================================
   LOGO PREMIUM
   ============================================ */

/* Header logo - más pequeño, sin filtro de color (usa colores originales) */
.header .logo img {
    height: 60px !important;
    width: auto !important;
    transition: transform 0.3s ease !important;
}

.header .logo:hover img {
    transform: scale(1.05);
}

/* Footer logo - usa logoblanco.png con fondo transparente */
.footer-brand .logo img {
    height: 80px !important;
    width: auto !important;
    background: transparent !important;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 16px;
}

/* Remover logo-text del footer ya que usamos imagen */
.footer-brand .logo-text {
    display: none !important;
}




/* ESCRITORIO (NO TOCAR DISEÑO ORIGINAL) */
.nav {
  display: flex;
}

/* BOTÓN OCULTO EN DESKTOP */
.mobile-menu-btn {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* 📱 MOBILE */
@media (max-width: 768px) {

  .mobile-menu-btn {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    z-index: 999;
  }

  .nav.active {
    display: flex;
  }

}