/* RESET & BASE */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1f1f1f;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --primary-gold: #FFD700;
    --primary-pop: #ffdb1e;
    --gradient-gold: linear-gradient(135deg, #FFD700, #FDB931);
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.05);

    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1100px;
    --spacing-section: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    color: #fff;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* UTILS */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* COMPONENTS */
.cta-button {
    display: inline-block;
    background: #ffb400;
    /* Yellow similar to the image */
    background: linear-gradient(135deg, #ffb400, #ff8c00);
    color: #000;
    font-weight: 900;
    padding: 22px 48px;
    border-radius: 12px;
    text-transform: uppercase;
    font-family: var(--font-head);
    letter-spacing: 1px;
    font-size: 1.15rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
    text-align: center;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

/* DOBRA 1: HERO */
.hero-section {
    position: relative;
    padding: 60px 0 80px;
    background-color: #161616;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('imagensofertachave/imgchave6.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-text {
    flex: 1;
}

.badge-exclusive {
    background: rgba(255, 50, 50, 0.2);
    color: #ff4d4d;
    border: 1px solid #ff4d4d;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.8rem;
    margin-bottom: 25px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out backwards;
}

.hero-title br {
    display: none;
}

.hero-subtitle-clean {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 45px;
    max-width: 750px;
    line-height: 1.5;
    opacity: 0.9;
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.video-placeholder {
    max-width: 340px;
    width: 100%;
    aspect-ratio: 9/16;
    background: linear-gradient(135deg, #1f1f1f, #0d0d0d);
    border-radius: 20px;
    margin: 0 auto 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease-out 0.4s backwards;
}

.hero-vsl-glow {
    border: 2px solid var(--primary-gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4), 0 15px 35px rgba(0, 0, 0, 0.5);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    cursor: pointer;
    transition: background 0.3s;
}

.play-icon {
    width: 64px;
    height: 64px;
    color: var(--primary-gold);
    opacity: 0.9;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
}

.play-overlay:hover {
    background: rgba(0, 0, 0, 0.2);
}

.play-overlay:hover .play-icon {
    opacity: 1;
    transform: scale(1.1);
}

.vsl-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #333;
    z-index: 3;
    /* above video, below overlay if overlay is full */
}

.vsl-progress-bar {
    height: 100%;
    background-color: #FFD21F;
    width: 0%;
    transition: width 0.1s linear;
}

video::-webkit-media-controls {
    display: none !important;
}

.micro-proof {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.85rem;
    color: #fff;
    opacity: 0.7;
}

.micro-proof span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-image-section {
    width: 100%;
    background-color: #f1d02e;
    /* O quadrado amarelo solicitado */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin-top: 40px;
    border-radius: 20px;
    /* Bordas arredondadas para o 'quadrado' ficar mais moderno */
}

.hero-product-container {
    margin-top: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-product-img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    animation: float 4.5s ease-in-out infinite;
    display: block;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Entry Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* SETA SCROLL DOWN */
.scroll-down-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-gold);
    font-size: 2.6rem;
    animation: bounce 2s infinite;
    z-index: 5;
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.8));
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-15px) translateX(-50%);
    }
    60% {
        transform: translateY(-7px) translateX(-50%);
    }
}

/* NOVA SEÇÃO: O QUE VOCÊ VAI RECEBER */
.deliverables-section {
    background-color: #161616;
    padding: var(--spacing-section) 0;
    text-align: center;
}

.deliverables-title {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 800;
}

.deliverables-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.5;
}

.deliverables-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.deliverables-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.4);
}

.deliverables-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: transparent;
    opacity: 1;
    visibility: visible;
}

.deliverables-image-wrapper {
    width: 100%;
    max-width: 500px;
    margin-top: 20px;
}

.deliverables-img {
    width: 100%;
    height: auto;
    display: block;
}

/* NOVA SEÇÃO: MECANISMO ÚNICO */
.mechanism {
    padding: var(--spacing-section) 0;
    background: #0d0d0d;
    border-top: 1px solid var(--border-color);
}

.mechanism-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mechanism-card {
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.mechanism-card:hover {
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.1);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    border: 1px solid var(--primary-gold);
}

.mechanism-card h3 {
    font-size: 1.25rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.mechanism-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* NOVA SEÇÃO: SIMULAÇÃO DE ECONOMIA */
.economy {
    padding: var(--spacing-section) 0;
    background: #0a0a0a;
}

.economy-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.economy-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.price-row {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.price-row p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.old-price-row h3 {
    font-size: 2rem;
    color: #ff4d4d;
    text-decoration: line-through;
}

.new-price-row h3 {
    font-size: 2.5rem;
    color: #4CAF50;
    font-weight: 800;
}

.new-price-row {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.saving-badge {
    margin-top: 25px;
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid #4CAF50;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
}

.saving {
    color: #4CAF50;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* NOVA SEÇÃO 5: PROVA SOCIAL */
.testimonials-early {
    padding: var(--spacing-section) 0;
    background: #0d0d0d;
    border-top: 1px solid var(--border-color);
}

.testimonial-grid-early {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-early {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    padding: 30px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.testimonial-early:hover {
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.testimonial-early .stars {
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    color: #f0f0f0;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--primary-gold);
    font-size: 1.05rem;
    line-height: 1.2;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* NOVA SEÇÃO 6: PRINTS DE NEGOCIAÇÃO */
.negotiation-proof {
    padding: var(--spacing-section) 0;
    background: #0a0a0a;
}

.proof-images {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.proof-img-wrapper {
    flex: 1 1 300px;
    max-width: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.1);
    transition: 0.3s ease;
    background: #111;
    display: flex;
    justify-content: center;
}

.proof-img-wrapper:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.proof-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* DOBRA 2: BENEFITS */
.benefits-section {
    padding: var(--spacing-section) 0;
    background: #0a0a0a;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: 0.3s;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.icon-gold {
    color: var(--primary-gold);
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* DOBRA 3: PROOF BAR */
.proof-section {
    background: var(--bg-card);
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-gold);
    font-family: var(--font-head);
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* DOBRA 4: BONUS */
.bonus-section {
    padding: var(--spacing-section) 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: #111;
    padding: 30px;
    border-radius: 16px;
    position: relative;
    border: 1px solid var(--border-color);
}

.bonus-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #4CAF50;
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
}

.bonus-card h3 {
    margin-top: 10px;
    margin-bottom: 15px;
}

/* DOBRA 5: OFFER */
.offer-section {
    padding: var(--spacing-section) 0;
    position: relative;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    justify-content: center;
}

.offer-box {
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.glow-border {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.premium-card {
    border: 2px solid var(--primary-gold);
}

.premium-badge {
    background: var(--primary-gold);
    color: #000;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 6px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-image-wrapper {
    margin: 15px auto;
    width: 100%;
    max-width: 280px;
    padding: 0 15px;
}

.premium-offer-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: 0.3s;
}

.premium-offer-img:hover {
    transform: scale(1.05);
}

.offer-header {
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.basic-card .offer-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-header h3 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.offer-body {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.offer-body .cta-button {
    margin-top: auto;
}

.old-price {
    color: var(--text-muted);
    font-size: 1.1rem;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.new-price-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    margin-top: 10px;
}

.price-value {
    font-size: 4.5rem;
    font-weight: 800;
    font-family: var(--font-head);
    line-height: 1;
}

.payment-info {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.check-list {
    list-style: none;
    text-align: left;
    margin: 0 auto 40px;
    max-width: 320px;
}

.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: #4CAF50;
}

.cta-large {
    width: 100%;
}

/* DOBRA 6: TESTIMONIALS */
.testimonials-section {
    padding: var(--spacing-section) 0;
    background: #0d0d0d;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.testimonial-card p {
    font-style: italic;
    color: #ddd;
    margin-bottom: 20px;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: var(--bg-card-hover);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-muted);
}

/* DOBRA 8: FAQ */
.faq-section {
    padding: var(--spacing-section) 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    padding: 0 20px 20px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

/* FOOTER */
.footer-cta {
    padding: 80px 0 40px;
    text-align: center;
    background: linear-gradient(to top, #000, #111);
    border-top: 1px solid var(--border-color);
}

.footer-cta h2 {
    margin-bottom: 15px;
}

.footer-cta p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.legal-links {
    margin-top: 60px;
    font-size: 0.8rem;
    color: #666;
}

.legal-links a {
    color: #888;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .hero-section {
        padding-top: 30px;
    }

    .hero-title {
        font-size: 2.1rem;
        line-height: 1.2;
    }

    .hero-title br {
        display: block;
    }

    .micro-proof {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .hero-subtitle-clean {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .micro-proof {
        justify-content: center;
    }

    .price-value {
        font-size: 3.5rem;
    }

    .stats-bar {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 15px;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .deliverables-title {
        font-size: 2.1rem;
    }

    .hero-section {
        padding-bottom: 0;
    }

    .hero-image-section {
        margin-top: 30px;
        margin-bottom: -55px;
        padding-top: 20px;
        padding-bottom: 0px;
        border-radius: 0;
        width: calc(100% + 40px);
        margin-left: -20px;
    }

    .video-placeholder {
        width: 85%;
        max-width: 360px;
        margin-bottom: 30px;
    }
}