:root {
    --primary-color: #1a3a71;
    --secondary-color: #4a6da7;
    --text-color: #4a4a4a;
    --bg-light: #f5f7f9;
    --white: #ffffff;

    --font-heading: 'DM Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s ease;
    --border-radius: 20px;
    --radius-button: 50px;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.center {
    text-align: center;
}

/* WhatsApp Floating BTN */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    /* WhatsApp Green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float-btn i {
    font-size: 32px;
}

.whatsapp-float-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

/* Typography elements */
.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(46, 134, 222, 0.1);
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-button);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(46, 134, 222, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border-color: #E2E8F0;
}

.btn-secondary:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-white-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-white-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

/* Button Hotspot Effect */
@keyframes buttonHotspot {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 109, 167, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(74, 109, 167, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 109, 167, 0);
    }
}

@keyframes buttonWhiteHotspot {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.btn-hotspot {
    animation: buttonHotspot 2s infinite;
}

.btn-white.btn-hotspot {
    animation: buttonWhiteHotspot 2s infinite;
}

.btn-hotspot:hover {
    animation: none !important;
}

.btn-block {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    /* Starts transparent */
    box-shadow: none;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.navbar.scrolled .logo img {
    height: 60px;
    box-shadow: none;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--white);
    /* Start white */
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.navbar.scrolled .nav-menu a {
    color: var(--primary-color);
}

.navbar.scrolled .nav-menu a:hover,
.navbar.scrolled .nav-menu a.active {
    color: var(--secondary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.navbar.scrolled .mobile-toggle {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    overflow: hidden;
    padding-top: 80px;
    /* Offset for navbar */
}

/* Pseudo-element for flipped background image (Not flipped anymore) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    background-image: url('images/imagen1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, rgba(14, 27, 55, 0.98) 0%, rgba(14, 27, 55, 0.92) 45%, rgba(26, 58, 113, 0.6) 65%, transparent 100%);
    z-index: 1;
}

.hero-container-full {
    position: relative;
    z-index: 2;
    display: flex;
    height: 100%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    max-width: 650px;
    padding: 40px 0;
}

.text-white h1,
.text-white p {
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform, visibility;
}

.reveal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0) scale(1) !important;
}

.fade-in-up {
    transform: translateY(40px);
}

.fade-in-left {
    transform: translateX(-50px);
}

.fade-in-right {
    transform: translateX(50px);
}

.sweep-in-left {
    transform: translateX(-100vw);
}

.sweep-in-right {
    transform: translateX(100vw);
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    border-radius: var(--border-radius);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    width: 100%;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 134, 222, 0.03) 0%, rgba(46, 134, 222, 0.08) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Animated top line */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background-color: var(--secondary-color);
    transition: width 0.4s ease;
    z-index: 2;
}

.service-card:hover {
    transform: scale(1.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(46, 134, 222, 0.3);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover::before {
    width: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(46, 134, 222, 0.1);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 12px;
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover .service-icon {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

/* Future Services */
.future-services {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #E2E8F0;
}

.future-services h3 {
    color: #718096;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.future-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    background: transparent;
    padding: 20px;
    border: 1px dashed #CBD5E0;
    border-radius: var(--border-radius);
    transition: all 0.4s ease;
}

.future-card:hover {
    border-style: solid;
    border-color: var(--secondary-color);
    background-color: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.future-card i {
    font-size: 24px;
    color: #A0AEC0;
}

.future-card h4 {
    font-size: 1rem;
    color: #4A5568;
    margin-bottom: 5px;
}

.future-card p {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 0;
}

/* Metrics Counters */
.counters {
    position: relative;
    padding: 80px 0;
}

.counters-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.counter-item {
    padding: 20px;
}

.counter-number-wrap {
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.counter-plus {
    color: var(--white);
    font-size: 3rem;
}

.counter-divider {
    width: 60px;
    height: 3px;
    background-color: var(--white);
    margin: 15px auto 25px;
    opacity: 0.5;
}

.counter-item p {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1.4;
}

/* Process V2 */
.process-steps-v2 {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.process-card {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-img-wrap {
    width: 220px;
    height: 220px;
    margin: 0 auto 30px;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--white);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.process-card:hover .process-img-wrap img {
    transform: scale(1.08);
}

.process-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 55px;
    height: 55px;
    background-color: #A6CE39;
    /* Verde Lima */
    color: #0B1B32;
    /* Navy */
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 5;
}

@keyframes hotspotPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    33.33% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.process-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: inherit;
    z-index: -1;
    animation: hotspotPulse 3s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
}

.process-card:nth-child(2) .process-badge::before {
    animation-delay: 0s;
}

.process-card:nth-child(3) .process-badge::before {
    animation-delay: 1s;
}

.process-card:nth-child(4) .process-badge::before {
    animation-delay: 2s;
}

.process-card:hover .process-badge {
    transform: scale(1.15) rotate(5deg);
    background-color: var(--secondary-color);
    color: var(--white);
}

.process-card h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.process-card p {
    color: #4A5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Formato de línea punteada */
.process-steps-v2::before {
    content: '';
    position: absolute;
    top: 110px;
    /* Mitad de la imagen */
    left: 15%;
    right: 15%;
    height: 20px;
    border-top: 2px dashed #CBD5E0;
    z-index: 1;
}

/* Clients Carousel */
.clients {
    background-color: var(--white);
    overflow: hidden;
}

.clients h2 {
    margin-bottom: 40px;
}

.clients-slider {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.clients-slider::before,
.clients-slider::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100%;
    position: absolute;
    width: 15%;
    z-index: 2;
}

.clients-slider::before {
    left: 0;
    top: 0;
}

.clients-slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.clients-slide-track {
    display: flex;
    width: calc(280px * 10);
    animation: scroll 40s linear infinite;
}

.client-logo {
    height: 100px;
    width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.client-logo img {
    max-width: 100%;
    max-height: 80px; /* Ensures logos don't get too vertically large */
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
    opacity: 0.6;
}

.client-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05); /* Slight pop effect */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-280px * 5));
    }
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    position: relative;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    color: rgba(166, 206, 57, 0.15);
    /* Verde lima clarito */
    font-family: var(--font-heading);
    line-height: 1;
}

.stars {
    color: #F59E0B;
    /* Amarillo/Naranja para estrellas */
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.client-info strong {
    display: block;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.client-info span {
    font-size: 0.9rem;
    color: #718096;
}

/* Grid 2 Generic Layout */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Benefits */
.benefits h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.benefits-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.benefits-list li:hover {
    transform: translateX(10px);
}

.benefits-list i {
    font-size: 28px;
    color: var(--secondary-color);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.benefits-list li:hover i {
    transform: scale(1.2) rotate(-5deg);
}

.benefits-list strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.benefits-list p {
    color: #4A5568;
    margin-bottom: 0;
}

/* Purpose (Mision, Vision) */
.purpose {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.purpose-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
    transition: all 0.4s ease;
}

.purpose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-left-width: 8px;
}

.purpose-card i {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.purpose-card h3 {
    margin-bottom: 10px;
}

.purpose-card p {
    margin-bottom: 0;
}

.values-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.values-tags span {
    padding: 8px 16px;
    background: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: default;
}

.values-tags span:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* CTA */
.cta {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color) 0%, #155587 100%);
    opacity: 0.9;
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 10px;
}

.cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info p {
    color: #4A5568;
    font-size: 1.05rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    color: var(--text-color);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateX(10px) translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-item i {
    font-size: 24px;
    color: var(--secondary-color);
    background: rgba(74, 109, 167, 0.1);
    padding: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.info-item:hover i {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.info-item strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 2px;
}

/* Forms */
.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-left: 8px solid var(--secondary-color);
    transition: all 0.4s ease;
}

.contact-form-wrapper:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.grid-2-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E2E8F0;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(46, 134, 222, 0.1);
}

/* Footer */
.footer {
    background-color: #1A202C;
    color: #A0AEC0;
    padding: 80px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand img {
    height: 70px;
    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 300px;
}

.footer h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #A0AEC0;
}

.footer-links a:hover {
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.social-icons a:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {

    .hero-container,
    .about-container,
    .contact-grid,
    .grid-2,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        align-items: center;
        text-align: center;
        min-height: 80vh;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .counters-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .process-steps-v2 {
        flex-direction: column;
        align-items: center;
    }

    .process-steps-v2::before {
        display: none;
    }

    .process-card {
        max-width: 400px;
        margin-bottom: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        display: none;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu a,
    .navbar.scrolled .nav-menu a {
        color: var(--primary-color);
        display: block;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2,
    .benefits h2,
    .cta h2,
    .contact-info h2 {
        font-size: 2rem;
    }

    .grid-2-form {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }
}