.btn-primary,
.btn-accent,
.btn {
    background-color: #25D366 !important;
    color: #fff !important;
    border: none !important;
}

.btn-primary:hover,
.btn-accent:hover,
.btn:hover {
    background-color: #20BA5A !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
}

.btn-primary:active,
.btn-accent:active,
.btn:active {
    background-color: #1DA851 !important;
    transform: translateY(0);
}

/* Garantir que os ícones do WhatsApp fiquem brancos */
.btn i.fa-whatsapp {
    color: #fff !important;
}

:root {
    --primary: #0d3d56;
    --primary-dark: #08283a;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

* {
    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;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--primary-dark);
    font-size: 1.1rem;
    padding: 16px 32px;
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.btn-white {
    background-color: var(--white);
    color: var(--accent);
}

.btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-btn 2s infinite;
}

.floating-btn:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    color: #fff;
}

@keyframes pulse-btn {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.logo img {
    height: 40px;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--primary);
    position: relative;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url('hero.png');
    background-size: cover;
    background-position: top center;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 61, 86, 0.9) 0%, rgba(13, 61, 86, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

#hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.highlight {
    color: var(--accent);
}

#hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

/* Sections General */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: var(--primary);
    color: var(--white);
}

.bg-dark h2,
.bg-dark p {
    color: var(--white);
}

.text-accent {
    color: var(--accent) !important;
}

.text-center {
    text-align: center;
}

/* About / Quem Sou Eu */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent);
    color: var(--primary-dark);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.about-text h3 {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.feature i {
    color: var(--accent);
}

/* Benefits Cards */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--accent);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(13, 61, 86, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.benefit-card:hover .icon-box {
    background-color: var(--primary);
    color: var(--white);
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Services */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    transition: var(--transition);
}

.service-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.service-icon {
    font-size: 2rem;
    color: var(--accent);
}

.service-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.services-cta {
    margin-top: 20px;
}

/* Advantages / Vantagens */
.vantagens-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vantagens-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.advantages-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.advantages-list li i {
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.advantages-list strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.advantages-list p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.vantagens-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vantagens-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Before & After */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.comparison-item {
    display: flex;
    gap: 10px;
    background: var(--white);
    padding: 10px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.comp-img {
    position: relative;
    flex: 1;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
}

.comp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.comp-img:hover img {
    transform: scale(1.1);
}

.label-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.label-badge.before {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
}

.label-badge.after {
    background-color: var(--accent);
    color: var(--primary-dark);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stars {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.client-info div {
    text-align: left;
}

.client-info strong {
    display: block;
    color: var(--primary);
}

.client-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}



/* Final CTA */
.final-cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-box h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.final-cta-box p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 20px;
}

footer h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

footer ul li {
    margin-bottom: 15px;
}

footer ul li a:hover {
    color: var(--accent);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

/* Animations */
.fade-up,
.fade-left,
.fade-right {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-left {
    transform: translateX(30px);
}

.fade-right {
    transform: translateX(-30px);
}

.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 992px) {
    #hero h1 {
        font-size: 2.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .vantagens-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vantagens-image {
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-only {
        display: block;
    }

    .header-cta .btn {
        display: none;
    }

    #hero h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

.client-info div {
    text-align: left;
}

.client-info strong {
    display: block;
    color: var(--primary);
}

.client-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}



/* Final CTA */
.final-cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-box h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.final-cta-box p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 20px;
}

footer h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

footer ul li {
    margin-bottom: 15px;
}

footer ul li a:hover {
    color: var(--accent);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

/* Animations */
.fade-up,
.fade-left,
.fade-right {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-left {
    transform: translateX(30px);
}

.fade-right {
    transform: translateX(-30px);
}

.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 992px) {
    #hero h1 {
        font-size: 2.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .vantagens-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vantagens-image {
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-only {
        display: block;
    }

    .header-cta .btn {
        display: none;
    }

    #hero h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

.client-info div {
    text-align: left;
}

.client-info strong {
    display: block;
    color: var(--primary);
}

.client-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}



/* Final CTA */
.final-cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-box h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.final-cta-box p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 20px;
}

footer h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

footer ul li {
    margin-bottom: 15px;
}

footer ul li a:hover {
    color: var(--accent);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

/* Animations */
.fade-up,
.fade-left,
.fade-right {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-left {
    transform: translateX(30px);
}

.fade-right {
    transform: translateX(-30px);
}

.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 992px) {
    #hero h1 {
        font-size: 2.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .vantagens-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vantagens-image {
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-only {
        display: block;
    }

    .header-cta .btn {
        display: none;
    }

    #hero h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .offer-list {
        flex-direction: column;
        gap: 15px;
    }

    .experience-badge {
        padding: 6px 8px;
        bottom: 8px;
        right: 8px;
        border-radius: 4px;
        transform: scale(0.85);
        /* reduz tudo proporcionalmente */
        transform-origin: bottom right;
    }

    .experience-badge .years {
        font-size: 0.85rem;
    }

    .final-cta-box h2 {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .final-cta-box p {
        font-size: 1.2rem;
        color: var(--text-light);
        margin-bottom: 40px;
    }

    /* Footer */
    footer {
        background-color: var(--primary-dark);
        color: rgba(255, 255, 255, 0.7);
        padding: 80px 0 30px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 50px;
        margin-bottom: 60px;
    }

    .footer-brand img {
        height: 40px;
        margin-bottom: 20px;
    }

    footer h4 {
        color: var(--white);
        margin-bottom: 25px;
        font-size: 1.2rem;
    }

    footer ul li {
        margin-bottom: 15px;
    }

    footer ul li a:hover {
        color: var(--accent);
    }

    .footer-contact p {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 30px;
        text-align: center;
        font-size: 0.9rem;
    }

    /* Animations */
    .fade-up,
    .fade-left,
    .fade-right {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease-out;
    }

    .fade-left {
        transform: translateX(30px);
    }

    .fade-right {
        transform: translateX(-30px);
    }

    .visible {
        opacity: 1;
        transform: translate(0);
    }

    .delay-1 {
        transition-delay: 0.2s;
    }

    .delay-2 {
        transition-delay: 0.4s;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    .pulse {
        animation: pulse 2s infinite;
    }

    /* Responsive */
    @media (max-width: 992px) {
        #hero h1 {
            font-size: 2.8rem;
        }

        .about-grid {
            grid-template-columns: 1fr;
        }

        .vantagens-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .vantagens-image {
            order: -1;
        }

        .footer-content {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .nav-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: var(--white);
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-menu.active {
            display: block;
        }

        .nav-menu ul {
            flex-direction: column;
            gap: 15px;
            text-align: center;
        }

        .mobile-menu-btn {
            display: block;
        }

        .mobile-only {
            display: block;
        }

        .header-cta .btn {
            display: none;
        }

        #hero h1 {
            font-size: 2.2rem;
        }

        .section-header h2 {
            font-size: 2rem;
        }

        .comparison-grid {
            grid-template-columns: 1fr;
        }

        .offer-list {
            flex-direction: column;
            gap: 15px;
        }

        .experience-badge {
            padding: 6px 8px;
            bottom: 8px;
            right: 8px;
            border-radius: 4px;
            transform: scale(0.85);
            /* reduz tudo proporcionalmente */
            transform-origin: bottom right;
        }

        .experience-badge .years {
            font-size: 0.85rem;
        }

        .experience-badge .text {
            font-size: 0.65rem;
            line-height: 1.1;
        }

        .services-list {
            grid-template-columns: 1fr;
        }
    }