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

html {
    scroll-behavior: smooth;
}

:root {
    /* Cores baseadas no tema oceânico/natural */
    --primary: #0077be;
    --primary-dark: #005a8f;
    --secondary: #00a86b;
    --accent: #ffa500;
    --dark: #1a1a1a;
    --gray: #666;
    --light-bg: #f8f9fa;
    --white: #fff;
    --whatsapp: #25D366;
    --whatsapp-dark: #1DA851;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

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

.highlight {
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-primary:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-secondary {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-secondary:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============================================
   Header Fixo com Logo
   ============================================ */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 90, 143, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(to right, #ffa500 0%, #00a86b 50%, #ffffff 100%) 1;
}

.header-fixed.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.header-fixed .header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.header-fixed .header-logo-wrapper {
    flex-shrink: 0;
    position: relative;
}

.header-fixed .header-logo-wrapper::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 35px;
    background: linear-gradient(to bottom, #ffa500, #00a86b);
    border-radius: 2px;
}

.header-fixed .logo-fixed {
    height: 50px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.header-fixed .header-text {
    color: white;
    text-align: left;
}

.header-fixed .header-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    color: white;
}

.header-fixed .header-title::before {
    content: '⚠️';
    margin-right: 8px;
    font-size: 1.1rem;
}

.header-fixed .header-subtitle {
    font-size: 0.85rem;
    margin: 4px 0 0 0;
    opacity: 0.9;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    display: none;
}

.header-fixed .header-subtitle::before {
    content: '🥽';
    margin-right: 6px;
    font-size: 0.9rem;
}

.header-fixed.scrolled {
    padding: 6px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    background: rgba(0, 90, 143, 0.98);
}

.header-fixed.scrolled .logo-fixed {
    height: 40px;
}

.header-fixed.scrolled .header-logo-wrapper::after {
    height: 28px;
}

.header-fixed.scrolled .header-title {
    font-size: 1.1rem;
}

.header-fixed.scrolled .header-subtitle {
    font-size: 0.8rem;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--white);
    padding: 120px 0 100px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 656px;
    transform: translateX(0px) translateY(0px);
}

/* Vídeo de Fundo - Otimizado para Máxima Fluidez */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    /* Otimizações para fluidez */
    will-change: transform;
    transform: translate(-50%, -50%) translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    pointer-events: none;
}

/* Overlay leve para melhor legibilidade */
.hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 23, 61, 0.55);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Wrapper para layout flex */
.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    min-height: 80vh;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    flex: 1;
    text-align: left;
    max-width: 600px;
}

/* Hero content padding top */
.hero .hero-wrapper .hero-content {
    padding-top: 80px;
}

/* Logo no Hero */
.hero-logo {
    margin-bottom: 30px;
}

.hero-logo .logo-hero {
    height: 80px;
    width: auto;
    display: block;
    filter: brightness(1.1) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

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

/* Imagem da Menina com Óculos */
.hero-image {
    position: relative;
    flex: 0 0 45%;
    max-width: 550px;
    z-index: 2;
    animation: fadeInRight 1.2s ease-out;
}

.hero-image .vr-girl {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-image .vr-girl:hover {
    transform: scale(1.02);
}

/* Image default transform */
.hero-wrapper .hero-image img {
    transform: translateX(0px) translateY(0px) !important;
}

/* Degradê removido - não é mais necessário */

/* Desktop: Tamanho aumentado da imagem */
@media (min-width: 769px) {
    /* Hero desktop settings */
    .hero {
        padding-top: 0px;
        padding-bottom: 111px;
        min-height: 0px;
    }
    
    .hero-wrapper .hero-image img {
        position: relative;
        top: 96px;
        min-width: 968px;
        left: -140px;
    }
}

/* Degradê removido - não é mais necessário */

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

/* Badges de Credibilidade na seção About */
.credibility-badges-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.credibility-badges-section .badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.1) 0%, rgba(0, 168, 107, 0.1) 100%);
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.credibility-badges-section .badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 119, 190, 0.2);
}

.credibility-badges-section .badge-icon {
    font-size: 1.8rem;
}

.credibility-badges-section .badge-text {
    font-weight: 600;
    color: var(--primary);
}

.about-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--gray);
}

.about-highlight {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--secondary);
    margin: 30px 0;
    font-size: 1.1rem;
}

/* NR-1 Section */
.nr1-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.nr1-content {
    position: relative;
    z-index: 1;
}

.nr1-header {
    text-align: center;
    margin-bottom: 50px;
}

.nr1-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffa500 0%, #ff6b35 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

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

.nr1-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.nr1-info {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.nr1-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 119, 190, 0.15);
    border-top-color: var(--primary);
}

.nr1-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.nr1-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary);
}

.nr1-info p {
    color: var(--gray);
    line-height: 1.7;
}

.nr1-cta {
    background: linear-gradient(135deg, #0077be 0%, #00a86b 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(0, 119, 190, 0.2);
}

.nr1-highlight {
    font-size: 1.1rem;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.nr1-cta .btn {
    margin-top: 10px;
    background: var(--white);
    color: var(--whatsapp);
    font-weight: 700;
}

.nr1-cta .btn:hover {
    background: var(--whatsapp);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* Impact Section */
.impact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0077be 0%, #00a86b 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Vídeo de fundo na seção de impacto */
.impact-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

/* Overlay escuro para melhor legibilidade */
.impact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.20) 0%, rgba(0, 168, 107, 0.60) 100%);
    z-index: 2;
}

/* Container e conteúdo acima do vídeo */
.impact-section .container {
    position: relative;
    z-index: 3;
}

.impact-section .section-title {
    color: var(--white);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.impact-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.impact-label {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 119, 190, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary);
}

.benefit-text {
    color: var(--gray);
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.how-it-works .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    text-align: center;
    padding: 30px;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0077be 0%, #00a86b 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 4px 15px rgba(0, 119, 190, 0.3);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.step-text {
    color: var(--gray);
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.testimonial-text {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    color: var(--dark);
    font-size: 0.95rem;
}

.testimonial-author strong {
    color: var(--primary);
}

/* Authority Section */
.authority-section {
    padding: 80px 0;
    background: var(--white);
}

.authority-text {
    max-width: 900px;
    margin: 0 auto 40px;
}

.authority-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--gray);
}

.authority-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.authority-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.authority-item:hover {
    transform: translateX(10px);
}

.authority-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.authority-item strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.authority-item p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

.authority-cta {
    text-align: center;
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Marcelo */
.about-marcelo {
    padding: 80px 0;
    background: var(--light-bg);
}

.marcelo-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.marcelo-image {
    position: relative;
}

/* Imagens Flutuantes */
.floating-image {
    position: absolute;
    width: 270px;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 119, 190, 0.3);
    z-index: 10;
    background: var(--white);
    padding: 12px;
}

.floating-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.floating-top {
    top: -20px;
    left: -100px;
    animation: floatAnimation 3s ease-in-out infinite;
}

.floating-bottom {
    bottom: 50px;
    right: -80px;
    animation: floatAnimation 3s ease-in-out infinite 1.5s;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) translateX(5px) rotate(2deg);
    }
    50% {
        transform: translateY(-20px) translateX(0px) rotate(-2deg);
    }
    75% {
        transform: translateY(-10px) translateX(-5px) rotate(1deg);
    }
}

.image-placeholder {
    background: url('fotos/background amrcelo.png') center center / cover no-repeat, 
                linear-gradient(135deg, #0077be 0%, #00a86b 100%);
    aspect-ratio: 3/4;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 119, 190, 0.3);
    position: relative;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
}

.marcelo-text p {
    margin-bottom: 20px;
    color: var(--gray);
    line-height: 1.8;
}

.marcelo-credentials {
    margin-top: 30px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    border-left: 4px solid var(--primary);
}

.marcelo-credentials h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.marcelo-credentials ul {
    list-style: none;
}

.marcelo-credentials li {
    padding: 8px 0;
    color: var(--gray);
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: var(--white);
}

.form-content {
    max-width: 700px;
    margin: 0 auto;
}

.form-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 40px;
}

.contact-form {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

.form-privacy {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--gray);
}

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

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo-image {
    text-align: center;
    max-width: 600px;
}

.footer-logo-image .footer-logo-img {
    height: 100px;
    width: auto;
    display: inline-block;
    margin-bottom: 20px;
    filter: brightness(1.1) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.footer-logo-image p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

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

.footer-badges {
    margin-top: 15px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-wrapper {
        gap: 30px;
    }
    
    .hero-content {
        max-width: 500px;
    }
    
    .hero-image {
        flex: 0 0 40%;
        max-width: 450px;
    }
    
    /* Header fixo em tablets */
    .header-fixed .logo-fixed {
        height: 45px;
    }
    
    .header-fixed .header-logo-wrapper::after {
        height: 32px;
    }
    
    .header-fixed.scrolled .logo-fixed {
        height: 35px;
    }
    
    .header-fixed.scrolled .header-logo-wrapper::after {
        height: 26px;
    }
    
    .header-fixed .header-title {
        font-size: 1.1rem;
    }
    
    .header-fixed .header-subtitle {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        height: auto;
        padding: 60px 0 20px;
    }

    .hero-video {
        min-width: 200%;
    }
    
    /* Header fixo em mobile */
    .header-fixed {
        padding: 8px 0;
    }
    
    .header-fixed .header-content {
        gap: 12px;
        flex-direction: row;
        text-align: left;
    }
    
    .header-fixed .header-text {
        text-align: left;
    }
    
    .header-fixed .header-logo-wrapper::after {
        height: 28px;
        right: -8px;
    }
    
    .header-fixed .logo-fixed {
        height: 35px;
    }
    
    .header-fixed .header-title {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .header-fixed .header-title::before {
        font-size: 0.85rem;
        margin-right: 5px;
    }
    
    .header-fixed .header-subtitle {
        display: none;
    }
    
    .header-fixed.scrolled {
        padding: 6px 0;
    }
    
    .header-fixed.scrolled .logo-fixed {
        height: 30px;
    }
    
    .header-fixed.scrolled .header-logo-wrapper::after {
        height: 24px;
    }
    
    .header-fixed.scrolled .header-title {
        font-size: 0.8rem;
    }
    
    /* Layout mobile: TEXTO EM CIMA, IMAGEM EMBAIXO */
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        min-height: auto;
    }
    
    /* Hero content mobile - EM CIMA */
    .hero-content {
        text-align: center;
        max-width: 100%;
        position: relative;
        top: 0;
        padding-top: 20px;
        height: auto !important;
    }
    
    .hero .hero-wrapper .hero-content {
        top: 0;
        padding-top: 20px;
        height: auto !important;
    }
    
    .hero .container .hero-wrapper .hero-content {
        height: auto !important;
    }
    
    /* Logo centralizado no mobile */
    .hero-logo {
        text-align: center;
        margin-bottom: 20px;
        width: 100%;
    }
    
    .hero-logo .logo-hero {
        height: 60px;
        margin: 0 auto;
        display: block;
    }
    
    /* Hero image container - EMBAIXO E CENTRALIZADO */
    .hero-image {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        height: auto;
        transform: none;
        overflow: visible;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    /* Image mobile - PERFEITAMENTE CENTRALIZADA */
    .hero-wrapper .hero-image img {
        position: relative;
        top: 0;
        left: 0 !important;
        right: 0;
        margin: 0 auto;
        width: auto;
        height: auto;
        max-width: 100%;
        display: block;
    }
    
    .credibility-badges-section {
        gap: 15px;
    }
    
    .credibility-badges-section .badge {
        padding: 12px 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .credibility-badges {
        flex-direction: column;
        align-items: center;
    }

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

    .marcelo-content {
        grid-template-columns: 1fr;
    }

    .authority-cta {
        flex-direction: column;
    }

    .authority-cta .btn {
        width: 100%;
    }

    .contact-form {
        padding: 25px;
    }
    
    /* Imagens flutuantes responsivas - mesmo tamanho mobile fino */
    .floating-image {
        width: 260px;
        height: auto;
        padding: 12px;
    }
    
    .floating-top {
        top: -100px;
        left: -18px;
    }
    
    .floating-bottom {
        bottom: -80px;
        right: -30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 1.8rem;
    }
    
    /* Image mobile small positioning */
    .hero-wrapper .hero-image img {
        left: -95px;
    }
    
    .credibility-badges-section {
        flex-direction: column;
        align-items: center;
    }
    
    .credibility-badges-section .badge {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    /* Imagens flutuantes mobile pequeno */
    .floating-image {
        width: 260px;
        height: auto;
        padding: 12px;
    }
    
    .floating-top {
        top: -100px;
        left: -18px;
    }
    
    .floating-bottom {
        bottom: -80px;
        right: -30px;
    }
    
    .nr1-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .nr1-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
    
    .nr1-info {
        padding: 25px;
    }
    
    .nr1-cta {
        padding: 30px 20px;
    }
    
    .nr1-highlight {
        font-size: 1rem;
        padding: 15px;
    }
    
    /* Impact Section mobile */
    .impact-video {
        min-width: 200%;
    }
    
    .impact-section {
        padding: 60px 0;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .impact-card {
        padding: 25px;
    }
    
    .impact-number {
        font-size: 2.5rem;
    }
    
    .impact-label {
        font-size: 1rem;
    }
}

/* Otimizações específicas para mobile pequeno */
@media (max-width: 480px) {
    /* Hero altura fixa para mobile */
    .hero {
        height: 683px;
        min-height: 0px;
        padding: 40px 0 10px;
    }
    
    /* Logo no hero - altura específica e centralizado */
    .hero-wrapper .hero-logo {
        width: 100%;
        text-align: center;
    }
    
    .hero-wrapper .hero-logo img {
        min-height: 94px;
        height: 94px;
        margin: 0 auto;
        display: block;
    }
    
    /* Imagem da menina - mantém proporções e centralizada */
    .hero-wrapper .hero-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
    }
    
    .hero-wrapper .hero-image img {
        height: auto;
        width: 100%;
        max-width: 400px;
        min-width: auto;
        object-fit: contain;
        margin: 0 auto;
        display: block;
        left: 0 !important;
        right: 0 !important;
    }
}

/* Otimizações para celulares muito finos (iPhone SE, etc) */
@media (max-width: 375px) {
    .hero {
        min-height: 650px;
        padding: 30px 0 10px;
    }
    
    .hero-wrapper .hero-logo {
        width: 100%;
    }
    
    .hero-wrapper .hero-logo img {
        height: 70px;
        min-height: 70px;
        margin: 0 auto;
        display: block;
    }
    
    .hero-wrapper .hero-image {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0 15px;
    }
    
    .hero-wrapper .hero-image img {
        max-width: 280px;
        width: 100%;
        margin: 0 auto;
        display: block;
        left: 0 !important;
        transform: none !important;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Performance: Will-change para animações */
.benefit-card,
.step-card,
.testimonial-card {
    will-change: transform, opacity;
}

/* Widget Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
    background: var(--whatsapp-dark);
}

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

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

/* Página de Obrigado */
.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thank-you-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 30px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.thank-you-text {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 50px;
    line-height: 1.8;
}

.thank-you-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.info-card .btn {
    margin-top: 10px;
}

.thank-you-highlights {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thank-you-highlights h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.thank-you-highlights ul {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.thank-you-highlights li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: var(--gray);
    border-bottom: 1px solid #e9ecef;
}

.thank-you-highlights li:last-child {
    border-bottom: none;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.thank-you-social {
    margin-top: 50px;
}

.social-text {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 25px;
    font-weight: 600;
}

.trust-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.trust-icon {
    font-size: 1.5rem;
}

.trust-item span:last-child {
    font-weight: 600;
    color: var(--dark);
}

/* Responsivo Thank You Page */
@media (max-width: 768px) {
    .thank-you-title {
        font-size: 2rem;
    }
    
    .thank-you-text {
        font-size: 1.1rem;
    }
    
    .thank-you-info {
        grid-template-columns: 1fr;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
    
    .thank-you-actions .btn {
        width: 100%;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    /* Footer mobile */
    .footer-logo-image .footer-logo-img {
        height: 70px;
    }
    
    .footer-logo-image p {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
    }
    
    .footer-badges {
        font-size: 0.8rem;
    }
}
