/* ============================================
   Doña Mantequilla Aseo - Custom Styles
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Primary palette - Teal #12A19A */
    --primary: #12A19A;
    --primary-dark: #0E847E;
    --primary-light: #2CC4BD;
    --primary-50: #E6F7F6;
    --primary-100: #CCF0EE;

    /* Accent palette */
    --accent: #12A19A;
    --accent-dark: #0E847E;
    --accent-light: #2CC4BD;

    /* Neutrals - Secondary #24295A */
    --dark: #24295A;
    --dark-700: #2E3468;
    --dark-600: #3D4476;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --white: #ffffff;

    /* Gradient combos */
    --gradient-primary: linear-gradient(135deg, #12A19A 0%, #24295A 100%);
    --gradient-hero: linear-gradient(135deg, #24295A 0%, #1a3a5a 50%, #24295A 100%);
    --gradient-card-emerald: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    --gradient-card-ocean: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    --gradient-card-violet: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    --gradient-card-amber: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    --gradient-card-rose: linear-gradient(135deg, #fff1f2 0%, #fecdd3 100%);
    --gradient-card-teal: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 30px rgba(18, 161, 154, 0.3);

    /* Misc */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

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

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

/* ---------- Utility ---------- */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 4px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.text-gradient-light {
    background: linear-gradient(135deg, #2CC4BD 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 4px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

/* Override text-gradient on dark backgrounds so it doesn't blend with the navy background */
.hero-content h1 .text-gradient,
.service-hero h1 .text-gradient,
.service-cta h2 .text-gradient {
    background: linear-gradient(135deg, #2CC4BD 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--primary-100);
    color: var(--primary-dark);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-tag-light {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================
   NAVBAR
   ============================================ */
#mainNavbar {
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

#mainNavbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white) !important;
}

#mainNavbar.scrolled .navbar-brand {
    color: var(--dark) !important;
}

.brand-logo {
    width: 44px;
    height: 44px;
    transform: rotate(45deg);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    transition: var(--transition);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.brand-logo img {
    width: 125%;
    height: 125%;
    object-fit: contain;
    transform: rotate(-45deg);
    transform-origin: center;
}

#mainNavbar.scrolled .brand-logo {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(18, 161, 154, 0.2);
}

.brand-icon {
    font-size: 1.6rem;
    color: var(--primary-light);
    display: none;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    position: relative;
}

#mainNavbar.scrolled .nav-link {
    color: var(--dark-600) !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white) !important;
    background: rgba(255,255,255,0.1);
}

#mainNavbar.scrolled .nav-link:hover,
#mainNavbar.scrolled .nav-link.active {
    color: var(--primary) !important;
    background: var(--primary-50);
}

.btn-cta {
    background: var(--gradient-primary);
    color: var(--white) !important;
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(18, 161, 154, 0.3);
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(18, 161, 154, 0.45);
}

.navbar-toggler {
    border: 2px solid rgba(255,255,255,0.3);
    padding: 6px 10px;
}

#mainNavbar.scrolled .navbar-toggler {
    border-color: var(--gray-300);
}

.navbar-toggler-icon {
    filter: invert(1);
}

#mainNavbar.scrolled .navbar-toggler-icon {
    filter: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: floatParticle 20s infinite ease-in-out;
}

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-30px) translateX(20px); }
    50% { transform: translateY(-10px) translateX(-15px); }
    75% { transform: translateY(-40px) translateX(10px); }
}

.hero-content {
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(18, 161, 154, 0.15);
    border: 1px solid rgba(18, 161, 154, 0.3);
    border-radius: var(--radius-full);
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(18, 161, 154, 0.45);
    color: var(--white);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Visual (right side) */
.hero-visual {
    position: relative;
    height: 500px;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(18, 161, 154, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseShape 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(139, 92, 246, 0.15);
    top: 20%;
    right: 10%;
    animation: pulseShape 8s ease-in-out infinite 1s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: rgba(16, 185, 129, 0.15);
    bottom: 25%;
    left: 20%;
    animation: pulseShape 7s ease-in-out infinite 2s;
}

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

.hero-icon-float {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 161, 154, 0.1);
    border: 2px solid rgba(18, 161, 154, 0.2);
    border-radius: 30px;
    animation: floatIcon 4s ease-in-out infinite;
}

.hero-icon-float i {
    font-size: 3rem;
    color: var(--primary-light);
}

@keyframes floatIcon {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -60%) rotate(5deg); }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.section-services {
    padding: 100px 0;
    background: var(--white);
}

.service-card {
    padding: 32px;
    border-radius: var(--radius);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    animation: fadeInUp 0.6s ease both;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--radius) var(--radius) 0 0;
    opacity: 0;
    transition: var(--transition);
}

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

.service-card:hover::before {
    opacity: 1;
}

/* Service card color variants */
.service-emerald { background: var(--gradient-card-emerald); }
.service-emerald .service-icon { background: #d1fae5; color: #059669; }
.service-emerald::before { background: linear-gradient(90deg, #10b981, #34d399); }
.service-emerald .service-link { color: #059669; }
.service-emerald .service-features i { color: #10b981; }

.service-ocean { background: var(--gradient-card-ocean); }
.service-ocean .service-icon { background: #dbeafe; color: #2563eb; }
.service-ocean::before { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.service-ocean .service-link { color: #2563eb; }
.service-ocean .service-features i { color: #3b82f6; }

.service-violet { background: var(--gradient-card-violet); }
.service-violet .service-icon { background: #ede9fe; color: #7c3aed; }
.service-violet::before { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.service-violet .service-link { color: #7c3aed; }
.service-violet .service-features i { color: #8b5cf6; }

.service-amber { background: var(--gradient-card-amber); }
.service-amber .service-icon { background: #fef3c7; color: #d97706; }
.service-amber::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.service-amber .service-link { color: #d97706; }
.service-amber .service-features i { color: #f59e0b; }

.service-rose { background: var(--gradient-card-rose); }
.service-rose .service-icon { background: #fecdd3; color: #e11d48; }
.service-rose::before { background: linear-gradient(90deg, #f43f5e, #fb7185); }
.service-rose .service-link { color: #e11d48; }
.service-rose .service-features i { color: #f43f5e; }

.service-teal { background: var(--gradient-card-teal); }
.service-teal .service-icon { background: #ccfbf1; color: #0d9488; }
.service-teal::before { background: linear-gradient(90deg, #14b8a6, #2dd4bf); }
.service-teal .service-link { color: #0d9488; }
.service-teal .service-features i { color: #14b8a6; }

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--dark-600);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--dark-600);
    padding: 4px 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

/* Badge Empresas */
.badge-empresas {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 12px;
}

.badge-empresas i {
    font-size: 0.75rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.section-about {
    padding: 100px 0;
    background: var(--gray-100);
}

.about-visual {
    position: relative;
    height: 450px;
}

.about-image-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 340px;
    background: var(--gradient-primary);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

.about-image-placeholder i {
    font-size: 4rem;
    opacity: 0.9;
}

.about-image-placeholder span {
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0.9;
}

.about-card {
    position: absolute;
    padding: 14px 22px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
    animation: floatCard 5s ease-in-out infinite;
}

.about-card-1 {
    top: 15%;
    right: 5%;
    animation-delay: 0s;
}

.about-card-1 i { color: #f59e0b; font-size: 1.4rem; }

.about-card-2 {
    bottom: 15%;
    left: 5%;
    animation-delay: 1.5s;
}

.about-card-2 i { color: var(--primary); font-size: 1.4rem; }

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

.about-content h2 {
    font-size: 2.3rem;
    margin-bottom: 16px;
}

.about-content > p {
    color: var(--dark-600);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-100);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
}

.value-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin: 0;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.section-testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonial-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: var(--transition);
    height: 100%;
    animation: fadeInUp 0.6s ease both;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.testimonial-stars i {
    color: #f59e0b;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--dark-600);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

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

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--gray-400);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.section-contact {
    padding: 100px 0;
    background: var(--gradient-hero);
    position: relative;
}

.contact-info h2 {
    font-size: 2.3rem;
    color: var(--white);
    margin-bottom: 16px;
}

.contact-info > p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.2rem;
}

.contact-item span {
    display: block;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

.contact-item strong {
    color: var(--white);
    font-size: 0.95rem;
}

.contact-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.contact-form-wrapper h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark);
}

.form-control,
.form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--gray-100);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(18, 161, 154, 0.1);
    background: var(--white);
}

.form-floating label {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.form-floating label i {
    margin-right: 4px;
}

.btn-submit {
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(18, 161, 154, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(18, 161, 154, 0.45);
    color: var(--white);
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.form-success h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--gray-400);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--dark);
    padding: 60px 0 0;
    color: rgba(255,255,255,0.7);
}

.footer-brand a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-brand a i {
    color: var(--primary-light);
    font-size: 1.5rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    max-width: 300px;
}

.site-footer h5 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-links li {
    padding: 4px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li i {
    color: var(--primary-light);
    font-size: 0.85rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.site-footer hr {
    border-color: rgba(255,255,255,0.1);
    margin: 32px 0 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    color: rgba(255,255,255,0.4);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary-light);
    transform: translateY(-2px);
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulseWa 2s ease-in-out infinite;
}

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

@keyframes pulseWa {
    0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7); }
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 46px;
    height: 46px;
    background: var(--dark-700);
    color: var(--white);
    border: none;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1000;
    cursor: pointer;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .section-header h2,
    .about-content h2,
    .contact-info h2 {
        font-size: 2rem;
    }

    .navbar-collapse {
        background: var(--white);
        border-radius: var(--radius);
        padding: 20px;
        margin-top: 10px;
        box-shadow: var(--shadow-lg);
    }

    .navbar-collapse .nav-link {
        color: var(--dark-600) !important;
    }

    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link.active {
        color: var(--primary) !important;
        background: var(--primary-50);
    }

    .navbar-collapse .btn-cta {
        display: inline-block;
        margin-top: 10px;
    }
}

@media (max-width: 767.98px) {
    .hero-content {
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        margin: 0 auto 24px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-visual {
        height: 300px;
        margin-bottom: 30px;
    }

    .about-image-placeholder {
        width: 220px;
        height: 270px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }

    .scroll-top {
        right: 80px;
        bottom: 20px;
    }
}
