/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #1a2e5a;
    --secondary-color: #00a8e1;
    --accent-color: #0086b8;
    --text-dark: #1a202c;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #1a2e5a 0%, #2a4270 100%);
    --gradient-2: linear-gradient(135deg, #00a8e1 0%, #00c2ff 100%);
    
    /* Typography */
    --font-primary: 'Roboto', sans-serif;
    --font-heading: 'Roboto', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== HEADER & NAVBAR ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(26, 54, 93, 0.86);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.header.scrolled {
    background: rgba(26, 54, 93, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 35px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(44, 82, 130, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    padding: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: #c29d2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-block {
    width: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s backwards;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SECTION STYLES ===== */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-color);
    margin-top: 10px;
    margin-bottom: 20px;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-2);
    margin: 0 auto;
    border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-experience {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.experience-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.experience-text {
    color: var(--white);
    font-weight: 600;
    margin-top: 10px;
    line-height: 1.3;
}

/* ===== MISSÃO, VISÃO E VALORES ===== */
.mvv-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
    position: relative;
}

.mvv-item {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.64));
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(10, 20, 40, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    position: relative;
    overflow: hidden;
}

.mvv-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 44px rgba(10, 20, 40, 0.15);
    border-color: rgba(0, 168, 225, 0.35);
}

.mvv-item::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    top: -88px;
    right: -76px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 168, 225, 0.22) 0%, rgba(0, 168, 225, 0) 72%);
    pointer-events: none;
}

.mvv-item::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(0, 168, 225, 0.85), rgba(26, 46, 90, 0.85));
}

.mvv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, rgba(0, 168, 225, 0.9), rgba(26, 46, 90, 0.95));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 24px rgba(0, 168, 225, 0.24);
}

.mvv-icon i {
    font-size: 1.6rem;
    color: var(--white);
}

.mvv-item h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
}

.mvv-item p {
    color: #41516f;
    text-align: justify;
    line-height: 1.6;
    font-size: 0.95rem;
}

.valores-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.valores-list li {
    color: var(--text-dark);
    line-height: 1.3;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 8px;
    border: 1px solid rgba(0, 168, 225, 0.16);
    border-left: 4px solid var(--secondary-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.valores-list li i {
    color: var(--secondary-color);
    font-size: 0.85rem;
}

.valores-list li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 4px;
    min-width: 0;
}

.stat-number {
    display: block;
    font-size: clamp(1.45rem, 1.9vw, 2rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    line-height: 1.1;
    white-space: nowrap;
}

.stat-label {
    display: block;
    color: var(--text-light);
    font-size: 0.82rem;
    line-height: 1.25;
}

.about-stats .stat-item:nth-child(3) .stat-number {
    font-size: clamp(1.05rem, 1.25vw, 1.3rem);
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-2);
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    flex: 1;
}

.service-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

/* ===== BLOG HIGHLIGHT (HOME) ===== */
.blog-highlight {
    background: linear-gradient(180deg, #f4faff 0%, #ffffff 100%);
}

.blog-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.blog-highlight-card {
    background: var(--white);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 16px 34px rgba(26, 54, 93, 0.09);
    border-top: 4px solid transparent;
    transition: var(--transition);
}

.blog-highlight-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--secondary-color);
}

.blog-highlight-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 14px;
    background: rgba(0, 168, 225, 0.14);
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.blog-highlight-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 10px;
}

.blog-highlight-card p {
    color: var(--text-light);
    margin-bottom: 18px;
}

.blog-highlight-cta {
    text-align: center;
    margin-top: 34px;
}

/* ===== BLOG PAGES ===== */
.blog-page .page-hero {
    min-height: 66vh;
}

.blog-page .page-kicker {
    color: #8de9ff;
}

.blog-page .hero-proof-card {
    background: rgba(5, 18, 42, 0.55);
}

.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 26px;
}

.blog-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(26, 54, 93, 0.1);
    display: flex;
    flex-direction: column;
}

.blog-card-cover {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-content {
    padding: 28px;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
    color: #4f698b;
    font-size: 0.86rem;
}

.blog-card h2,
.blog-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.blog-post-shell {
    max-width: 860px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 44px;
    box-shadow: 0 18px 36px rgba(26, 54, 93, 0.08);
}

.blog-post-shell h2 {
    color: var(--primary-color);
    margin-top: 22px;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.blog-post-shell p,
.blog-post-shell li {
    color: #41516f;
    line-height: 1.8;
}

.blog-post-shell ul,
.blog-post-shell ol {
    padding-left: 24px;
    display: grid;
    gap: 8px;
    margin: 12px 0;
}

.blog-post-cover {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 26px;
}

.blog-post-cta {
    margin-top: 28px;
    padding: 26px;
    border-radius: 16px;
    background: linear-gradient(135deg, #eef7ff 0%, #f7fcff 100%);
    border: 1px solid #d8eaf7;
}

.blog-post-signature {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid #d8e3f0;
}

.blog-post-signature .signature-name {
    margin: 0 0 4px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.4;
}

.blog-post-signature .signature-role {
    margin: 0;
    color: #4f698b;
    line-height: 1.5;
}

.blog-post-signature .signature-role + .signature-role {
    margin-top: 2px;
}

.blog-post-signature + .blog-post-cta {
    margin-top: 22px;
}

.blog-post-share {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #d8e3f0;
}

.blog-post-share .share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.blog-post-share .share-btn,
.blog-post-share button.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    border: 1px solid #c7ddef;
    background: #ffffff;
    color: #244166;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    line-height: 1;
    transition: var(--transition);
}

.blog-post-share .share-btn:hover,
.blog-post-share button.share-btn:hover {
    border-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.blog-post-share .share-btn i,
.blog-post-share button.share-btn i {
    line-height: 1;
    font-size: 1rem;
}

.blog-post-share .share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

.blog-post-share .share-icon svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
}

.blog-post-share .share-btn.is-copied,
.blog-post-share button.share-btn.is-copied {
    border-color: #38a169;
    color: #2f855a;
}

.blog-post-cta h3 {
    margin: 0 0 10px;
}

.blog-post-cta p {
    margin: 0 0 16px;
}

.blog-post-cta .btn {
    margin-top: 4px;
}

.blog-post-page .page-hero-copy h1 {
    font-size: clamp(2rem, 3.2vw, 3rem);
}

@media (max-width: 768px) {
    .blog-list-grid {
        grid-template-columns: 1fr;
    }

    .blog-post-shell {
        padding: 24px;
    }

    .blog-post-cta {
        padding: 22px;
    }

    .blog-post-share {
        padding-top: 16px;
    }

    .blog-post-cover {
        height: 240px;
    }
}

/* ===== SERVICE PAGES ===== */
.service-page .header {
    background: rgba(26, 54, 93, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.page-hero {
    min-height: 82vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 90px;
}

.page-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(10, 23, 49, 0.86) 0%, rgba(26, 54, 93, 0.72) 52%, rgba(0, 134, 184, 0.64) 100%);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-breadcrumb {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 25px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.page-breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 40px;
    align-items: center;
}

.page-hero-copy {
    color: var(--white);
}

.page-hero-copy h1 {
    font-size: clamp(2rem, 3.8vw, 3.35rem);
    line-height: 1.08;
    margin-bottom: 18px;
}

.page-hero-copy p {
    font-size: 1rem;
    line-height: 1.68;
    max-width: 660px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 32px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-proof-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    padding: 28px;
    color: var(--white);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.hero-proof-card h2 {
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.hero-proof-card .proof-list li {
    font-size: 0.94rem;
}

.proof-list {
    list-style: none;
    display: grid;
    gap: 14px;
}

.proof-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.proof-list i {
    color: var(--secondary-color);
    margin-top: 4px;
}

.service-trust-bar {
    background: linear-gradient(180deg, #eef7fc 0%, #ffffff 100%);
    border-bottom: 1px solid #d9eaf7;
}

.service-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 22px 0;
}

.trust-item {
    background: var(--white);
    border-radius: 18px;
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 12px 30px rgba(26, 54, 93, 0.07);
}

.trust-item i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 168, 225, 0.12);
    color: var(--secondary-color);
}

.trust-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.trust-item span {
    color: var(--text-light);
    font-size: 0.92rem;
}

.service-intro-grid,
.service-split-grid,
.service-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
}

.service-panel {
    background: var(--white);
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.08);
}

.service-panel-dark {
    background: linear-gradient(135deg, #112647 0%, #1a2e5a 100%);
    color: var(--white);
}

.service-panel-dark h3,
.service-panel-dark p,
.service-panel-dark li,
.service-panel-dark strong {
    color: var(--white);
}

.service-visual {
    position: relative;
    min-height: 420px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.service-visual img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-visual-badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-color);
    padding: 18px 20px;
    border-radius: 18px;
    max-width: 260px;
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.16);
}

.service-visual-badge strong {
    display: block;
    margin-bottom: 6px;
}

.service-list {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.service-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-light);
}

.service-list i {
    color: var(--secondary-color);
    margin-top: 4px;
}

.service-card-grid,
.service-metric-grid,
.service-step-grid,
.service-faq-grid {
    display: grid;
    gap: 24px;
}

.service-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card-item {
    background: var(--white);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 18px 36px rgba(26, 54, 93, 0.08);
    border-top: 4px solid transparent;
    transition: var(--transition);
}

.service-card-item:hover {
    transform: translateY(-6px);
    border-top-color: var(--secondary-color);
}

.service-card-item .service-icon {
    margin-bottom: 18px;
}

.service-card-item h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-card-item p {
    color: var(--text-light);
}

.service-metric-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid #dcecf7;
    border-radius: 22px;
    padding: 26px;
    text-align: center;
}

.metric-number {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.metric-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-step-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card {
    position: relative;
    padding: 26px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 18px 36px rgba(26, 54, 93, 0.08);
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 18px;
}

.chart-shell {
    background: linear-gradient(180deg, #fff 0%, #f6fbfe 100%);
    border: 1px solid #dcecf7;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 18px 36px rgba(26, 54, 93, 0.08);
}

.chart-shell h3 {
    color: var(--primary-color);
    margin-bottom: 18px;
}

.chart-bar-list {
    list-style: none;
    display: grid;
    gap: 16px;
}

.chart-bar-list li span {
    display: flex;
    justify-content: space-between;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.chart-track {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: #deedf7;
    overflow: hidden;
}

.chart-fill {
    height: 100%;
    border-radius: 999px;
    background: var(--gradient-2);
}

.faq-card {
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 14px 30px rgba(26, 54, 93, 0.08);
}

.faq-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.faq-card p {
    color: var(--text-light);
}

.service-contact-box {
    background: linear-gradient(135deg, #112647 0%, #1a2e5a 100%);
    color: var(--white);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 24px 50px rgba(17, 38, 71, 0.28);
}

.service-contact-box h3,
.service-contact-box p,
.service-contact-box a,
.service-contact-box li {
    color: var(--white);
}

.service-contact-box a {
    text-decoration: none;
}

.service-contact-box .service-list i {
    color: #6ddcff;
}

@media (max-width: 1100px) {
    .page-hero-grid,
    .service-intro-grid,
    .service-split-grid,
    .service-contact-grid,
    .service-trust-grid,
    .service-card-grid,
    .service-metric-grid,
    .service-step-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 130px 0 70px;
        min-height: auto;
    }

    .page-hero-grid,
    .service-intro-grid,
    .service-split-grid,
    .service-contact-grid,
    .service-trust-grid,
    .service-card-grid,
    .service-metric-grid,
    .service-step-grid {
        grid-template-columns: 1fr;
    }

    .hero-proof-card,
    .service-panel,
    .service-contact-box {
        padding: 24px;
    }

    .page-hero-copy h1 {
        font-size: clamp(1.55rem, 6.4vw, 2.15rem);
        line-height: 1.15;
    }

    .page-hero-copy p {
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .page-breadcrumb {
        font-size: 0.82rem;
    }

    .service-visual {
        min-height: 320px;
    }
}

/* ===== ADVANTAGES SECTION ===== */
.advantages {
    background: var(--gradient-1);
    color: var(--white);
}

.advantages .section-subtitle {
    color: var(--secondary-color);
}

.advantages .section-title {
    color: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.advantage-item {
    text-align: center;
    padding: 30px;
}

.advantage-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
}

.advantage-item:hover .advantage-icon {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.advantage-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.advantage-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.advantage-item p {
    opacity: 0.9;
}

/* ===== TEAM SECTION ===== */
.team {
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    align-items: stretch;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.member-image {
    position: relative;
    overflow: hidden;
    width: 250px;
    min-width: 250px;
    height: auto;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.member-coming-soon img {
    filter: brightness(1.5) grayscale(100%);
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.coming-soon-overlay span {
    color: #718096;
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 54, 93, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.1);
}

.team-member-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    flex: 1;
}

.team-member h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 0 0 10px 0;
}

.member-role {
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 500;
}

.member-certification {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* ===== INSURANCE PARTNERS SECTION ===== */
.insurance-partners {
    padding: var(--section-padding);
    background: var(--bg-light);
    width: 100%;
    position: relative;
}

.insurance-partners .section-description {
    text-align: center;
    max-width: 700px;
    margin: 20px auto 0;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Carrossel de parceiros */
.partners-carousel {
    margin-top: 60px;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 0 20px;
}

.partners-carousel::before,
.partners-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.partners-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

.partners-track {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px;
    animation: scroll-partners 60s linear infinite;
    width: max-content !important;
    align-items: center;
    flex-wrap: nowrap !important;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    background: var(--white);
    padding: 20px 25px;
    border-radius: 12px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 200px !important;
    max-width: 200px !important;
    width: 200px !important;
    height: 100px !important;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    vertical-align: top;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.partner-logo img {
    max-width: 160px;
    max-height: 60px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== CONTACT SECTION ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.3rem;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-light);
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ===== CONTACT MAP ===== */
.contact-map {
    display: flex;
    flex-direction: column;
}

.contact-map h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: left;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ===== FORM STYLES ===== */
.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group input:focus ~ label,
.form-group textarea:focus ~ label {
    top: -10px;
    left: 10px;
    font-size: 0.85rem;
    color: var(--secondary-color);
    background: var(--white);
    padding: 0 5px;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
}

.form-group select {
    cursor: pointer;
    color: var(--text-dark);
}

.form-group select option {
    padding: 10px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 45px;
    width: auto;
    filter: brightness(1.2);
}

.footer-about p {
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links h4 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-newsletter h4 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-newsletter p {
    opacity: 0.9;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--secondary-color);
    border: none;
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #c29d2f;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--secondary-color);
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    padding-right: 20px;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
}

/* ===== WHATSAPP FLOATING 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: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: var(--section-padding);
    background: var(--white);
}

.google-rating-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.rating-score {
    text-align: center;
}

.score-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.rating-score .stars {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-bottom: 15px;
    color: #ffc107;
    font-size: 1.5rem;
}

.rating-count {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.rating-count span {
    font-weight: 600;
    color: var(--secondary-color);
}

.google-logo-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

.google-logo-badge i {
    font-size: 3rem;
    color: #4285f4;
}

.loading-reviews {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.loading-reviews i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.loading-reviews p {
    font-size: 1.1rem;
    margin: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border-left: 4px solid var(--secondary-color);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card .stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    color: #ffc107;
    font-size: 1.1rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-time {
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary-color);
}

.testimonial-text-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.testimonial-text-wrapper.collapsible {
    max-height: 80px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.testimonial-text-wrapper.collapsible.expanded {
    max-height: 1000px;
}

.text-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, white);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.testimonial-text-wrapper.expanded .text-fade {
    opacity: 0;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
    font-style: italic;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 0;
    transition: var(--transition);
    margin-bottom: 20px;
}

.read-more-btn:hover {
    color: var(--primary-color);
}

.read-more-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.testimonial-text::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.author-info h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info p {
    margin: 5px 0 0 0;
    color: #666;
    font-size: 0.9rem;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 8px 15px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
}

.google-badge i {
    color: #4285f4;
    font-size: 1rem;
}

.testimonials-cta {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--primary-color), #2a4a7f);
    border-radius: 15px;
    color: var(--white);
}

.testimonials-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.testimonials-cta .btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.testimonials-cta .btn:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .mvv-section {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 30px;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .partners-carousel {
        padding: 0 10px;
    }
    
    .partners-carousel::before,
    .partners-carousel::after {
        width: 30px;
    }
    
    .partners-track {
        gap: 15px;
    }
    
    .partner-logo {
        min-width: 150px;
        max-width: 150px;
        padding: 15px 20px;
        height: 80px;
    }
    
    .partner-logo img {
        max-width: 120px;
        max-height: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .about-image {
        height: 400px;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .contact-form {
        padding: 25px;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}
