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

:root {
    --primary-gold: #c9a961;
    --dark-gold: #a0854a;
    --light-gold: #e8d5a3;
    --dark-blue: #1a2332;
    --medium-blue: #2d3e50;
    --light-blue: #4a6fa5;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 60px; /* Espaço para a faixa fixa */
}

/* Top Banner */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, #c9a961 0%, #dc3545 50%, #c9a961 100%);
    background-size: 200% 100%;
    animation: gradient-shift 5s ease infinite;
    color: var(--white);
    text-align: center;
    padding: 14px 20px;
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.top-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.banner-icon {
    font-size: 1.3rem;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: icon-rotate 3s ease-in-out infinite;
    opacity: 0.95;
}

.top-banner p {
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

.top-banner strong {
    font-weight: 700;
    font-size: 1.05rem;
}

.banner-text-mobile {
    display: none;
}

.banner-subtitle-desktop {
    font-weight: 400;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes icon-rotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.95;
    }
    50% {
        transform: rotate(10deg) scale(1.1);
        opacity: 1;
    }
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, rgba(15, 23, 35, 0.95) 0%, rgba(26, 35, 50, 0.92) 30%, rgba(45, 62, 80, 0.90) 60%, rgba(20, 28, 40, 0.95) 100%),
        url('https://images.unsplash.com/photo-1539650116574-75c0c6d73a6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 40px 20px;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 20, 30, 0.85) 0%,
        rgba(26, 35, 50, 0.80) 25%,
        rgba(45, 62, 80, 0.75) 50%,
        rgba(20, 28, 40, 0.82) 75%,
        rgba(15, 23, 35, 0.88) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out;
}

.logo-image {
    max-width: 150px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(201, 169, 97, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
}

.video-container {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Moldura fixa 16:9 evita colapso quando o vídeo ainda não carregou (ex.: 404) */
.video-frame {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    border: 3px solid rgba(201, 169, 97, 0.5);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-poster-btn:hover .video-frame,
.video-frame:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(201, 169, 97, 0.4);
}

.video-poster-btn {
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    font: inherit;
    color: inherit;
    border-radius: 12px;
}

/* Botão-poster como filho direto de .hero-content (ordem no DOM antes de .hero-credits) */
.video-container.video-poster-btn {
    display: flex;
    justify-content: center;
    width: 100%;
}

.video-poster-btn:focus {
    outline: none;
}

.video-poster-btn:focus-visible .video-frame {
    outline: 3px solid var(--primary-gold);
    outline-offset: 4px;
}

/*
 * Poster terrasanta.png: proporção 720×623, largura máxima ~50% do tamanho original (360px).
 */
.video-frame.video-frame--poster {
    display: block;
    width: min(360px, 100%);
    max-width: 100%;
    aspect-ratio: 720 / 623;
    margin-left: auto;
    margin-right: auto;
    pointer-events: none;
    background: #0d1118;
}

.video-frame--poster .video-poster-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.28);
    transition: background 0.3s ease;
}

.video-poster-btn:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.42);
}

.video-play-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
    transition: transform 0.25s ease;
}

.video-poster-btn:hover .video-play-circle {
    transform: scale(1.06);
}

.video-play-icon {
    width: 18px;
    height: 18px;
    margin-left: 3px;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    box-sizing: border-box;
}

.video-modal[hidden] {
    display: none !important;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    border: none;
    padding: 0;
    margin: 0;
    background: rgba(10, 12, 18, 0.88);
    cursor: pointer;
}

.video-modal-panel {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: min(960px, 100vw - 32px);
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(201, 169, 97, 0.45);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.video-modal-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(26, 35, 50, 0.92);
    color: var(--white);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.video-modal-close:hover {
    background: var(--dark-blue);
    transform: scale(1.05);
}

.video-modal-video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.video-modal-video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.5);
}

.video-modal-video::-webkit-media-controls-play-button {
    background-color: var(--primary-gold);
    border-radius: 50%;
}

.hero-credits {
    margin: 40px 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.hero-credits p {
    margin: 10px 0;
}

.credits-note {
    font-size: 0.95rem;
    opacity: 0.8;
    font-style: italic;
}

.saida-realizada {
    color: var(--primary-gold);
    font-weight: 600;
    margin-top: 15px !important;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.6);
}


.cta-button.large {
    padding: 22px 55px;
    font-size: 1.3rem;
}

.cta-section .cta-button {
    background: var(--dark-blue);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(26, 35, 50, 0.45);
}

.cta-section .cta-button:hover {
    background: var(--medium-blue);
    box-shadow: 0 8px 30px rgba(26, 35, 50, 0.55);
}

.include-card p small {
    display: inline-block;
    margin-top: 0.5em;
    font-size: 0.85em;
    font-weight: 500;
    opacity: 0.92;
    line-height: 1.4;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 20px;
}

.section-title::before {
    content: '✝';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--primary-gold);
    opacity: 0.3;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--dark-gold));
    border-radius: 2px;
}

/* Roteiro Section */
.roteiro-section {
    position: relative;
    background: 
        linear-gradient(rgba(248, 249, 250, 0.95), rgba(248, 249, 250, 0.95)),
        url('https://images.unsplash.com/photo-1515542622106-78bda8ba0e5b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.roteiro-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.roteiro-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-gold), var(--light-blue));
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 50px;
    animation: fadeInLeft 0.6s ease-out;
}

.timeline-item:nth-child(even) {
    animation: fadeInRight 0.6s ease-out;
}

.timeline-day {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-gold);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 8px 0;
    border-color: transparent var(--primary-gold) transparent transparent;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px var(--shadow-lg);
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Includes Section */
.includes-section {
    position: relative;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98)),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
}

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

.include-card {
    background: var(--off-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.include-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.1), transparent);
    transition: left 0.5s ease;
}

.include-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.include-card:hover::before {
    left: 100%;
}

.include-card:hover::after {
    opacity: 1;
}

.include-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px var(--shadow-lg);
    border-color: var(--primary-gold);
    background: var(--white);
}

.include-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(201, 169, 97, 0.08));
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid rgba(201, 169, 97, 0.2);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.15);
}

.include-icon svg {
    width: 44px;
    height: 44px;
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

.include-card:hover .include-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.25), rgba(201, 169, 97, 0.15));
    border-color: var(--primary-gold);
    box-shadow: 0 6px 25px rgba(201, 169, 97, 0.3);
}

.include-card:hover .include-icon svg {
    color: var(--dark-gold);
    transform: scale(1.05);
}

.include-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.include-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Excludes Section */
.excludes-section {
    position: relative;
    background: 
        linear-gradient(rgba(248, 249, 250, 0.96), rgba(248, 249, 250, 0.96)),
        url('https://images.unsplash.com/photo-1515542622106-78bda8ba0e5b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
}

.excludes-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    position: relative;
}

.excludes-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--dark-gold), var(--primary-gold));
    border-radius: 12px 12px 0 0;
}

.excludes-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid #e9ecef;
}

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

.excludes-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

/* Pricing Section */
.pricing-section {
    position: relative;
    background: 
        linear-gradient(135deg, rgba(26, 35, 50, 0.95) 0%, rgba(45, 62, 80, 0.95) 100%),
        url('https://images.unsplash.com/photo-1515542622106-78bda8ba0e5b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

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

.pricing-section .section-title::after {
    background: linear-gradient(90deg, var(--primary-gold), var(--light-gold));
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid rgba(201, 169, 97, 0.3);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.pricing-label {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.pricing-type {
    display: block;
    font-size: 1.2rem;
    opacity: 0.9;
}

.pricing-disclaimer {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.pricing-disclaimer p {
    margin-bottom: 15px;
}

.pricing-disclaimer .warning {
    color: var(--primary-gold);
    font-weight: 600;
    margin-top: 20px;
}

/* CTA Section */
.cta-section {
    position: relative;
    background: 
        linear-gradient(135deg, rgba(201, 169, 97, 0.95) 0%, rgba(160, 133, 74, 0.95) 100%),
        url('https://images.unsplash.com/photo-1539650116574-75c0c6d73a6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.contact-info {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-info p {
    margin: 10px 0;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
    display: block;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-50%) translateX(-10px);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.9);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 50px;
    }

    .top-banner {
        padding: 10px 12px;
    }

    .top-banner-content {
        gap: 8px;
        flex-wrap: wrap;
    }

    .banner-icon {
        font-size: 1rem;
        display: none;
    }

    .banner-text-desktop,
    .banner-subtitle-desktop {
        display: none;
    }

    .banner-text-mobile {
        display: inline;
    }

    .top-banner p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .top-banner strong {
        font-size: 0.85rem;
    }

    .hero {
        background-attachment: scroll;
        padding: 30px 15px;
        min-height: auto;
    }

    .hero-logo {
        margin-bottom: 25px;
    }

    .logo-image {
        max-width: 120px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .video-container {
        margin: 25px 0;
    }

    .video-frame {
        max-width: 100%;
        border-width: 2px;
    }

    .video-play-circle {
        width: 36px;
        height: 36px;
    }

    .video-play-icon {
        width: 15px;
        height: 15px;
    }

    .hero-credits {
        margin: 25px 0;
        font-size: 0.95rem;
    }

    .hero-credits p {
        margin: 8px 0;
    }

    .cta-button {
        padding: 16px 35px;
        font-size: 1rem;
        margin-top: 20px;
    }
    
    .roteiro-section,
    .pricing-section,
    .cta-section {
        background-attachment: scroll;
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
        padding-bottom: 15px;
    }

    .section-title::before {
        font-size: 1.5rem;
        top: -25px;
    }

    .timeline-item {
        padding-left: 70px;
        margin-bottom: 35px;
    }

    .timeline-day {
        width: 50px;
        height: 50px;
        font-size: 0.75rem;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .timeline-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .includes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .include-card {
        padding: 30px 20px;
    }

    .include-icon {
        width: 70px;
        height: 70px;
        padding: 15px;
        margin-bottom: 15px;
    }

    .include-icon svg {
        width: 38px;
        height: 38px;
    }

    .include-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .include-card p {
        font-size: 0.9rem;
    }

    .excludes-list {
        padding: 30px 20px;
    }

    .excludes-list li {
        padding: 12px 0 12px 25px;
        font-size: 0.9rem;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-label {
        font-size: 1.8rem;
    }

    .pricing-type {
        font-size: 1rem;
    }

    .pricing-disclaimer {
        font-size: 0.85rem;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .cta-button.large {
        padding: 18px 40px;
        font-size: 1.1rem;
    }

    .contact-info {
        margin-top: 35px;
        padding-top: 30px;
    }

    .contact-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 48px;
    }

    .top-banner {
        padding: 8px 10px;
    }

    .top-banner p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .top-banner strong {
        font-size: 0.8rem;
    }

    .hero {
        padding: 25px 12px;
    }

    .hero-logo {
        margin-bottom: 20px;
    }

    .logo-image {
        max-width: 100px;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .video-container {
        margin: 20px 0;
    }

    .video-play-circle {
        width: 32px;
        height: 32px;
    }

    .video-play-icon {
        width: 13px;
        height: 13px;
        margin-left: 2px;
    }

    .video-modal {
        padding: 12px 10px;
    }

    .video-modal-close {
        top: 6px;
        right: 6px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .hero-credits {
        margin: 20px 0;
        font-size: 0.85rem;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 0.9rem;
        margin-top: 15px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .timeline-item {
        padding-left: 60px;
        margin-bottom: 30px;
    }

    .timeline-day {
        width: 45px;
        height: 45px;
        font-size: 0.7rem;
    }

    .timeline-content {
        padding: 18px;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
    }

    .include-card {
        padding: 25px 18px;
    }

    .include-icon {
        width: 60px;
        height: 60px;
        padding: 12px;
    }

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

    .include-card h3 {
        font-size: 1.1rem;
    }

    .include-card p {
        font-size: 0.85rem;
    }

    .excludes-list {
        padding: 25px 18px;
    }

    .excludes-list li {
        font-size: 0.85rem;
        padding: 10px 0 10px 22px;
    }

    .pricing-card {
        padding: 25px 18px;
    }

    .pricing-label {
        font-size: 1.5rem;
    }

    .pricing-type {
        font-size: 0.9rem;
    }

    .pricing-disclaimer {
        font-size: 0.8rem;
    }

    .cta-section {
        padding: 50px 15px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-subtitle {
        font-size: 0.9rem;
    }

    .cta-button.large {
        padding: 16px 35px;
        font-size: 1rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

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

    .whatsapp-tooltip {
        display: none;
    }
}

