/* ===== VARIABLES ===== */
:root {
    --laranja: #E85D04;
    --laranja-claro: #FAA307;
    --laranja-escuro: #D00000;
    --azul: #003049;
    --azul-claro: #1D4E6C;
    --creme: #FDF8F3;
    --cinza: #6B7280;
    --branco: #FFFFFF;
    --preto: #1A1A1A;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--creme);
    color: var(--preto);
    line-height: 1.6;
    overflow-x: hidden;
}

.serif {
    font-family: 'Instrument Serif', Georgia, serif;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(253, 248, 243, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-svg {
    height: 36px;
    width: auto;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--azul);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon span {
    font-family: 'Instrument Serif', serif;
    font-size: 28px;
    font-style: italic;
    color: white;
    font-weight: 400;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background: var(--laranja);
    border-radius: 50%;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--azul);
    letter-spacing: -0.5px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-cta a {
    text-decoration: none;
}

.btn-ghost {
    color: var(--azul);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 100px;
    transition: all 0.2s ease;
}

.btn-ghost:hover {
    background: rgba(0,48,73,0.05);
}

.btn-primary {
    background: var(--laranja);
    color: white;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(232, 93, 4, 0.3);
}

.btn-primary:hover {
    background: var(--laranja-escuro);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(232, 93, 4, 0.4);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
}

.hero-blob-1 {
    width: 600px;
    height: 600px;
    background: var(--laranja-claro);
    top: -200px;
    right: -200px;
    opacity: 0.2;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: var(--azul);
    bottom: -100px;
    left: -100px;
    opacity: 0.08;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--azul);
    margin-bottom: 24px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--laranja);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--azul);
    margin-bottom: 24px;
}

.hero h1 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--laranja);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--cinza);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--preto);
    font-weight: 600;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    font-weight: 700;
    font-size: 16px;
    padding: 18px 32px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
    width: 24px;
    height: 24px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--azul);
    font-weight: 600;
    font-size: 16px;
    padding: 18px 32px;
    border-radius: 16px;
    text-decoration: none;
    border: 2px solid rgba(0,48,73,0.1);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--azul);
    background: var(--azul);
    color: white;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-avatars {
    display: flex;
}

.hero-avatars span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--creme);
    margin-left: -12px;
    background: var(--azul);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.hero-avatars span:first-child {
    margin-left: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-avatars span:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.hero-avatars span:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.hero-proof p {
    font-size: 14px;
    color: var(--cinza);
    line-height: 1.4;
}

.hero-proof strong {
    color: var(--preto);
    font-weight: 700;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,48,73,0.15);
}

.hero-image-wrapper img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.hero-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.hero-card-1 {
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-card-1 .icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--laranja) 0%, var(--laranja-claro) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-1 .icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.hero-card-1 .text strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--azul);
    line-height: 1;
}

.hero-card-1 .text span {
    font-size: 13px;
    color: var(--cinza);
}

.hero-card-2 {
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--azul);
    color: white;
}

.hero-card-2 .check {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-2 span {
    font-weight: 600;
    font-size: 14px;
}

/* ===== BENTO SECTION ===== */
.bento-section {
    padding: 120px 0;
    background: white;
}

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

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--laranja);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--azul);
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header h2 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
}

.section-header p {
    font-size: 18px;
    color: var(--cinza);
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}

.bento-card {
    background: var(--creme);
    border-radius: 28px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.bento-card.large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--azul);
    color: white;
}

.bento-card.large h3 {
    color: white;
}

.bento-card.large p {
    color: rgba(255,255,255,0.7);
}

.bento-card.highlight {
    background: linear-gradient(135deg, var(--laranja) 0%, var(--laranja-escuro) 100%);
    color: white;
}

.bento-card.highlight h3,
.bento-card.highlight p {
    color: white;
}

.bento-card.highlight p {
    opacity: 0.85;
}

.bento-icon {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.bento-icon svg {
    width: 32px;
    height: 32px;
    color: var(--azul);
}

.bento-card.highlight .bento-icon svg {
    color: var(--laranja);
}

.bento-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--azul);
    margin-bottom: 12px;
}

.bento-card p {
    font-size: 15px;
    color: var(--cinza);
    line-height: 1.7;
}

.bento-card .number {
    font-size: 72px;
    font-weight: 800;
    color: var(--laranja);
    line-height: 1;
    margin-bottom: 8px;
}

.bento-card.large .number {
    color: var(--laranja-claro);
}

.bento-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bento-visual-bar {
    height: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 100px;
    overflow: hidden;
}

.bento-visual-bar span {
    display: block;
    height: 100%;
    background: var(--laranja-claro);
    border-radius: 100px;
}

/* ===== COMPARATIVO ===== */
.compare-section {
    padding: 120px 0;
    background: var(--creme);
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 64px;
}

.compare-card {
    background: white;
    border-radius: 32px;
    padding: 48px;
    position: relative;
}

.compare-card.problema {
    border: 2px dashed rgba(0,0,0,0.1);
}

.compare-card.solucao {
    background: var(--azul);
    color: white;
    box-shadow: 0 40px 80px rgba(0,48,73,0.2);
}

.compare-card.solucao::before {
    content: 'NOSSA ABORDAGEM';
    position: absolute;
    top: -14px;
    left: 48px;
    background: var(--laranja);
    color: white;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 100px;
}

.compare-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.compare-card.problema h3 {
    color: var(--cinza);
}

.compare-list {
    list-style: none;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 16px;
    line-height: 1.5;
}

.compare-card.solucao .compare-list li {
    border-color: rgba(255,255,255,0.1);
}

.compare-list li:last-child {
    border-bottom: none;
}

.compare-list .icon-x {
    width: 28px;
    height: 28px;
    background: #FEE2E2;
    color: #DC2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 700;
}

.compare-list .icon-check {
    width: 28px;
    height: 28px;
    background: var(--laranja);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 700;
}

.compare-list .list-text {
    flex: 1;
    min-width: 0;
}

.compare-list .list-text strong {
    color: inherit;
}

/* ===== PROCESSO ===== */
.process-section {
    padding: 120px 0;
    background: white;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 80px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 60px;
    right: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--laranja) 0%, var(--azul) 100%);
    border-radius: 100px;
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.process-number {
    width: 88px;
    height: 88px;
    background: white;
    border: 4px solid var(--creme);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    font-weight: 800;
    color: var(--azul);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    background: var(--azul);
    color: white;
    transform: scale(1.1);
}

.process-step:last-child .process-number {
    background: var(--laranja);
    color: white;
    border-color: var(--laranja);
}

.process-step h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--azul);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--cinza);
    max-width: 200px;
    margin: 0 auto;
}

/* ===== DEPOIMENTOS ===== */
.testimonials-section {
    padding: 120px 0;
    background: var(--azul);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '"';
    position: absolute;
    top: 40px;
    left: 5%;
    font-family: 'Instrument Serif', serif;
    font-size: 400px;
    color: rgba(255,255,255,0.03);
    line-height: 1;
}

.testimonials-section .section-header h2 {
    color: white;
}

.testimonials-section .section-header p {
    color: rgba(255,255,255,0.6);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.testimonial-card:first-child {
    background: white;
    color: var(--preto);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    color: var(--laranja-claro);
}

.testimonial-card blockquote {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    font-style: normal;
}

.testimonial-card:first-child blockquote {
    color: var(--preto);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}


.testimonial-author .info strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.testimonial-card:first-child .testimonial-author .info strong {
    color: var(--azul);
}

.testimonial-author .info span {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.testimonial-card:first-child .testimonial-author .info span {
    color: var(--cinza);
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.google-badge svg {
    flex-shrink: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 120px 0;
    background: var(--creme);
}

.cta-wrapper {
    background: white;
    border-radius: 40px;
    padding: 60px 80px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
    box-shadow: 0 40px 80px rgba(0,0,0,0.06);
}

.cta-content h2 {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    color: var(--azul);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta-content h2 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--laranja);
}

.cta-content > p {
    font-size: 18px;
    color: var(--cinza);
    margin-bottom: 32px;
}

.cta-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--preto);
}

.cta-benefits li svg {
    width: 24px;
    height: 24px;
    color: var(--laranja);
}

.cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
}

.cta-whatsapp .icon {
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-whatsapp .icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.cta-whatsapp .text {
    font-size: 14px;
    color: var(--cinza);
}

.cta-whatsapp .text strong {
    display: block;
    font-size: 18px;
    color: var(--preto);
}

/* Form */
.cta-form {
    background: var(--azul);
    border-radius: 28px;
    padding: 36px 48px;
}

.cta-form h3 {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cta-form > p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    color: white;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.4);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--laranja);
    background: rgba(255,255,255,0.15);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
}

.form-group select option {
    color: var(--preto);
    background: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--laranja);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.form-submit:hover {
    background: var(--laranja-escuro);
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 12px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--preto);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-logo .logo-svg {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--azul);
}

.footer-logo .logo-icon span {
    font-size: 24px;
}

.footer-logo p {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

.footer-contact {
    display: flex;
    gap: 32px;
}

.footer-contact a,
.footer-contact span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--laranja);
}

.footer-contact svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--laranja);
    color: white;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-container {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99;
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.whatsapp-bubble {
    background: white;
    padding: 12px 16px;
    border-radius: 16px 16px 4px 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    font-size: 14px;
    line-height: 1.4;
    color: var(--azul);
    animation: bubbleFade 0.5s ease-out;
}

.whatsapp-bubble strong {
    color: #25D366;
}

@keyframes bubbleFade {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
    text-decoration: none;
    flex-shrink: 0;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    color: white;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 24px;
    padding: 48px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.modal-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.modal-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--azul);
    margin-bottom: 12px;
}

.modal-content p {
    font-size: 16px;
    color: var(--cinza);
    margin-bottom: 32px;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 28px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.modal-btn-primary:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.modal-btn-primary svg {
    width: 22px;
    height: 22px;
}

.modal-btn-secondary {
    background: transparent;
    color: var(--cinza);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-btn-secondary:hover {
    background: var(--creme);
    color: var(--azul);
}

@media (max-width: 640px) {
    .modal-content {
        padding: 32px 24px;
    }

    .modal-icon {
        width: 64px;
        height: 64px;
    }

    .modal-icon svg {
        width: 32px;
        height: 32px;
    }

    .modal-content h3 {
        font-size: 24px;
    }

    .modal-content p {
        font-size: 15px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image-wrapper img {
        height: 400px;
    }

    .hero-card-1 {
        left: 20px;
        bottom: -20px;
    }

    .hero-card-2 {
        right: 20px;
        top: 20px;
    }

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

    .bento-card.large {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

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

    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .process-timeline::before {
        display: none;
    }

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

    .cta-wrapper {
        grid-template-columns: 1fr;
        padding: 40px;
    }
}

@media (max-width: 640px) {
    .header-cta .btn-ghost {
        display: none;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-card {
        display: none;
    }

    .bento-card {
        padding: 28px;
    }

    /* Fix compare list on mobile */
    .compare-card {
        padding: 24px;
    }

    .compare-card h3 {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .compare-list li {
        gap: 12px;
        padding: 14px 0;
        font-size: 15px;
    }

    /* Fix CTA and form on mobile */
    .cta-section {
        padding: 60px 0;
    }

    .cta-wrapper {
        padding: 24px;
        gap: 40px;
        border-radius: 24px;
    }

    .cta-content {
        text-align: center;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content > p {
        font-size: 16px;
    }

    .cta-benefits {
        display: inline-block;
        text-align: left;
    }

    .cta-benefits {
        margin-bottom: 24px;
    }

    .cta-benefits li {
        font-size: 14px;
        padding: 8px 0;
    }

    .cta-whatsapp {
        padding: 16px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
        margin: 0 auto;
    }

    .cta-form {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .cta-form h3 {
        font-size: 20px;
    }

    .form-group input,
    .form-group select {
        padding: 14px 16px;
        font-size: 14px;
    }

    .form-submit {
        padding: 16px;
        font-size: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Sections padding on mobile */
    .bento-section,
    .compare-section,
    .process-section,
    .testimonials-section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    /* WhatsApp float - hide bubble on mobile */
    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-bubble {
        display: none;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}