/* CSS Variables */
:root {
    --primary: #1e3a8a;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary: #f59e0b;
    --secondary-dark: #d97706;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --gradient: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --border-radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-white);
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 90px;
    /* 🔥 Define altura fixa elegante */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);

    display: flex;
    align-items: center;
    /* Centraliza verticalmente */
}

nav.scrolled {
    height: 70px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 70px;
    /* 🔥 Aumente aqui o tamanho da logo */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-white);
    z-index: 999;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

/* Hero Section */
.hero {

    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(120deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.45)),
        url("../img/Hero/Hero1.jpg");

    background-size: cover;
    background-position: center;

    padding: 140px 5% 100px;

}

.hero-bg {

    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

    background:

        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05), transparent 40%);

    z-index: 1;

}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {

    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);

    color: white;
    font-size: 14px;
    margin-bottom: 25px;

}

.hero-title {

    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    margin-bottom: 20px;

}

.highlight {
    color: #f59e0b;
}

.hero-subtitle {

    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: auto;
    margin-bottom: 40px;

}

/* Stats Section */

.stats {
    padding: 60px 0;
    background: var(--bg-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    transform: translateY(-90px);
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

@media (max-width: 768px) {

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

}

/* FIM */

.audience {
    padding: 20px 20px;
    background: #f9fbff;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.audience-wrapper {
    position: relative;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
}

/* CARDS */

.audience-card {
    background: #fff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid #1e3a8a;
    max-width: 320px;
    text-align: left;
    transition: .3s;
}

.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.audience-card i {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1e3a8a;
}

.audience-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.audience-card p {
    font-size: 14px;
    opacity: .75;
    line-height: 1.6;
}

/* linha de cima */

.audience-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.audience-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.audience-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

/* linha de baixo centralizada */

.audience-card:nth-child(4) {
    grid-column: 1 / span 2;
    grid-row: 2;
    justify-self: center;
}

.audience-card:nth-child(5) {
    grid-column: 2 / span 2;
    grid-row: 2;
    justify-self: center;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}

.carousel-arrow.left {
    left: -10px;
}

.carousel-arrow.right {
    right: -10px;
}

@media(max-width:768px) {

    .audience-grid {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        scroll-snap-type: x mandatory;
    }

    .audience-card {
        min-width: 260px;
        scroll-snap-align: center;
    }

    .carousel-arrow {
        display: flex;
    }

}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--secondary);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    background: var(--secondary-dark);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.floating-card.left {
    left: 5%;
    top: 30%;
    animation-delay: 0s;
}

.floating-card.right {
    right: 5%;
    bottom: 20%;
    animation-delay: 3s;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.stat-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.stat-symbol {
    font-size: 28px;
    margin-top: 4px;
    line-height: 1;
}

@media(max-width:768px) {

    .stats {
        padding: 40px 10px;
    }

    .stats-grid {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        transform: none;
    }

    .stat-card {

        /* remove visual de card */

        background: none;
        box-shadow: none;
        border: none;
        padding: 0;

        display: flex;
        flex-direction: column;
        align-items: center;

        flex: 1;
    }

    .stat-number,
    .stat-symbol {
        font-size: 24px;
    }

    .stat-label {
        font-size: 11px;
        text-align: center;
        margin-top: 4px;
        text-wrap: nowrap;
    }

    .stat-card:not(:last-child) {
        border-right: 1px solid rgba(0, 0, 0, 0.08);
    }

}

/* FIm */

/* DEPOIMENTOS */
.reviews {
    padding: 90px 20px;
    background: #f8f8f8;
}

.reviews-container {
    max-width: 1200px;
    margin: auto;
}

.reviews-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 60px;
}

.reviews-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.google-rating {
    min-width: 220px;
    text-align: center;
}

.rating-title {
    font-weight: 700;
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
}

.stars {
    color: #f4b400;
    font-size: 26px;
    letter-spacing: 3px;
}

.stars.small {
    font-size: 18px;
    margin: 8px 0;
}

.rating-count {
    font-size: 14px;
    margin-top: 10px;
}

.google-logo {
    font-size: 26px;
    font-weight: 600;
    color: #4285F4;
    margin-top: 10px;
}

.testimonials-slider{
display:flex;
gap:20px;
overflow-x:auto;
scroll-behavior:smooth;
width:100%;
padding:10px 5px;
}

.testimonial-card {
    background: white;
    border-radius: 14px;
    padding: 22px;
    width: 280px;
    border: 1px solid #e6c07b;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
    transition: 0.3s;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2d6cdf;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author strong {
    display: block;
    font-size: 14px;
}

.author span {
    font-size: 12px;
    color: #777;
}

.google-icon {
    margin-left: auto;
    font-weight: 700;
    color: #4285F4;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 6px;
}

.reviews-slider-wrapper{
position:relative;
display:flex;
align-items:center;
width:100%;
overflow:hidden;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.2s;
}

.slider-arrow:hover {
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow.prev {
    left: -20px;
}

.slider-arrow.next {
    right: -20px;
}

@media (max-width:768px){

.slider-arrow{
width:36px;
height:36px;
}

.slider-arrow.prev{
left:-10px;
}

.slider-arrow.next{
right:-10px;
}

.testimonial-card{
min-width:85%;
}

}

@media (max-width:768px) {

    .reviews-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .google-rating {
        text-align: left;
    }

    .testimonials-slider {
        width: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
    }

    .testimonials-slider::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        min-width: 85%;
        scroll-snap-align: start;
    }

}

/* FIM DEPOIMENTOS */


/* Partners Section */
.partners {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: start;
}

.partner-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.partner-image-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.partner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.partner-card:hover .partner-image {
    transform: scale(1.05);
}

.partner-info {
    padding: 2rem;
}

.partner-role {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.partner-name {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.partner-credential {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: block;
}

.partner-bio {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 🔥 Sempre 2 colunas no desktop */
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    background: var(--bg-light);
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    transition: var(--transition);
}

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

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {

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

    .hero h2 {
        font-size: 1rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        /* 🔥 Corrige o scroll lateral */
    }

    .partner-image-container {
        height: 350px;
    }

    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Differentials Section */
.differentials {
    padding: 80px 0;
    background: var(--primary);
    color: white;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.differential-item {
    text-align: center;
    padding: 2rem;
}

.differential-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    margin-bottom: -1.5rem;
    font-family: 'Playfair Display', serif;
}

.differential-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.differential-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* CTA Section */
.cta {
    padding: 100px 5%;
    min-height: auto;
    /* mantém altura natural da seção */

    background:
        linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
        url("../img/Hero/colleagues-shaking-hands-desk.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {


    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.cta h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    position: relative;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-tag {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-link {
    font-weight: 600;
    color: var(--primary);
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: var(--primary-dark);
}

/* Responsivo */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* .footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
} */

.footer-info p {
    color: var(--text-lighter);
    font-size: 0.9rem;
    max-width: 300px;
}


.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-lighter);
    transition: color 0.3s ease;
}

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

.footer-contact p {
    color: var(--text-lighter);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

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

.footer-bottom p {
    color: var(--text-lighter);
    font-size: 0.85rem;
}

.footer-map {
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.footer-map iframe {
    width: 100%;
    height: 220px;
    border: 0;
    display: block;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

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

    .mobile-menu {
        display: block;
    }

    .floating-card {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info p {
        max-width: 100%;
    }

    .footer-logo {
        margin: 0 auto 1rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .partner-image-container {
        height: 350px;
    }

    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 5% 60px;
    }

    .partners,
    .services {
        padding: 60px 0;
    }

    .partner-info {
        padding: 1.5rem;
    }
}

.trust-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 5%;
    background: #fff;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

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

.trust-item strong {
    font-size: 28px;
    color: var(--primary);
    display: block;
}

.trust-item span {
    font-size: 14px;
    color: var(--text-light);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 1100;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.whatsapp-float::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}