/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #053861;
    --primary-blue-rgb: 5, 56, 97;
    --light-blue: #0961aa;
    --accent-blue: #60A5FA;
    --white: #ffffff;
    --border-gray: #E5E7EB;
    --light-gray: #F8FAFC;
    --medium-gray: #64748B;
    --dark-gray: #334155;
    --success-green: #10B981;
    --success-green-rgb: 16, 185, 129;
    --warning-red: #EF4444;
    --warning-red-rgb: 239, 68, 68;
    --warning-red-title: #A60624;
    --attention-yellow: #F59E0B;
    --attention-yellow-rgb: 245, 158, 11;
    --gradient-blue: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    --gradient-surface: linear-gradient(180deg, hsl(var(--background)) 0%, hsl(var(--accent)) 100%);
    --gradient-secondary: linear-gradient(135deg, hsl(var(--secondary)), hsl(var(--secondary-light)));
    --gradient-process-blue: linear-gradient(135deg, #0E4E9B 0%, #1E5BB8 100%);
    --gradient-process-red: linear-gradient(135deg, #8E1830 0%, #A91E42 100%);
    --process-blue: #0E4E9B;
    --process-red: #8E1830;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
    --radius: .75rem;
    --background: 0 0% 100%;
    --foreground: 225 15% 15%;
    --accent: 220 15% 96%;
    --muted-foreground: 225 15% 45%;
    --primary-foreground: 0 0% 100%;
    --secondary: 0 85% 55%;
    --secondary-light: 0 85% 65%;
    --secondary-foreground: 0 0% 100%;
    --border: 220 13% 91%;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

img,
video {
    max-width: 100%;
    height: auto;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background-image: var(--gradient-surface);
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(23, 76, 151, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 18px;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    display: flex;
    background: hsl(var(--accent));
    ;
    border-radius: var(--radius);
    padding: 4px;
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    border-radius: calc(var(--radius) - 2px);
    color: hsl(var(--muted-foreground));
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    width: 36px;
    text-decoration: none;
}

.lang-btn.active {
    background: var(--primary-blue);
    color: hsl(var(--primary-foreground));
}

.lang-btn.active:hover {
    box-shadow: 0 8px 25px rgba(23, 76, 151, 0.3);
    scale: 1.05;
}

.btn-primary {
    background: var(--gradient-blue);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 50px;
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(23, 76, 151, 0.3);
    scale: 1.05;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    padding: 12px 24px;
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    scale: 1.05;
}

.btn-primary svg,
.btn-secondary svg {
    width: 1rem;
    height: 1rem;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background-image: var(--gradient-surface);
    min-height: 100vh;
    align-items: center;
    display: flex;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 470px;
    gap: 40px;
    align-items: center;
}

.hero-digital {
    color: hsl(var(--primary-blue));
    font-weight: 600;
    font-size: .75rem;
    padding: .125rem .625rem;
    background-color: var(--accent-blue);
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(135deg,
            black 0%,
            black 10%,
            var(--primary-blue) 50%,
            var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 2.25rem;
    color: hsl(var(--muted-foreground));
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-visual-revelo {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
    isolation: isolate;
}

/* shapes de fundo em degraus */
.hero-visual-revelo .rev-shape {
    position: absolute;
    border-radius: 24px;
    background: linear-gradient(180deg, #5B21B6 0%, #1F1457 100%);
    box-shadow: 0 40px 120px rgba(46, 16, 101, 0.45);
    opacity: 0.95;
    z-index: 0;
}

.hero-visual-revelo .rev-shape.s1 {
    width: 360px;
    height: 240px;
    right: 18px;
    top: 32px;
    transform: translate(0, 0) rotate(0.5deg);
}

.hero-visual-revelo .rev-shape.s2 {
    width: 300px;
    height: 200px;
    right: 48px;
    top: 220px;
    transform: translate(0, 0) rotate(0.5deg);
    filter: brightness(1.05);
}

.hero-visual-revelo .rev-shape.s3 {
    width: 220px;
    height: 150px;
    right: 108px;
    top: 360px;
    transform: translate(0, 0) rotate(0.5deg);
    filter: brightness(1.12);
}

/* cartão branco com “borda” grossa e glow */
.rev-photo-card {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 28px;
    padding: 16px;
    /* cria a borda grossa */
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06),
        0 60px 140px rgba(94, 106, 210, 0.35);
    /* glow azulado */
}

.rev-photo-card img {
    display: block;
    width: 420px;
    /* ajuste fino conforme a foto */
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

/* chip flutuante */
.rev-chip {
    position: absolute;
    left: 26px;
    bottom: 26px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    color: #0E1330;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.rev-chip .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
    background: #10B981;
    vertical-align: middle;
}

/* responsivo */
@media (max-width: 1100px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual-revelo {
        min-height: 440px;
    }

    .hero-visual-revelo .rev-shape {
        transform: scale(.9);
        opacity: .9;
    }
}

@media (max-width: 640px) {
    .hero-visual-revelo {
        min-height: 360px;
    }

    .rev-photo-card img {
        width: 100%;
    }
}

/* Stats Strip */
.stats-strip {
    background: var(--primary-blue);
    color: white;
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stats-item h3 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 8px;
    --tw-text-opacity: 1;
    color: rgb(166 6 36 / var(--tw-text-opacity, 1));
}

.stats-item p {
    color: hsl(var(--muted-foreground));
    font-size: 1rem;
    line-height: 1.25rem;
    opacity: 0.9;
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-title.red {
    color: var(--warning-red-title);
}

.section-subtitle {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: hsl(var(--muted-foreground));
    text-align: center;
    margin-bottom: 60px;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.cards-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.cards-grid-4 {
    --icon-h: 56px;
    --title-lines: 2;
    --title-lh: 1.25;
    --desc-lines: 4;
    --desc-lh: 1.5;
}

.card {
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    border: 1px solid;
    border-color: hsl(var(--border) / .5);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    font-size: 2.25rem;
    line-height: 2.5rem;
    height: var(--icon-h);
    width: 100%;
}

.dashicons {
    font-size: 2.25rem !important;
    line-height: 2.5rem;
    width: 36px !important;
    height: 36px !important;
}

.icon-img {
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin-bottom: 1rem;
    width: 36px;
    height: 36px;
    margin-left: auto;
    margin-right: auto;
}

.flex .card-icon {
    font-size: 1.875rem;
    line-height: 2.25rem;
    margin-right: 1rem;
    width: unset;
}

.card h3 {
    letter-spacing: -.025em;
    font-size: 1.125rem;
    line-height: var(--title-lh);
    min-height: calc(var(--title-lines) * var(--title-lh) * 1em);
    font-weight: 600;
    --tw-space-y-reverse: 0;
    margin-top: calc(.375rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(.375rem * var(--tw-space-y-reverse));
}

.card h3.red {
    color: var(--warning-red-title);
}

.card p {
    color: hsl(var(--muted-foreground));
    font-size: .875rem;
    line-height: var(--desc-lh);
    min-height: calc(var(--desc-lines) * var(--desc-lh) * 1em);
    --tw-space-y-reverse: 0;
    margin-top: calc(.375rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(.375rem * var(--tw-space-y-reverse));
}

.card-list {
    list-style: none;
    margin-top: 1rem;
}

.card-list li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    font-size: .875rem;
    line-height: 1.25rem;
    gap: 1rem;
    color: hsl(var(--muted-foreground));
}

.card-list li svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--success-green);
}

/* Results Section */
.results-highlight {
    margin-top: 4rem;
    background-image: var(--gradient-blue);
    border-radius: 1.5rem;
    padding: 4rem 3rem 2rem 3rem;
    color: #fff;
}

.results-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 24px;
}

/* Cards internos das métricas */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.stat-card h4 {
    font-size: 2.5rem;
    /* maior */
    line-height: 1.1;
    font-weight: 900;
    margin: 0 0 .5rem;
    color: #E11D48;
    /* vermelho (ex: Tailwind rose-600) */
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.stat-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.25rem;
    opacity: .95;
}

.logo-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #ffffff;
    padding: 40px 0;
    mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
}

.logo-item {
    flex: 0 0 200px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.logo-item img {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-item {
        flex: 0 0 160px;
        height: 70px;
        margin: 0 15px;
    }

    .logo-item img {
        max-width: 100px;
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    .logo-item {
        flex: 0 0 140px;
        height: 60px;
        margin: 0 12px;
    }

    .logo-item img {
        max-width: 80px;
        max-height: 35px;
    }
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card svg {
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    opacity: .5;
    width: 2rem;
    height: 2rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
    color: hsl(var(--muted-foreground));
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.author-info h5 {
    font-weight: 600;
    color: hsl(var(--foreground));
}

.author-description {
    color: hsl(var(--muted-foreground));
    font-size: .875rem;
    line-height: 1.25rem;
}

.author-company {
    color: var(--primary-blue);
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.25rem;
}

/* Section 1 - Accompagnement de qualité */

.quality-content {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 60px;
    align-items: center;
    margin-bottom: 2.5rem;
}

.quality-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 16px;
    text-align: center;
}

.quality-left .subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 40px;
    text-align: left;
}

.quality-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quality-card {
    background: hsl(var(--accent) / .5);
    padding: 1rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.quality-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: var(--shadow-hover);
}

.quality-card-icon {
    font-size: 1.5rem;
    line-height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quality-card-text p {
    font-size: 0.95rem;
    font-weight: 500;
    color: hsl(var(--foreground));
}

/* Business Partner Card */
/* Moldura externa + painel interno claro */
.business-partner-card {
    position: relative;
    background-image: var(--gradient-blue);
    border-radius: 1.5rem;
    padding: 2rem;
    color: var(--text-dark);
    box-shadow: var(--shadow-hover);
}

/* painel interno (sem trocar HTML) */
.business-partner-card::after {
    content: "";
    position: absolute;
    inset: 2rem;
    border-radius: 1rem;
    padding: 1.5rem;
    background: linear-gradient(180deg, #f2f6fa 0%, #e9eef4 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
    z-index: 0;
}

/* garantir que conteúdo fique acima do painel */
.bp-header,
.bp-features {
    position: relative;
    z-index: 1;
}

/* Cabeçalho centralizado */
.bp-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin: 28px 0 18px;
    margin-bottom: 1.5rem;
}

.bp-icon {
    width: 4rem;
    height: 4rem;
    background: var(--warning-red);
    color: #0b3c66;
    /* ícone azul escuro */
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.bp-title h3 {
    margin: 8px 0 2px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    text-align: center;
}

.bp-title p {
    margin: 0;
    font-size: .875rem;
    line-height: 1.25rem;
    color: hsl(var(--muted-foreground));
    text-align: center;
}

/* Lista de features no formato "pill" clara com bolinha à esquerda */
.bp-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 18px 22px;
    /* respiro lateral como no mock */
}

/* Base das pills */
.bp-feature {
    position: relative;
    border-radius: var(--radius);
    padding: .75rem;
    border-width: 1px;
    border-style: solid;
    display: flex;
    align-items: center;
}

/* esconder o emoji grande, usamos só a bolinha */
.bp-feature-circle {
    border-radius: 9999px;
    width: .75rem;
    height: .75rem;
    margin-right: .75rem;
}

.bp-feature-text {
    color: hsl(var(--foreground));
    font-size: .875rem;
    line-height: 1.25rem;
}

/* Cores por tipo (fundo claro + borda + dot) */
.bp-feature.performance {
    background-color: rgba(var(--success-green-rgb), .1);
    border-color: rgba(var(--success-green-rgb), .2);
}

.bp-feature.performance .bp-feature-circle {
    background-color: rgb(var(--success-green-rgb));
}

.bp-feature.suivi {
    background-color: rgba(var(--attention-yellow-rgb), .1);
    border-color: rgba(var(--attention-yellow-rgb), .2);
}

.bp-feature.suivi .bp-feature-circle {
    background-color: rgb(var(--attention-yellow-rgb));
}

.bp-feature.equilibre {
    background-color: rgba(var(--primary-blue-rgb), .1);
    border-color: rgba(var(--primary-blue-rgb), .2);
}

.bp-feature.equilibre .bp-feature-circle {
    background-color: rgb(var(--primary-blue-rgb));
}

/* Responsivo básico */
@media (max-width: 640px) {
    .business-partner-card {
        padding: 20px;
    }

    .business-partner-card::after {
        inset: 12px;
    }

    .bp-features {
        padding: 0 12px 16px;
    }
}

/* Section 2 - Partenariat */
.partnership-section {
    background: var(--light-gray);
}

/* Process Container */
.process-group-header {
    text-align: center;
    margin-bottom: 40px;
}

.process-group-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 30px;
    color: #fff;
    margin-bottom: 16px;
}

.process-group-title.process-free {
    background: var(--gradient-process-blue, linear-gradient(135deg, #10B981, #059669));
    box-shadow: 0 4px 20px rgba(14, 78, 155, .3);
}

.process-group-title.process-paid {
    background: var(--gradient-process-red, linear-gradient(135deg, #3B82F6, #1D4ED8));
    box-shadow: 0 4px 20px rgba(29, 78, 216, .25);
}

.process-group-description {
    font-size: 1rem;
    color: var(--medium-gray, #4b5563);
    max-width: 560px;
    margin: 0 auto;
}

/* Cards: tipografia, alinhamento e sombra do skin antigo */
.process-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: var(--shadow, 0 10px 20px rgba(0, 0, 0, .06));
    border: 1px solid rgba(0, 0, 0, .05);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.process-card {
  /* ajuste fino aqui conforme o layout */
  --icon-h: 88px;       /* área total reservada ao ícone + círculo */
  --title-lines: 2;     /* quantas linhas o título pode ocupar no desktop */
  --title-lh: 1.3;      /* line-height do título */
  --desc-lines: 6;      /* quantas linhas a descrição pode ocupar no desktop */
  --desc-lh: 1.6;       /* line-height da descrição */
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover, 0 16px 40px rgba(0, 0, 0, .10));
}

/* Faixa superior opcional, com as cores por plano, igual ao layout antigo */
.process-card::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: var(--gradient-process-blue, linear-gradient(135deg, #10B981, #059669));
}

.process-paid.process-card::before {
    background: var(--gradient-process-red, linear-gradient(135deg, #3B82F6, #1D4ED8));
}

/* Badge pill igual ao antigo, mas agora sem absoluta, fica no fluxo */
.process-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .06);
}

.process-free .process-card-badge {
    background: rgba(14, 78, 155, .10);
    color: var(--process-blue, #0E4E9B);
    border: 1px solid rgba(14, 78, 155, .20);
}

.process-paid .process-card-badge {
    background: rgba(29, 78, 216, .10);
    color: var(--process-red, #1D4ED8);
    border: 1px solid rgba(29, 78, 216, .20);
}

/* Ícone no quadradinho escuro, como no screenshot */
.process-card-icon {
    position: relative;
    height: 72px;
    /* altura do bloco do ícone */
    margin: 0 0 12px 0;
}

.process-card-icon>* {
    border-radius: 12px;
    /* slate-900 */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
    margin: auto;
    margin-top: 15px;
}

/* Círculo claro atrás do ícone */
.process-card-icon::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 88px;
    height: 88px;
    transform: translate(-50%, -50%);
    border-radius: 9999px;
    background: rgba(29, 78, 216, .08);
    /* fallback azul-claro */
}

/* Variação por plano (opcional, se quiser tons diferentes) */
.process-free .process-card-icon::before {
    background: rgba(14, 78, 155, .08);
    /* tom claro para gratuito */
}

.process-free .process-card-icon>* {
    color: var(--process-blue, #0E4E9B);
}

.process-paid .process-card-icon::before {
    background: rgba(29, 78, 216, .10);
    /* tom claro para premium */
}

.process-paid .process-card-icon>* {
    color: var(--process-red, #1D4ED8);
}

.process-card-icon svg {
    width: 22px;
    height: 22px;
    display: block
}

/* Etapa pequena e colorida por plano */
.process-card-step {
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: .5px;
}

.process-free .process-card-step {
    color: var(--process-blue, #10B981);
}

/* verde do antigo */
.process-paid .process-card-step {
    color: var(--process-red, #2563eb);
}

/* azul do antigo */

/* Título e descrição do card iguais ao antigo */
.process-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue, #0f172a);
    line-height: var(--title-lh);
    min-height: calc(var(--title-lines) * var(--title-lh) * 1em);
    margin-bottom: 12px;
}

.process-card-description {
    line-height: var(--desc-lh);
    font-size: 1rem;
    color: var(--medium-gray, #4b5563);
    min-height: calc(var(--desc-lines) * var(--desc-lh) * 1em);
}

/* Grades iguais ao antigo, respeitando o layout novo */
.process-cards {
    display: grid;
    gap: 24px;
    align-items: stretch;
    grid-template-columns: 1fr;
}

/* Utilitários usados no HTML novo, garantindo que existam */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.grid {
    display: grid;
}

.grid-cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

.col-span-3 {
    grid-column: span 3;
}

.col-span-2 {
    grid-column: span 2;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-3 {
    gap: .75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.font-bold {
    font-weight: 700;
}

.text-gray-800 {
    color: #1f2937;
}

.text-gray-600 {
    color: #4b5563;
}

.hidden {
    display: none;
}

@media (min-width:1024px) {
    .lg\:block {
        display: block;
    }

    .lg\:hidden {
        display: none;
    }
}

@media (min-width:768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Section 3 - Contact */
.contact-section {
    background: white;
}

.contact-content {
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--warning-red);
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border) / .5);
}

.info-section {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 48px;
    margin-bottom: 64px;
    align-items: center;
}

/* Form Container */
.form-container {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-gray);
}

.form-group {
    margin-bottom: 32px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 12px;
    font-size: 1rem;
}

.form-input {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-gray);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: all 0.2s ease;
    font-family: inherit;
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.skill-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 2px solid var(--border-gray);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--white);
    min-height: 56px;
}

.skill-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.skill-card.selected {
    border-color: var(--primary-blue);
    background: rgba(79, 70, 229, 0.05);
}

.skill-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.skill-icon img {
    width: 28px;
    height: auto;
}

.skill-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-gray);
}

/* Needs Table */
.needs-table {
    margin-top: 16px;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
}

.needs-header {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    background: var(--light-gray);
    border-bottom: 1px solid var(--border-gray);
}

.needs-header-cell {
    padding: 16px 12px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--medium-gray);
    text-align: center;
    border-right: 1px solid var(--border-gray);
}

.needs-header-cell:first-child {
    text-align: left;
}

.needs-header-cell:last-child {
    border-right: none;
}

.needs-row {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    border-bottom: 1px solid var(--border-gray);
}

.needs-row:last-child {
    border-bottom: none;
}

.needs-cell {
    padding: 16px 12px;
    border-right: 1px solid var(--border-gray);
    display: flex;
    align-items: center;
}

.needs-cell:last-child {
    border-right: none;
}

.needs-label {
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.radio-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.radio-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-blue);
}

/* Submit Section */
.submit-section {
    margin-top: 40px;
    text-align: center;
}

.google-sheets-note {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--medium-gray);
}

.sheets-icon {
    font-size: 1rem;
    color: #34A853;
}

.error-message {
    display: none;
    color: var(--primary-red);
    font-size: 0.875rem;
    margin-top: 8px;
    font-weight: 500;
}

.error-message.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-input.error {
    border-color: var(--primary-red) !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.skills-grid.error {
    border: 2px solid var(--primary-red);
    border-radius: var(--radius);
    padding: 16px;
    background: rgba(239, 68, 68, 0.05);
}

.needs-table.error {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.needs-row.error {
    background: rgba(239, 68, 68, 0.05);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {

    .results-grid {
        grid-template-columns: 1fr;
    }

    .info-section {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 48px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-section {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 48px;
    }

    .form-container {
        padding: 32px 24px;
    }

    .needs-header,
    .needs-row {
        grid-template-columns: 1fr;
    }

    .needs-header-cell,
    .needs-cell {
        border-right: none;
        border-bottom: 1px solid var(--border-gray);
        text-align: left;
        justify-content: flex-start;
    }

    .needs-header-cell:last-child,
    .needs-cell:last-child {
        border-bottom: none;
    }

    .radio-wrapper {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 24px 16px;
    }
}

/* Post-submission CTA Panel */
.cta-panel {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    text-align: center;
    display: none;
    animation: slideUp 0.5s ease;
}

.cta-panel.show {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-icon {
    font-size: 3rem;
    color: var(--success-green);
    margin-bottom: 16px;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.cta-message {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Loading State */
.form-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: var(--medium-gray);
    font-size: 1.1rem;
}

.loading-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 12px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {

    .form-container,
    .cta-panel {
        padding: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}


@media (max-width: 480px) {

    .form-container,
    .cta-panel {
        padding: 20px;
    }
}

.form-header {
    margin-bottom: 1.5rem;
}

.form-header h3 {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 600;
}

.form-header p {
    font-size: .875rem;
    line-height: 1.25rem;
    color: hsl(var(--muted-foreground));
    --tw-space-y-reverse: 0;
    margin-top: calc(.375rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(.375rem * var(--tw-space-y-reverse));
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-blue);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #E9ECEF;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(9, 97, 170, 0.1);
}

.form-group textarea {
    resize: none;
    min-height: 120px;
}

.btn-submit {
    background: var(--gradient-blue);
    color: white;
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 56, 97, 0.3);
}

/* Hero Image */
.hero-image {
    position: relative;
    background: #063F6D;
    /* fundo do card */
    border-radius: 18px;
    padding: 24px;
    overflow: hidden;
    /* arredondado real */
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

/* tira o fundo do wrapper interno, já que o pai virou o card */
.hero-image>.bg\[\#063F6D\] {
    background: transparent;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* imagem central, maior, sem “grudar” na legenda */
.hero-image img {
    display: block;
    height: auto;
    object-fit: cover;
    /* espaço embaixo para a legenda */
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .25));
}

/* legenda dentro do card, colada ao fundo */
.hero-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    padding: 0 16px;
    text-align: center;
}

.hero-overlay h3 {
    margin: 0;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

/* opcional: leve brilho diagonal no fundo, como no mock */
.hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(120% 100% at 60% 20%, rgba(255, 255, 255, .06), transparent 60%);
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: #fff;
    padding: 3rem 0;
    /* py-12 */
}

/* container mx-auto px-4 */
.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* grid md:grid-cols-4 gap-8 */
.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    /* 8 */
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* bloco do topo: logo + redes */
.footer .logo {
    height: 3rem;
    width: auto;
}

/* flex items-center gap-4 mb-4 */
.footer .flex {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer .mb-4 {
    margin-bottom: 1rem;
}

/* social icons */
.social-icons {
    display: flex;
    gap: 0.75rem;
    /* 3 */
}

.social-icon {
    width: 2rem;
    /* w-8 */
    height: 2rem;
    /* h-8 */
    background: #fff;
    /* bg-white */
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.9);
    /* hover:bg-gray-100 */
}

.social-icon svg {
    width: 1rem;
    /* w-4 */
    height: 1rem;
    /* h-4 */
}

.social-icon .text-blue-600 {
    color: #2563eb;
    /* azul padrão Tailwind */
}

.social-icon .text-pink-600 {
    color: #db2777;
    /* rosa padrão Tailwind */
}

/* títulos das colunas */
.footer h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* textos com opacidade, espaçamento e tamanho menores */
.footer p,
.footer li {
    font-size: 0.875rem;
    /* text-sm */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    /* text-primary-foreground/80 */
    margin: 0;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li+li {
    margin-top: 0.5rem;
}

/* space-y-2 */

/* bloco contato: espaçamento entre linhas */
.footer .contact p+p {
    margin-top: 0.5rem;
}

/* divisor h-[1px] my-8 bg-primary-foreground/20 */
.footer-divider {
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

/* bottom: flex col no mobile, row no md, espaçamentos e links */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }
}

.footer-left {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.footer-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-credit {
    font-size: 14px;
    color: #666;
}

/* links do rodapé */
.footer-links {
    display: flex;
    gap: 1.5rem;
    /* 6 */
}

.footer a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
}

.footer a:hover {
    color: #fff;
}

/* Linha divisória usando o elemento já existente */
.footer [data-orientation="horizontal"][role="none"] {
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

/* Barra inferior: esquerda o texto, direita os links */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom>.flex {
    display: flex;
    gap: 1.5rem;
    /* mesma “gap-6” */
    margin-top: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color .2s ease;
}

.footer-bottom a:hover {
    color: #fff;
}

/* empilhado no mobile, lado a lado do md em diante */
@media (max-width: 767px) {
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-bottom>.flex {
        margin-top: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive Design */
@media (max-width: 1144px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {

    .cards-grid-2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .cards-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .quality-content {
        grid-template-columns: 1fr;
        gap: 40px;
        display: block;
    }

    .quality-content .hero-image {
        margin-top: 1.5rem;
    }

    .process-card::after {
        display: none;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {


    .header .btn-primary,
    .header .btn-secondary {
        font-size: .725rem;
    }

    .btn-primary,
    .btn-secondary {
        font-size: .875rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
        display: block;
    }

    .logo {
        height: 42px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cards-grid,
    .cards-grid-3,
    .cards-grid-4 {
        grid-template-columns: 1fr;
    }

    .cards-grid-4 {
        --title-lines: 0;
        --desc-lines: 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        gap: 32px;
    }

    .process-steps::before {
        display: none;
    }

    .final-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-menu {
        display: none;
    }

    .results-highlight {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .client-logos {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* estado inicial (antes de aparecer) */
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    will-change: transform, opacity;
}

/* quando ficar visível */
.reveal-right.is-visible {
    animation: fadeInRight 800ms ease-out both;
}

/* acessibilidade: respeita usuários que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {

    .reveal-right,
    .reveal-right.is-visible {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-decoration: none;
    transition: transform .2s ease;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

/* Somente ícone no mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .whatsapp-text {
        display: none;
    }
}