/* =========================================
   1. VARIABLES & SETUP
   ========================================= */
:root {
    /* Colors */
    --primary-color: #0056b3;
    --primary-dark: #004494;
    --primary-light: #e6f0fa;
    --secondary-color: #00c6ff;
    /* Cyan accent from the original gradient feel */
    --accent-color: #ff9900;

    --text-main: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --text-white: #ffffff;

    --bg-body: #f9fafb;
    --bg-white: #ffffff;
    --bg-light-gray: #f3f4f6;

    /* Decoration */
    --gradient-primary: linear-gradient(135deg, #0072ff 0%, #00c6ff 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Typography */
    --font-family: 'Inter', sans-serif;
    --header-height: 80px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.section {
    padding: 5rem 0;
}

.highlight {
    color: var(--secondary-color);
}

.highlight-text {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
}

.btn-primary-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
}

.btn-primary-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: var(--bg-light-gray);
    transform: translateY(-2px);
}

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    max-height: 60px;
    width: auto;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* Mobile Nav Elements */
.nav-toggle,
.nav-close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* =========================================
   3. HERO SECTION (REFACTORED)
   ========================================= */
.hero {
    /* Deep Blue Gradient matching the screenshot */
    background: linear-gradient(135deg, #001fcc 0%, #00c6ff 100%);
    position: relative;
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 8rem;
    /* Extra padding for card overlap */
    color: var(--text-white);
    overflow: visible;
    /* Allow cards to stick out if needed */
    text-align: center;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Network Overlay Effect */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 100px 100px, 100px 100px, 50px 50px, 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

.hero-container-new {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-content-centered {
    max-width: 900px;
    margin: 0 auto;
}

.hero-year {
    font-size: 1.5rem;
    font-weight: 300;
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.hero-brand {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

/* Strategy Cards */
.strategy-container {
    position: relative;
    z-index: 10;
    margin-top: 4rem;
    margin-bottom: -10rem;
    /* Pull footer/next section content down or just depend on layout flow */
}

.strategy-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.strategy-card {
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 2rem 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s ease;
    cursor: default;
    border-bottom: 3px solid transparent;
}

.strategy-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--secondary-color);
}

.s-icon {
    font-size: 2rem;
    color: #00a896;
    /* Teal color from screenshot icons */
    margin-bottom: 1rem;
}

.strategy-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* =========================================
   3.3 EQUIPMENTS SECTION
   ========================================= */
.section-equipments {
    background: linear-gradient(135deg, #0052d4 0%, #4364f7 50%, #6fb1fc 100%);
    /* Deep Blue to lighter Blue */
    /* Screenshot is a very vibrant blue */
    background-color: #0066ff;
    padding: 5rem 0;
    color: var(--text-white);
}

.equip-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 3rem;
    text-align: justify;
    /* Looks justified in print */
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.equip-subtitle {
    font-weight: 400;
    opacity: 0.95;
}

/* Slider Styles */
.slider-container {
    position: relative;
    height: 450px;
    /* Adjust based on card height */
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-track-container {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    transition: transform 0.4s ease-in-out;
    justify-content: center;
    /* Center items if few */
    list-style: none;
}

.slider-slide {
    min-width: 300px;
    max-width: 350px;
    width: 100%;
}

.equip-card {
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    /* Square-ish cards in print */
    padding: 0;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.equip-name {
    color: #00b4db;
    /* Light Blue Text */
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    text-transform: uppercase;
    font-weight: 800;
}

.equip-tag {
    background-color: #00d2ff;
    color: white;
    width: 90%;
    padding: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.equip-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #ffffff 0%, #e0f7fa 100%);
}

.equip-image img {
    max-height: 180px;
}

.equip-brand-corner {
    position: absolute;
    bottom: 5px;
    right: 5px;
    opacity: 0.8;
}

/* Slider Controls */
.slider-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    padding: 1rem;
}

.slider-btn:hover {
    color: #e0f7fa;
}

.slider-nav {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    gap: 0.8rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.slider-dot.current-dot {
    background: rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 768px) {
    .slider-track {
        flex-direction: column;
        /* Stack on mobile or swipe? */
        align-items: center;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* =========================================
   4. SOLUTIONS (Adjusted spacing)
   ========================================= */
.solutions {
    padding-top: 8rem;
    /* Compensate for overlapping cards */
    background-color: var(--bg-white);
}

.section-header {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--bg-light-gray);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.card-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.card-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    /* Push to bottom */
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link i {
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(5px);
}

/* =========================================
   5. BENEFITS SECTION
   ========================================= */
.benefits {
    background-color: var(--bg-light-gray);
}

.benefits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.benefits-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-item i {
    color: #10b981;
    /* Success Green */
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* =========================================
   6. CLIENTS / SOCIAL PROOF
   ========================================= */
.clients {
    padding: 3rem 0;
    background-color: var(--bg-white);
}

.clients-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    opacity: 0.7;
}

.client-logo {
    color: #9ca3af;
    transition: all 0.3s;
}

.client-logo:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: scale(1.1);
}

/* =========================================
   7. CTA SECTION
   ========================================= */
.cta {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 4rem 0;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* =========================================
   8. FOOTER
   ========================================= */

/* =========================================
   8. FOOTER
   ========================================= */
.footer {
    background: linear-gradient(135deg, #004e92 0%, #00c6ff 100%);
    /* Matching the blue gradient from screenshot */
    background: linear-gradient(to right, #001fcc, #00c6ff);
    color: #e2e8f0;
    padding-top: 4rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 1fr 2fr;
    /* 5 Columns */
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo-box {
    display: block;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px;
    width: fit-content;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--text-white);
    font-size: 0.9rem;
    text-decoration: none;
    opacity: 0.9;
}

.footer-links a:hover {
    text-decoration: underline;
    opacity: 1;
}

/* Footer Form */
.footer-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-input {
    padding: 0.8rem;
    border: none;
    border-radius: 2px;
    font-size: 0.9rem;
    width: 100%;
    color: #333;
}

.footer-textarea {
    resize: none;
    height: 80px;
}

.btn-block {
    width: 100%;
    background-color: white;
    color: var(--primary-color);
    font-weight: 700;
    border: none;
    padding: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-block:hover {
    background-color: #f1f1f1;
}

/* Sub Footers */
.sub-footer-1 {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.country-info,
.email-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}

.flag-icon {
    width: 25px;
    height: auto;
}

.email-address {
    font-weight: 600;
}

.footer-bottom {
    padding: 2rem 0;
    background-color: rgba(0, 0, 0, 0.2);
    /* Slightly darker blue */
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-white);
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.branch-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.branch-title {
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.branch-phone {
    font-size: 0.9rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}


/* =========================================
   3.2 PCM-BI SECTION
   ========================================= */
.section-pcm-bi {
    background: linear-gradient(135deg, #4b8eff 0%, #20e3b2 100%);
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    padding: 5rem 0;
    color: var(--text-white);
}

.pcm-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.pcm-image img {
    transform: perspective(1000px) rotateY(10deg);
    transition: transform 0.5s;
    border-radius: var(--radius-md);
}

.pcm-image:hover img {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.pcm-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.pcm-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: justify;
    opacity: 0.95;
}

.pcm-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
    text-align: center;
}

.pcm-stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pcm-stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive for PCM */
@media screen and (max-width: 768px) {
    .pcm-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pcm-text {
        text-align: justify;
    }

    .pcm-image {
        order: -1;
        margin: 0 auto;
        max-width: 300px;
    }

    .pcm-stats {
        gap: 2rem;
        flex-direction: column;
    }
}

/* =========================================
   3.3 EQUIPMENTS SECTION
   ========================================= */
.section-equipments {
    background: linear-gradient(to bottom, #004dff 0%, #00c6ff 100%);
    padding: 5rem 0;
    color: var(--text-white);
}

.equip-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 3rem;
    text-align: justify;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.equip-subtitle {
    font-weight: 400;
    opacity: 0.95;
}

/* Slider Styles */
.slider-container {
    position: relative;
    height: 450px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-track-container {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    transition: transform 0.4s ease-in-out;
    justify-content: center;
    list-style: none;
}

.slider-slide {
    min-width: 300px;
    max-width: 320px;
    /* Slightly wider cards */
    width: 100%;
}

.equip-card {
    background: var(--bg-white);
    border-radius: 0;
    /* Squared edges as per screenshot seems cleaner */
    padding: 0;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: none;
    /* Removing shadow for cleaner look */
}

.equip-name {
    color: #00bef0;
    /* Cyan Blue */
    font-size: 1.6rem;
    margin: 1.5rem 0 1rem;
    text-transform: none;
    /* Sentence case or title case */
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    /* Ensure font matches */
}

/* Removing garbage lines */

.equip-tag {
    background-color: #00d2ff;
    color: white;
    width: 90%;
    padding: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.equip-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #ffffff 0%, #e0f7fa 100%);
}

.equip-image img {
    max-height: 180px;
}

.equip-brand-corner {
    position: absolute;
    bottom: 5px;
    right: 5px;
    opacity: 0.8;
}

/* Slider Controls */
.slider-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    padding: 1rem;
}

.slider-btn:hover {
    color: #e0f7fa;
}

.slider-nav {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    gap: 0.8rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.slider-dot.current-dot {
    background: rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 768px) {
    .slider-track {
        flex-direction: column;
        align-items: center;
    }
}

/* =========================================
   3.4 YOUTUBE SECTION
   ========================================= */
.section-youtube {
    background: linear-gradient(135deg, #004e92 0%, #000428 100%);
    background: linear-gradient(to bottom right, #0033cc 0%, #00c6ff 100%);
    padding: 6rem 0;
    color: var(--text-white);
}

.youtube-header {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.youtube-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.youtube-subtitle {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.5;
}

.youtube-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
    position: relative;
    z-index: 2;
}

.youtube-logo img {
    max-width: 100%;
    height: auto;
}

.youtube-btn-wrapper {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.btn-visitar-canal {
    background-color: white;
    color: #0056b3;
    /* Primary blue */
    padding: 0.8rem 2.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-visitar-canal:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* =========================================
   9. RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================= */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {

    /* Header & Nav */
    .nav {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 80%;
        height: 100vh;
        /* Fallback */
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-white);
        box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        transition: right 0.4s ease;
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .nav-toggle,
    .nav-close {
        display: block;
    }

    .nav-close {
        position: absolute;
        top: 1rem;
        right: 1.5rem;
    }


    /* Hero Refactored Responsive */
    .hero {
        padding-bottom: 4rem;
        /* Reduce padding on mobile */
    }

    .hero-brand {
        font-size: 2.5rem;
    }

    .hero-text {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .strategy-cards {
        grid-template-columns: 1fr 1fr;
        /* 2x2 on tablet */
        gap: 1rem;
        margin-top: 2rem;
        margin-bottom: 0;
    }

    .solutions {
        padding-top: 4rem;
    }

    /* Benefits */
    .benefits-container {
        grid-template-columns: 1fr;
    }

    .benefits-image {
        margin-bottom: 2rem;
    }

    /* CTA */
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .hero-brand {
        font-size: 2rem;
    }

    .strategy-cards {
        grid-template-columns: 1fr;
        /* Stack cards on mobile */
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   10. BOTTOM FOOTER SECTION (NEW)
   ========================================= */
.footer-final-section {
    background-color: white;
    font-family: 'Inter', sans-serif;
}

/* Row 1 */
.final-row-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    /* Reduced padding for tighter look */
    max-width: 1200px;
    margin: 0 auto;
}

.faith-quote {
    color: #ff4757;
    /* Reddish/Orange */
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.products-label {
    color: #0088cc;
    /* Blue text */
    font-weight: 700;
    font-size: 0.9rem;
}

/* Row 2: Blue Bar */
.products-bar-blue {
    background-color: #007bff;
    /* Bright Blue */
    background: linear-gradient(to right, #0066cc, #0099ff);
    /* Subtle gradient like screenshot */
    padding: 1.2rem 0;
}

.products-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    /* Wide gap */
    flex-wrap: wrap;
}

.products-links a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s, opacity 0.2s;
}

.products-links a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Row 3: Copyright */
.copyright-bar {
    background-color: white;
    color: #333;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.85rem;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .final-row-1 {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem;
    }

    .products-links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

/* =========================================
   11. DETAILED CLIENTS SECTION (NEW)
   ========================================= */
.section-clients-detailed {
    background: white;
    padding-bottom: 4rem;
    /* Space after grid */
}

/* Header Bar */
.clients-header-bar {
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    /* Same as PCM-BI Gradient or similar light blue */
    padding: 1.5rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.clients-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

/* Grid Wrapper */
.clients-grid-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.clients-grid-dense {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    /* Dense grid: 8 columns */
    gap: 10px;
}

.client-box {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    background: white;
    transition: transform 0.2s;
}

.client-box:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.client-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Button Overlay */
.clients-overlay-btn {
    grid-column: 1 / -1;
    /* Span all columns */
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
    /* Optional: If we wanted it floating over, we would use absolute positioning, 
       but based on flow it seems to be in the middle or end. The screenshot shows 
       it overlaying or interrupting the grid. I'll place it in the flow for now 
       as it's cleaner. If it needs to be an overlay, I can adjust. 
       Actually, let's make it look like the "See More" button that expands or links.
    */
    grid-column: 4 / 6;
    /* Position in center columns */
    grid-row: 4;
    /* Place in specific row */
    z-index: 5;
}

/* Specific styling for the ver mais button to match screenshot style */
.btn-ver-mais {
    background-color: #0088cc;
    color: white;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    text-decoration: none;
}

.btn-ver-mais:hover {
    background-color: #0077b3;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .clients-grid-dense {
        grid-template-columns: repeat(6, 1fr);
    }

    .clients-overlay-btn {
        grid-column: 3 / 5;
    }
}

@media screen and (max-width: 768px) {
    .clients-grid-dense {
        grid-template-columns: repeat(4, 1fr);
    }

    .clients-overlay-btn {
        grid-column: 2 / 4;
    }
}

@media screen and (max-width: 480px) {
    .clients-grid-dense {
        grid-template-columns: repeat(3, 1fr);
    }

    .clients-overlay-btn {
        grid-column: 1 / -1;
    }
}

/* =========================================
   12. PILOT SECTION ADJUSTMENTS
   ========================================= */
.pilot-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.pilot-content {
    flex: 1;
}

.pilot-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}

.pilot-image img {
    max-width: 80%;
    /* Adjusted for side-by-side view */
    height: auto;
}

/* Responsive Pilot */
@media screen and (max-width: 768px) {
    .pilot-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .pilot-image {
        width: 100%;
        margin-top: 1rem;
    }

    .pilot-image img {
        max-width: 60%;
        /* Keep smaller on mobile as requested previously */
    }
}

/* =========================================
   13. ABOUT SECTION ADJUSTMENTS
   ========================================= */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: justify;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

@media screen and (max-width: 768px) {
    .about-container {
        flex-direction: column;
        gap: 2rem;
    }
}

/* =========================================
   14. YEARS BANNER / IMAGE HIGHLIGHT
   ========================================= */
.years-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
}

.years-banner img {
    max-width: 90%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

/* =========================================
   15. STATISTICS COUNTER STYLE (IMAGE MATCH)
   ========================================= */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 4.5rem;
    padding: 3rem 0 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    text-align: center;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
}

.stat-num {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #10779b;
    /* Teal/Blue color from reference image */
    line-height: 1;
    margin-bottom: 0.8rem;
    letter-spacing: -1px;
}

.stat-num.blue {
    color: #10779b;
}

.stat-desc {
    display: block;
    font-size: 1.15rem;
    color: #4a4a4a;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

/* Responsive for Stats */
@media screen and (max-width: 992px) {
    .stats-row {
        gap: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .stats-row {
        flex-direction: column;
        gap: 2.5rem;
    }

    .stat-num {
        font-size: 3rem;
    }
}