:root {
    /* === PALETA DE CORES === */
    --color-blue-deep: #1B3A5F;
    --color-blue-vivid: #3D7DC9;
    --color-blue-light: #E8F1FA;
    --color-yellow: #FFD57E;
    --color-white: #FFFFFF;
    --color-cream: #FFF8E7;
    --color-black: #1a1a1a;
    --color-danger: #E74C3C;
    --color-success: #27AE60;

    /* === TIPOGRAFIA === */
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Nunito', sans-serif;

    /* === BORDAS E SOMBRAS === */
    --border-width: 3px;
    --border-color: var(--color-blue-deep);
    --border: var(--border-width) solid var(--border-color);
    --shadow-sm: 4px 4px 0px 0px var(--color-blue-deep);
    --shadow-md: 6px 6px 0px 0px var(--color-blue-deep);
    --shadow-lg: 10px 10px 0px 0px var(--color-blue-deep);

    /* === BORDER RADIUS === */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 999px;

    /* === ESPAÇAMENTO === */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 80px;

    /* === TRANSIÇÕES === */
    --transition-fast: 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-medium: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-spring: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* === SECTION HEADERS === */
.section-header h2 {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    letter-spacing: -1px;
    font-weight: 800;
}

.section-header p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    font-weight: 500;
}

/* === TIPOGRAFIA GERAL === */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--space-md);
    color: var(--color-blue-deep);
}

p {
    margin-bottom: var(--space-md);
}

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

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

ul {
    list-style: none;
}

/* === UTILITIES === */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
    position: relative;
    z-index: 2;
}

.padding-section {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
}

@media (min-width: 768px) {
    .padding-section {
        padding-top: var(--space-xl);
        padding-bottom: var(--space-xl);
    }
}

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

.text-danger {
    color: var(--color-danger);
}

.text-success {
    color: var(--color-success);
}

.text-blue-deep {
    color: var(--color-blue-deep);
}

/* === GRIDS === */
.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    align-items: stretch;
}

.grid-3>* {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* === BACKGROUND TEXTURES === */
.bg-dots {
    position: relative;
}

.bg-dots::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--color-blue-deep) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

/* === SECTION BACKGROUNDS === */
.section-testimonials-bg {
    background-color: var(--color-blue-light);
}

.section-plans-bg {
    background: linear-gradient(180deg, var(--color-blue-light) 0%, #D4E7F7 100%);
}

/* === ANIMATIONS === */
@keyframes float {

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

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

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(3deg);
    }
}

@keyframes gleam {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.anim-float {
    animation: float 3s ease-in-out infinite;
}

.anim-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.anim-shake {
    animation: shake 2.5s ease-in-out infinite;
}

.hover-lift {
    transition: box-shadow var(--transition-fast);
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.hover-squish {
    transition: transform 0.1s ease;
}

.hover-squish:active {
    transform: scale(0.95);
}

.btn-gleam {
    position: relative;
    overflow: hidden;
}

.btn-gleam::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: gleam 4s infinite;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: var(--border);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    text-align: center;
}

.btn:active {
    box-shadow: none;
    transform: translate(4px, 4px);
}

.btn-primary {
    background-color: var(--color-yellow);
    color: var(--color-blue-deep);
}

.btn-primary:hover {
    background-color: #FFE099;
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-blue-deep);
}

.btn-secondary:hover {
    background-color: var(--color-blue-light);
}

/* === CARDS === */
.card-pop {
    background-color: var(--color-white);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
}

/* === DIVIDERS === */
.section-with-divider {
    position: relative;
}

.divider-wave-top,
.divider-wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    z-index: 1;
    pointer-events: none;
}

.divider-wave-top {
    top: -1px;
    background-image: url('images/dividers/wave-top.svg');
}

.divider-wave-bottom {
    bottom: -1px;
    background-image: url('images/dividers/wave-bottom.svg');
}

@media (min-width: 768px) {

    .divider-wave-top,
    .divider-wave-bottom {
        height: 80px;
    }
}

/* === HEADER === */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: var(--border);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: var(--space-sm) 0;
}

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

.nav-list {
    display: none;
}

@media (min-width: 768px) {
    .nav-list {
        display: flex;
        gap: var(--space-md);
        font-weight: 600;
    }
}

.logo img {
    height: 40px;
}

/* =====================================================
   HERO SECTION - ENHANCED
   ===================================================== */
.hero-section {
    background: linear-gradient(135deg, #1B3A5F 0%, #2E5A8B 50%, #3D7DC9 100%);
    color: var(--color-white);
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
    position: relative;
    min-height: 95vh;
}

/* Dot Texture Overlay */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

/* Floating Background Shapes */
.hero-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 213, 126, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -150px;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 900px) {
    .hero-container {
        grid-template-columns: 1.1fr 1fr;
        gap: 60px;
    }
}

.hero-content {
    max-width: 560px;
}

.hero-content h1 {
    color: var(--color-white);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    letter-spacing: -1px;
}

.hero-highlight {
    color: var(--color-yellow);
    display: block;
    position: relative;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--color-yellow) 0%, #FFA500 100%);
    border-radius: 3px;
    opacity: 0.7;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 480px;
    line-height: 1.7;
}

.hero-badge {
    display: inline-block;
    background: var(--color-yellow);
    color: var(--color-blue-deep);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    border: 3px solid var(--color-blue-deep);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
    transform: rotate(-2deg);
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-top: var(--space-md);
}

/* Hero Illustration Area */
.hero-illustration {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-blob {
    position: absolute;
    width: 380px;
    height: 380px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 60% 40% 55% 45% / 55% 45% 50% 50%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.hero-photo-frame {
    position: relative;
    z-index: 2;
    width: 280px;
    height: 340px;
    background: var(--color-white);
    border: 4px solid var(--color-blue-deep);
    border-radius: var(--radius-lg);
    padding: 12px 12px 55px 12px;
    transform: rotate(-4deg);
    box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.2);
}

.hero-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.hero-photo-label {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-yellow);
    color: var(--color-blue-deep);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    border: 3px solid var(--color-blue-deep);
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.15);
}

/* Hero Decorative Elements - LARGER & MORE */
.hero-deco {
    position: absolute;
    z-index: 3;
    width: 60px;
    height: 60px;
    background: var(--color-white);
    border: 3px solid var(--color-blue-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.15);
}

.hero-deco svg {
    width: 32px;
    height: 32px;
}

.hero-deco-bone {
    top: 10px;
    left: 0;
    background: var(--color-yellow);
}

.hero-deco-heart {
    bottom: 40px;
    right: -10px;
    background: #FFB6C1;
}

.hero-deco-star {
    top: 80px;
    right: 30px;
    background: var(--color-white);
    font-size: 1.5rem;
    color: var(--color-yellow);
}

.hero-deco-paw {
    bottom: 120px;
    left: -20px;
    background: var(--color-cream);
}

.hero-deco-shield {
    top: 180px;
    right: -30px;
    background: var(--color-success);
}

/* =====================================================
   SOCIAL PROOF / TICKER
   ===================================================== */
.social-proof-section {
    background: var(--color-blue-deep);
    color: var(--color-white);
    padding: 14px 0;
    overflow: hidden;
    border-top: 3px solid var(--color-black);
    border-bottom: 3px solid var(--color-black);
}

.ticker-wrapper {
    overflow: hidden;
}

.ticker-track {
    display: inline-flex;
    gap: 48px;
    white-space: nowrap;
    align-items: center;
    animation: marquee 25s linear infinite;
}

.ticker-item {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

.ticker-divider {
    color: var(--color-yellow);
    font-size: 1.3rem;
}

/* =====================================================
   ROI CALCULATOR - ENHANCED BARS
   ===================================================== */
.roi-section {
    background-color: var(--color-blue-light);
}

.roi-panel {
    background: var(--color-white);
    border: var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-md);
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 900px) {
    .roi-panel {
        grid-template-columns: 1.2fr 1fr;
        padding: var(--space-lg);
    }
}

.roi-procedures h4 {
    margin-bottom: var(--space-md);
    font-size: 1.2rem;
}

.procedure-grid {
    display: grid;
    gap: var(--space-sm);
}

.procedure-card {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
}

.procedure-card:hover {
    border-color: var(--color-blue-vivid);
    background: #f0f7ff;
}

.procedure-card.selected {
    border-color: var(--color-blue-deep);
    background: #eef6ff;
    box-shadow: var(--shadow-sm);
}

.proc-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--color-white);
    flex-shrink: 0;
}

.procedure-card.selected .proc-check {
    background: var(--color-success);
    border-color: var(--color-success);
}

.proc-name {
    flex-grow: 1;
    font-weight: 600;
    font-size: 1rem;
}

.proc-cost {
    font-size: 0.85rem;
    color: #666;
    text-align: right;
}

.proc-cost strong {
    color: var(--color-blue-deep);
    display: block;
    font-size: 1.05rem;
}

/* Comparison Bars - BIGGER */
.roi-comparison {
    display: flex;
    gap: var(--space-md);
    position: relative;
    align-items: flex-end;
    justify-content: center;
    min-height: 320px;
    padding: 20px 0;
}

.comparison-col {
    flex: 1;
    max-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.col-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.col-icon svg {
    width: 100%;
    height: 100%;
}

.comparison-col h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: var(--color-blue-deep);
}

.progress-bar {
    width: 120px;
    height: 280px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
    border: none;
    box-shadow: inset 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.col-risk .progress-bar {
    background: #FFE5E5;
    /* Light Red Background */
    box-shadow: inset 0 0 0 4px #FFD1D1;
}

.col-safe .progress-bar {
    background: #E5F9ED;
    /* Light Green Background */
    box-shadow: inset 0 0 0 4px #C7EED6;
}

/* Removing old border-color logic as we use box-shadow now or simpler backgrounds */
/* Kept for safety if referenced elsewhere, but overridden above */

.progress-fill {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: height 1s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 16px;
    /* Slightly smaller radius to fit inside */
}

.risk-fill {
    background-color: #FF5A5A;
    background-image:
        radial-gradient(circle, rgba(0, 0, 0, 0.15) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(0, 0, 0, 0.15) 1.5px, transparent 1.5px);
    background-position: 0 0, 6px 6px;
    background-size: 12px 12px;
}

.safe-fill {
    background-color: #2ECC71;
    background-image:
        radial-gradient(circle, rgba(0, 0, 0, 0.15) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(0, 0, 0, 0.15) 1.5px, transparent 1.5px);
    background-position: 0 0, 6px 6px;
    background-size: 12px 12px;
}

.total-value {
    font-size: 1.6rem;
    font-weight: 800;
    margin-top: 16px;
    letter-spacing: -0.5px;
}

.vs-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-white);
    border: 3px solid var(--color-blue-deep);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-weight: 900;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.roi-result {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-blue-deep);
    color: var(--color-white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
}

.result-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.result-value {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin: 10px 0;
    color: var(--color-yellow);
}

.result-subtext {
    font-size: 1rem;
    opacity: 0.85;
}

/* =====================================================
   BENEFITS / PILLARS
   ===================================================== */
.benefits-section {
    background-color: var(--color-cream);
}

.benefits-section .card-pop {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
}

.benefits-section .card-pop h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
}

.benefits-section .card-pop p {
    margin-bottom: 0;
    color: #555;
}

/* =====================================================
   OBJECTIONS SECTION
   ===================================================== */
.objections-section {
    background-color: var(--color-white);
}

.objec-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .objec-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.objec-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--color-blue-light);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.objec-item:hover {
    border-color: var(--color-blue-vivid);
}

.objec-item h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.objec-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #555;
}

.check-icon {
    width: 36px;
    height: 36px;
    background: var(--color-success);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-section {
    background-color: var(--color-blue-light);
}

.testimonials-section .card-pop {
    padding: var(--space-lg) var(--space-md);
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.testimonial-author {
    border-top: 1px solid #ddd;
    padding-top: var(--space-sm);
}

.testimonial-author strong {
    display: block;
    color: var(--color-blue-deep);
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #666;
}

/* =====================================================
   PRICING SECTION
   ===================================================== */
.pricing-section {
    background: linear-gradient(180deg, var(--color-blue-light) 0%, #D4E7F7 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: 40px;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.pricing-card h2 {
    font-size: 2.2rem;
    margin-bottom: var(--space-md);
}

.pricing-card-featured {
    transform: scale(1.02);
    border-color: var(--color-yellow);
    box-shadow: 0 0 30px rgba(255, 213, 126, 0.4), var(--shadow-lg);
}

.pricing-card-featured:hover {
    transform: scale(1.02) translateY(-4px);
}

@media (min-width: 768px) {
    .pricing-card-featured {
        transform: scale(1.08);
    }

    .pricing-card-featured:hover {
        transform: scale(1.08) translateY(-4px);
    }
}

.pricing-badge {
    background: var(--color-yellow);
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: var(--color-blue-deep);
}

.plan-features {
    text-align: left;
    margin: var(--space-md) 0;
    list-style: none;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.plan-features li svg {
    flex-shrink: 0;
}

.feature-excluded {
    opacity: 0.6;
}

/* =====================================================
   BENEFIT ICONS
   ===================================================== */
.benefit-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-blue-light);
    border-radius: 50%;
    border: 3px solid var(--color-blue-deep);
}

/* =====================================================
   ROI CALCULATOR UPGRADE
   ===================================================== */
@media (min-width: 900px) {
    .roi-comparison {
        min-height: 400px;
        padding: 30px 20px;
        background: linear-gradient(135deg, #f8fafc 0%, #e8f1fa 100%);
        border-radius: var(--radius-lg);
        border: 3px solid var(--color-blue-deep);
        box-shadow: 0 0 40px rgba(61, 125, 201, 0.15);
    }

    .progress-bar {
        width: 130px;
        height: 320px;
    }

    .vs-badge {
        width: 64px;
        height: 64px;
        font-size: 1.1rem;
    }
}

/* =====================================================
   MOBILE RESPONSIVE
   ===================================================== */
@media (max-width: 767px) {

    /* Header: esconder CTA no mobile (WhatsApp float já cobre) */
    .header .nav > .btn {
        display: none;
    }

    .header {
        padding: 12px 0;
    }

    .logo h3,
    .logo {
        font-size: 1.25rem;
        white-space: nowrap;
    }

    /* Hero */
    .hero-container {
        padding-top: 20px;
    }

    /* === HERO TYPOGRAPHY UPDATES === */
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: var(--space-lg);
        font-weight: 500;
        max-width: 500px;
    }

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

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hero-illustration {
        height: 320px;
        margin-top: 30px;
    }

    .hero-blob {
        width: 260px;
        height: 260px;
    }

    .hero-photo-frame {
        width: 220px;
        height: 260px;
    }

    .hero-deco-paw,
    .hero-deco-shield {
        display: none;
    }

    .hero-deco {
        width: 45px;
        height: 45px;
    }

    /* ROI Calculator */
    .roi-panel {
        padding: var(--space-sm);
    }

    .roi-comparison {
        min-height: 250px;
        flex-direction: row;
        gap: var(--space-sm);
    }

    .progress-bar {
        width: 60px;
        height: 160px;
    }

    .comparison-col h5 {
        font-size: 0.8rem;
    }

    .total-value {
        font-size: 0.9rem;
    }

    .vs-badge {
        width: 40px;
        height: 40px;
        font-size: 0.7rem;
    }

    .procedure-card {
        padding: 10px 12px;
    }

    .proc-name {
        font-size: 0.9rem;
    }

    .proc-cost {
        font-size: 0.75rem;
    }

    .result-value {
        font-size: 2rem;
    }

    /* Pricing */
    .pricing-card-featured {
        transform: none;
    }

    /* General */
    .container {
        padding: 0 var(--space-sm);
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    /* Footer */
    .footer {
        padding: var(--space-lg) 0 var(--space-md);
    }
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--color-blue-deep);
    color: var(--color-white);
    padding: var(--space-xl) 0 var(--space-md);
    text-align: center;
}

.footer h3 {
    color: var(--color-white);
}

.footer p {
    opacity: 0.85;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    margin-top: var(--space-lg);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Agency Credit Bar */
.agency-credit-bar {
    background: #000000;
    color: #FFFFFF;
    padding: 8px 0;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.agency-credit-bar svg {
    flex-shrink: 0;
}

.agency-credit-bar strong {
    font-weight: 700;
}

/* =====================================================
   REDESIGN UPGRADE — Video Testimonial + Floating WA + Visual Flairs
   ===================================================== */

/* ---------- PARTE 1: Video Testimonial Section ---------- */
.video-testimonial-section {
    background: linear-gradient(180deg, var(--color-blue-light) 0%, #D4E7F7 100%);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.vt-eyebrow {
    display: inline-block;
    background-color: var(--color-yellow);
    color: var(--color-blue-deep);
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border: 3px solid var(--color-blue-deep);
    border-radius: var(--radius-pill);
    box-shadow: 4px 4px 0px var(--color-blue-deep);
    transform: rotate(-1deg);
    margin-bottom: 16px;
}

.vt-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 60px auto 0;
    align-items: center;
}

.vt-video-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vt-video-frame {
    position: relative;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 9 / 16;
    border: 4px solid var(--color-blue-deep);
    border-radius: var(--radius-lg);
    box-shadow: 12px 12px 0 var(--color-blue-deep);
    overflow: hidden;
    transform: rotate(-2deg);
    transition: transform var(--transition-spring), box-shadow var(--transition-spring);
    background-color: var(--color-blue-deep);
}

.vt-video-frame:hover {
    transform: rotate(0deg) translate(-4px, -4px);
    box-shadow: 16px 16px 0 var(--color-blue-deep);
}

.vt-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vt-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--color-yellow);
    border: 3px solid var(--color-blue-deep);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue-deep);
    animation: vtPlayPulse 2s ease-in-out infinite;
    transition: transform var(--transition-spring), opacity var(--transition-medium);
}

.vt-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.15);
}

@keyframes vtPlayPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Hide play btn when video is playing — modern :has() + fallback */
.vt-video-frame:has(video:not([paused])) .vt-play-btn {
    opacity: 0;
    pointer-events: none;
}

.vt-video-frame video:focus + .vt-play-btn {
    opacity: 0;
    pointer-events: none;
}

.vt-video-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.75);
    color: #FFFFFF;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 3;
    font-family: var(--font-body);
}

.vt-content-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    position: relative;
}

.vt-quote-mark {
    font-family: var(--font-heading);
    font-size: 8rem;
    color: var(--color-yellow);
    line-height: 0.5;
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.4;
    pointer-events: none;
    font-weight: 700;
    z-index: 0;
    user-select: none;
}

.vt-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--color-blue-deep);
    position: relative;
    z-index: 1;
    margin: 0;
    padding-left: 16px;
    border-left: 4px solid var(--color-yellow);
}

.vt-author {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.vt-author strong {
    font-size: 1.1rem;
    color: var(--color-blue-deep);
    font-weight: 800;
    font-family: var(--font-heading);
}

.vt-author span {
    font-size: 0.95rem;
    color: #666666;
    display: block;
    margin-top: 2px;
}

.vt-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.vt-mini-card {
    background-color: var(--color-white);
    border: 2px solid var(--color-blue-deep);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    box-shadow: 3px 3px 0 var(--color-blue-deep);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.vt-mini-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--color-blue-deep);
}

.vt-mini-card p {
    font-size: 0.9rem;
    font-style: italic;
    color: #444444;
    margin-bottom: 8px;
    line-height: 1.5;
}

.vt-mini-card span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-blue-deep);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
}

.vt-cta {
    margin-top: 16px;
    font-size: 1.1rem;
    align-self: flex-start;
    position: relative;
    z-index: 1;
}

/* ---------- PARTE 2: Floating WhatsApp Button ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #25D366;
    border: 4px solid var(--color-blue-deep);
    box-shadow: var(--shadow-md);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--transition-spring), box-shadow var(--transition-spring);
    color: #FFFFFF;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 8px 8px 0px var(--color-blue-deep);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid #25D366;
    opacity: 0;
    animation: whatsappPulse 2s infinite;
    pointer-events: none;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ---------- PARTE 3: Visual Flairs ---------- */

/* A) Hero shimmer highlight */
.shimmer-highlight {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.shimmer-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    animation: shimmer 3s infinite;
    animation-delay: 1s;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 200%;
    }
    100% {
        left: 200%;
    }
}

/* B) Benefits cards com tilt sutil */
.benefits-section .card-pop {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.benefits-section .card-pop:hover {
    transform: rotateX(-4deg) rotateY(4deg) translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefits-section .card-pop::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, var(--color-yellow) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    border-radius: inherit;
}

.benefits-section .card-pop:hover::after {
    opacity: 0.15;
}

/* C) Pricing featured card com spotlight */
.pricing-card-featured {
    position: relative;
    overflow: hidden;
}

.pricing-card-featured::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 213, 126, 0.3) 30deg,
        transparent 60deg,
        transparent 360deg
    );
    animation: spotlightRotate 8s linear infinite;
    z-index: 0;
    pointer-events: none;
}

.pricing-card-featured > * {
    position: relative;
    z-index: 1;
}

@keyframes spotlightRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* D) CTA Final button pulse ring */
.final-cta-section .btn-primary {
    position: relative;
}

.final-cta-section .btn-primary::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: inherit;
    border: 3px solid var(--color-yellow);
    opacity: 0;
    animation: pulseRing 2s infinite ease-out;
    pointer-events: none;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* ---------- PARTE 4: Mobile Responsive para novos elementos ---------- */
@media (max-width: 767px) {
    .video-testimonial-section {
        padding: 60px 0;
    }

    .vt-container {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 40px;
    }

    .vt-video-frame {
        max-width: 280px;
        margin: 0 auto;
        transform: rotate(-1deg);
    }

    .vt-quote {
        font-size: 1.2rem;
    }

    .vt-quote-mark {
        font-size: 6rem;
    }

    .vt-mini-grid {
        grid-template-columns: 1fr;
    }

    .vt-cta {
        width: 100%;
        text-align: center;
        align-self: stretch;
    }

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

    .shimmer-highlight {
        display: inline-block;
    }

    .benefits-section .card-pop:hover {
        transform: translateY(-8px);
    }
}