/* Reset básico para prevenir scroll horizontal */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
    -moz-hyphens: none !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    padding-top: 135px;
}

.container {
    width: 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
}

.container-fluid {
    width: 100%;
    padding-right: 5px;
    padding-left: 5px;
    margin-right: auto;
    margin-left: auto;
}

/* Ajustes para prevenir scroll horizontal */
.row {
    margin-right: 0;
    margin-left: 0;
    width: 100%;
}

[class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
    max-width: 100%;
}

/* Garantir que todas as seções respeitem os limites */
section {
    overflow: hidden;
    width: 100%;
    margin-bottom: 0;
    padding: 40px 0;
}

:root {
    --primary-color: #ff4081;
    --secondary-color: #ff80ab;
    --accent-color: #f50057;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --success-color: #4CAF50;
    --error-color: #f44336;
    --blue-color: #2a5298;
}

/* Progress Bar Styles */
.progress-steps-container,
.discount-warning {
    width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
}

.progress-steps-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    height: 95px;
}

.discount-warning {
    position: fixed;
    top: 95px;
    left: 0;
    right: 0;
    background-color: #4A4A4A;
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    z-index: 999;
    font-size: 1rem;
}

.progress-bar-wrapper {
    height: 4px;
    background: #eee;
    margin: 0 auto 15px;
    width: 90%;
    max-width: 600px;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b00 100%);
    transition: width 0.5s ease;
    border-radius: 2px;
}

.steps-wrapper {
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    transition: all 0.3s ease;
}

.step.completed .step-number {
    background: var(--primary-color);
    color: white;
    transform: scale(0.9);
}

.step.completed .step-label {
    color: var(--primary-color);
}

.step.active .step-number {
    background: #ff6b00;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 2px 10px rgba(255,107,0,0.3);
    animation: pulse 2s infinite;
}

.step.active .step-label {
    color: #ff6b00;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .progress-steps-container {
        height: auto;
        min-height: 80px;
        padding: 10px 0;
    }

    .discount-warning {
        top: 80px; /* Altura da barra de progresso no mobile */
        padding: 8px;
        font-size: 0.9rem;
    }

    body {
        padding-top: 115px; /* 80px da barra + altura da tarja */
    }
}

@media (max-width: 480px) {
    .progress-steps-container {
        min-height: 70px;
    }

    .discount-warning {
        top: 70px;
    }

    body {
        padding-top: 105px; /* 70px da barra + altura da tarja */
    }
}

.hero-section {
    background: linear-gradient(135deg, #2B0B66 0%, #B22554 100%);
    color: white;
    padding: 60px 0;
    position: relative;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .row {
    align-items: center;
}

.hero-section .main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
    padding: 0 20px;
}

.hero-section .subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #fff;
    line-height: 1.5;
    padding: 0 20px;
}

.hero-section .text-white {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 0 20px 0 40px;
    list-style-position: outside;
}

.hero-section .text-white li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 5px;
}

.hero-section .text-white li:before {
    content: "•";
    position: absolute;
    left: -15px;
    color: var(--primary-color);
}

.video-message {
    text-align: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.floating-arrow {
    display: block;
    margin-top: 10px;
    font-size: 1.2rem;
    animation: float 2s ease-in-out infinite;
}

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

@media (max-width: 768px) {
    .hero-section .main-title {
        font-size: 2rem;
        padding: 0 15px;
        margin-bottom: 1rem;
    }

    .hero-section .subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
        margin-bottom: 1.5rem;
    }

    .hero-section .text-white {
        font-size: 1rem;
        padding: 0 15px 0 35px;
    }

    .hero-section .text-white li {
        margin-bottom: 10px;
    }
}

/* Plans Section */
.plans-section {
    padding-top: 80px;
    background: #fff;
}

.plans-section h2 {
    color: var(--text-color);
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 40px;
    margin-top: 0;
    font-weight: 600;
    padding: 0 15px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .plans-section {
        margin-top: -20px;
        padding: 0;
    }

    .plans-section h2 {
        font-size: 1.2rem;
        padding: 5px 20px;
        margin: 0 auto 10px;
        display: flex;
        align-items: center;
        min-height: 45px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .plans-section {
        margin-top: -25px;
    }

    .plans-section h2 {
        min-height: 40px;
        padding: 5px 15px;
        margin: 0 auto 5px;
        font-size: 1.1rem;
    }
}

.plan-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card.featured {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(255,107,0,0.15);
    overflow: hidden; /* Para a faixa não vazar */
    height: 100%;
}

.best-value {
    position: absolute;
    top: 20px;
    right: -45px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8800 100%);
    color: white;
    padding: 8px 50px;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(255, 107, 0, 0.2);
    overflow: hidden;
}

.best-value:before {
    content: "Melhor Opção";
    display: block;
    transform: translateX(25px);
}

@media (max-width: 768px) {
    .best-value {
        display: none !important;
    }
}

.price {
    text-align: center;
    margin: 30px 0 50px;
    padding: 20px;
    background: rgba(255,64,129,0.1);
    border-radius: 10px;
}

.original-price {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 5px;
    text-decoration: line-through;
    opacity: 0.8;
}

.current-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 8px;
}

.price .amount {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.price .cents {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 8px;
}

@media (max-width: 768px) {
    .price {
        margin: 20px 0 40px;
        padding: 15px;
    }

    .original-price {
        font-size: 1rem;
        margin-bottom: 3px;
    }

    .price .amount {
        font-size: 3.2rem;
    }

    .price .cents {
        font-size: 1.5rem;
        margin-top: 6px;
    }

    .price .currency {
        font-size: 1.3rem;
        margin-top: 6px;
    }
}

.price {
    display: inline-flex !important;
    align-items: baseline !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    white-space: nowrap !important;
    width: auto !important;
    margin: 15px auto !important;
}

.price .currency,
.price .amount,
.price .cents {
    display: inline-block !important;
    line-height: 1 !important;
}

.price .currency {
    margin-right: 1px !important;
}

.price .cents {
    margin-left: -1px !important;
}

/* Examples Section */
.examples-section {
    padding: 80px 0;
    background: var(--light-bg);
    margin-top: 60px;
}

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

.examples-section .section-description {
    text-align: center;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 20px auto;
    max-width: 800px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.video-message {
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    margin: 0 auto 20px;
    max-width: 800px;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .video-container {
        width: calc(100% - 30px);
        margin: 0 auto;
        max-width: 600px;
    }

    .video-message {
        font-size: 1.1rem;
        padding: 0 15px;
        margin: 0 auto 15px;
    }
}

@media (max-width: 480px) {
    .video-container {
        width: calc(100% - 20px);
        max-width: 400px;
    }
}

.video-section {
    padding: 80px 0;
    background: #fff;
}

.video-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-message {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: none;
}

.floating-arrow {
    display: block;
    font-size: 2rem;
    color: #fff;
    animation: float 2s ease-in-out infinite;
}

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

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b00 100%);
    position: relative;
}

.testimonials-section h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 40px;
    position: relative;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.testimonials-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonials-section .col-lg-4 {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    margin-bottom: 0;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    font-style: italic;
    margin: 0;
}

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

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .testimonial-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    .author-img {
        width: 50px;
        height: 50px;
    }

    .author-info h4 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section .container {
        padding: 0 15px;
    }

    .testimonials-section .row {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
    }

    .testimonials-section .col-lg-4 {
        width: 100%;
        max-width: 400px;
        padding: 0;
        margin-bottom: 20px;
    }

    .testimonial-card {
        width: 100%;
        margin: 0 auto;
        padding: 20px;
    }

    .testimonials-section h2 {
        font-size: 24px;
        margin-bottom: 25px;
        padding: 0 20px;
    }

    .testimonial-content p {
        font-size: 16px;
        line-height: 1.5;
    }

    .testimonial-author {
        margin-top: 15px;
    }

    .author-img {
        width: 60px;
        height: 60px;
    }

    .author-info h4 {
        font-size: 16px;
    }

    .author-info p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .testimonials-section .col-lg-4 {
        max-width: 320px;
    }

    .testimonial-card {
        padding: 15px;
    }
}

/* Sample Section */
.sample-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.sample-section .section-description {
    text-align: center;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 20px auto;
    max-width: 800px;
}

.sample-preview {
    background: linear-gradient(145deg, #2c3e50 0%, #1a252f 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.sample-preview::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,193,7,0.1) 0%, rgba(255,193,7,0) 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

@media (max-width: 768px) {
    .sample-section {
        padding: 60px 0;
    }

    .sample-section .section-title {
        font-size: 1.8rem;
    }

    .sample-section .section-description {
        font-size: 1rem;
    }

    .sample-preview {
        padding: 1.8rem;
    }
}

.row.justify-content-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
}

.col-lg-8.text-center {
    margin: 0 auto;
    float: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    width: 100%;
}

.section-description {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 600px;
}

.sample-preview {
    max-width: 800px;
    margin: 30px auto;
    text-align: center;
    width: 100%;
}

.sample-preview form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 768px) {
    .col-lg-8.text-center {
        padding: 0 15px;
    }

    .section-description {
        padding: 0 10px;
    }

    .sample-preview {
        max-width: 95%;
        margin: 20px auto;
        padding: 0 10px;
    }
}

/* Contact Section - Fundo azul */
.contato-section {
    padding: 60px 0;
    background-color: var(--blue-color);
    text-align: center;
}

.contato-content h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2rem;
}

.contato-content .destaque {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* Button Styles */
.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

/* Ajustes de espaçamento vertical */
.garantia-section {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.garantia {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 0;
    text-align: center;
    background-color: white;
}

.garantia-img {
    width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

.garantia-img:hover {
    transform: scale(1.05);
}

.garantia p {
    max-width: 500px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-color);
    text-align: center;
    margin: 0 auto;
}

.faq-section {
    padding: 80px 0;
    background: white;
    overflow: hidden;
}

.contato-section {
    padding: 60px 0;
    background-color: var(--blue-color);
    margin-bottom: 0;
}

.footer {
    padding: 60px 0 30px;
    background-color: #f8f9fa;
    width: 100%;
    overflow: hidden;
}

.footer .container {
    max-width: 100%;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand img {
    max-height: 40px;
    width: auto;
}

.footer-brand p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    padding-right: 15px;
}

.social-links a {
    color: #666;
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

.social-links .facebook:hover {
    color: #1877f2;
}

.social-links .instagram:hover {
    color: #e4405f;
}

.social-links .youtube:hover {
    color: #ff0000;
}

.social-links .tiktok:hover {
    color: #000000;
}

@media (max-width: 768px) {
    .footer {
        text-align: center !important;
        padding: 30px 15px !important;
    }

    .footer .container {
        padding: 0 !important;
    }

    .footer .row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .footer .col-md-6,
    .footer .col-md-6.text-md-end {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        margin: 0 0 20px 0 !important;
    }

    .footer-brand {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    .footer-brand img {
        float: none !important;
        margin: 0 auto 15px auto !important;
        display: block !important;
        max-width: 200px !important;
    }

    .footer-brand p {
        width: 100% !important;
        text-align: center !important;
        margin: 0 auto 20px auto !important;
        padding: 0 15px !important;
        float: none !important;
    }

    .social-links {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 25px !important;
        margin: 0 !important;
        padding: 0 !important;
        float: none !important;
    }

    .social-links a {
        float: none !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 24px !important;
        margin: 0 !important;
    }
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .hero-section,
    .testimonials,
    .garantia-section,
    .sample-section,
    .faq-section,
    .contato-section {
        padding: 40px 0;
    }

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

    .garantia {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    .garantia img {
        margin: 0 auto;
    }

    .garantia p {
        text-align: center;
    }

    .faq-container {
        margin-top: 20px;
    }

    .faq-spacing {
        height: 20px;
    }

    .container {
        padding-right: 10px;
        padding-left: 10px;
    }

    [class*="col-"] {
        padding-right: 10px;
        padding-left: 10px;
    }

    .testimonial-card,
    .pricing-card {
        margin-bottom: 20px;
    }

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

    .main-title {
        font-size: 2rem;
    }
    
    .progress-text {
        font-size: 0.9rem;
    }
    
    .plan-card {
        padding: 30px;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 70px 0 60px;
    }
}

@media (max-width: 768px) {
    .sample-section {
        padding: 60px 0;
    }

    .sample-section .section-title {
        font-size: 1.8rem;
    }

    .sample-section .section-description {
        font-size: 1rem;
    }

    .sample-preview {
        padding: 1.8rem;
    }
}

@media (max-width: 768px) {
    .examples-section {
        padding: 60px 0;
    }

    .examples-section .section-title {
        font-size: 1.8rem;
    }

    .video-card {
        margin-bottom: 20px;
    }

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

/* Estilos dos cards de preço */
.pricing-section {
    position: relative;
    background: #fff;
    padding-bottom: 120px;
}

.pricing-section .container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(400px, 1fr));
    gap: 30px;
    margin: 0 auto;
    max-width: 1000px;
    padding: 60px 20px 20px;
}

.pricing-item {
    width: 100%;
    margin-bottom: 20px;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    width: 100%;
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.02);
    height: 100%;
    overflow: hidden;
}

.pricing-card-content {
    margin-bottom: 30px;
}

.pricing-card-footer {
    margin-top: auto;
}

.pricing-card .payment-methods {
    margin-top: 20px;
}

.pricing-card .payment-title {
    margin: 15px 0 10px;
    color: #666;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(350px, 1fr));
    }
}

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.features li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 100%;
    overflow: hidden;
}

.features li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.payment-title {
    color: #666;
    font-size: 0.9rem;
    margin: 20px 0 10px;
    text-align: center;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 5px;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.payment-icon i {
    font-size: 1.5rem;
    color: #666;
}

.payment-icon span {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .features li {
        padding: 6px 0;
        font-size: 1rem;
        gap: 12px;
    }

    .features li i {
        font-size: 1.1rem;
    }

    .payment-methods {
        gap: 20px;
    }

    .payment-icon i {
        font-size: 1.3rem;
    }

    .payment-icon span {
        font-size: 0.75rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color);
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 1rem;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Contato Section */
.contato-section {
    padding: 60px 0;
    background-color: var(--blue-color);
    text-align: center;
}

.contato-content h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2rem;
}

.contato-content .destaque {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    color: white;
}

.whatsapp-button i {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.footer .container {
    max-width: 100%;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand img {
    max-width: 200px;
    height: auto;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
}

.social-links a {
    color: #666;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
        padding: 30px 0;
    }

    .footer-brand {
        align-items: center;
        margin-bottom: 25px;
    }

    .footer-brand img {
        margin-bottom: 10px;
    }

    .footer-brand p {
        text-align: center;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .col-md-6.text-md-end {
        text-align: center !important;
    }

    .social-links {
        justify-content: center;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .footer .row {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer .col-md-6 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .footer-brand {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto 15px;
        display: block;
    }

    .footer-brand p {
        text-align: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .social-links {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .social-links a {
        font-size: 24px;
    }

    .text-md-end {
        text-align: center !important;
    }
}

/* Ajustes para elementos dinâmicos */
.pricing-grid {
    width: 100%;
    overflow: hidden;
}

.pricing-card {
    max-width: 100%;
    overflow: hidden;
}

.pricing-card-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    text-align: center !important;
}

.price-wrapper {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
}

.pricing-card-content {
    max-width: 100%;
    overflow: hidden;
}

.features {
    max-width: 100%;
    overflow: hidden;
}

/* Garantir que imagens não causem overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Ajuste para garantir que o footer não cause overflow */
.footer {
    width: 100%;
    overflow: hidden;
}

.footer .container {
    max-width: 100%;
}

/* Ajuste para elementos de texto longos */
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: none;
}

.data-inicio-container {
    white-space: nowrap !important;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    justify-content: center;
    font-size: 1rem;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
    -moz-hyphens: none !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
}

.data-inicio-container i {
    margin-right: 5px;
}

.data-inicio {
    white-space: nowrap !important;
    display: inline-block;
    margin-left: 5px;
    font-weight: 600;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.regular-price {
    text-decoration: line-through;
    color: #666;
    font-size: 0.9rem;
}

.sale-price {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.installments {
    font-size: 0.9rem;
    color: #444;
}

@media (max-width: 768px) {
    .data-inicio-container,
    .data-inicio {
        font-size: 0.9rem;
    }

    .sale-price {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    /* Centralizando cards de vídeo */
    .video-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .video-card {
        width: 100%;
        max-width: 450px;
        margin: 15px auto;
    }

    /* Centralizando cards de testemunhos */
    .testimonials-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        width: 100%;
        max-width: 450px;
        margin: 15px auto;
    }

    /* Centralizando o iframe de amostra */
    .sample-preview {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .sample-preview iframe {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
        display: block;
    }

    .accordion {
        width: 100%;
        max-width: 100%;
    }

    .accordion-button {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .video-card,
    .testimonial-card,
    .sample-preview iframe {
        max-width: 100%;
    }
}

.pricing-card .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin: 20px 0;
    white-space: nowrap;
}

.pricing-card .price .currency {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.pricing-card .price .amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
}

.pricing-card .price .cents {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .pricing-card .price {
        gap: 1px;
        margin: 15px 0;
        font-size: 0.9em;
    }

    .pricing-card .price .currency {
        font-size: 1.2rem;
    }

    .pricing-card .price .amount {
        font-size: 2.2rem;
    }

    .pricing-card .price .cents {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .pricing-card .price {
        font-size: 0.8em;
    }

    .pricing-card .price .currency {
        font-size: 1rem;
    }

    .pricing-card .price .amount {
        font-size: 2rem;
    }

    .pricing-card .price .cents {
        font-size: 1rem;
    }
}

.pricing-info {
    text-align: center;
    margin: 15px 0;
}

.pricing-info .price {
    display: inline-block !important;
    font-size: 32px !important;
    font-weight: 500 !important;
    color: var(--primary-color) !important;
    white-space: normal !important;
    line-height: 1.4 !important;
    margin-bottom: 5px !important;
}

.pricing-info .installments {
    font-size: 18px;
    color: var(--primary-color);
    margin: 5px 0;
}

.pricing-info .regular-price {
    font-size: 16px;
    color: #666;
    text-decoration: line-through;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .pricing-info .price {
        font-size: 28px !important;
    }
    .pricing-info .installments {
        font-size: 16px;
    }
    .pricing-info .regular-price {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pricing-info .price {
        font-size: 24px !important;
    }
    .pricing-info .installments {
        font-size: 14px;
    }
    .pricing-info .regular-price {
        font-size: 12px;
    }
}

.pricing-card .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin: 20px 0;
    white-space: nowrap;
}

.pricing-card .price .currency {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.pricing-card .price .amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
}

.pricing-card .price .cents {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .pricing-card .price {
        gap: 1px;
        margin: 15px 0;
        font-size: 0.9em;
    }

    .pricing-card .price .currency {
        font-size: 1.2rem;
    }

    .pricing-card .price .amount {
        font-size: 2.2rem;
    }

    .pricing-card .price .cents {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .pricing-card .price {
        font-size: 0.8em;
    }

    .pricing-card .price .currency {
        font-size: 1rem;
    }

    .pricing-card .price .amount {
        font-size: 2rem;
    }

    .pricing-card .price .cents {
        font-size: 1rem;
    }
}

.pricing-info .price {
    display: inline-block !important;
    font-size: 24px !important;
    font-weight: 500 !important;
    color: var(--primary-color) !important;
    white-space: normal !important;
    line-height: 1.4 !important;
    margin: 15px auto !important;
    text-align: center !important;
}

@media (max-width: 768px) {
    .pricing-info .price {
        font-size: 20px !important;
    }
}

@media (max-width: 480px) {
    .pricing-info .price {
        font-size: 18px !important;
    }
}

.pricing-card .features .bonus-divider {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 0, 0.2);
    color: var(--primary-color);
    font-weight: 600;
}

.pricing-card .features li .fa-gift {
    color: #ff6b00;
}

@media (max-width: 768px) {
    body {
        padding-top: 140px;
        overflow-x: hidden;
        width: 100%;
    }

    .progress-steps-container {
        height: 100px;
        padding: 10px 0;
    }

    .discount-warning {
        top: 100px;
        font-size: 0.75rem;
        padding: 8px 5px;
        white-space: nowrap;
        letter-spacing: -0.2px;
    }

    .step-label {
        font-size: 0.75rem;
        margin-top: 5px;
    }

    .hero-section {
        margin-top: -10px;
        padding: 40px 0;
    }

    .hero-section h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .video-message {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .floating-arrow {
        font-size: 1.5rem;
    }

    /* FAQ Mobile Styles */
    .faq-section {
        padding: 40px 0;
    }

    .accordion-button {
        padding: 12px 15px;
        font-size: 0.95rem;
        white-space: normal;
    }

    .accordion-body {
        padding: 15px;
        font-size: 0.9rem;
        line-height: 1.5;
    }

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

    .accordion-item {
        margin-bottom: 10px;
    }
}

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

    .progress-steps-container {
        height: 90px;
        padding: 8px 0;
    }

    .discount-warning {
        top: 90px;
        font-size: 0.7rem;
        padding: 8px 3px;
    }

    .steps-wrapper {
        width: 95%;
    }

    .step-label {
        font-size: 0.7rem;
        margin-top: 3px;
    }

    .hero-section h1 {
        font-size: 1.6rem;
    }

    .accordion-button {
        font-size: 0.9rem;
        padding: 10px;
    }

    .accordion-body {
        font-size: 0.85rem;
        padding: 12px;
    }
}

.pricing-card .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin: 20px 0;
    white-space: nowrap;
}

.pricing-card .price .currency {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.pricing-card .price .amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
}

.pricing-card .price .cents {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .pricing-card .price {
        gap: 1px;
        margin: 15px 0;
        font-size: 0.9em;
    }

    .pricing-card .price .currency {
        font-size: 1.2rem;
    }

    .pricing-card .price .amount {
        font-size: 2.2rem;
    }

    .pricing-card .price .cents {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .pricing-card .price {
        font-size: 0.8em;
    }

    .pricing-card .price .currency {
        font-size: 1rem;
    }

    .pricing-card .price .amount {
        font-size: 2rem;
    }

    .pricing-card .price .cents {
        font-size: 1rem;
    }
}

/* Estilo padronizado para preços */
.price-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 15px 0;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.price .old-price {
    color: #666;
    font-size: 18px;
    text-decoration: line-through;
    opacity: 0.8;
}

.price .current-price {
    color: var(--primary-color);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.price .installments {
    color: var(--primary-color);
    font-size: 18px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .price-wrapper {
        padding: 12px 0;
    }

    .price .old-price {
        font-size: 16px;
    }

    .price .current-price {
        font-size: 36px;
    }

    .price .installments {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .price-wrapper {
        padding: 10px 0;
    }

    .price .old-price {
        font-size: 14px;
    }

    .price .current-price {
        font-size: 32px;
    }

    .price .installments {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .pricing-item {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card {
        width: 100%;
    }

    .video-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .video-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .pricing-item,
    .video-card {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .examples-section .container {
        padding: 0 15px;
    }

    .examples-section .row {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
    }

    .examples-section .col-md-6 {
        width: 100%;
        max-width: 400px;
        padding: 0;
        margin-bottom: 20px;
    }

    .examples-section .video-card {
        width: 100%;
        margin: 0 auto;
    }

    .examples-section .section-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .examples-section .section-description {
        font-size: 16px;
        margin-bottom: 25px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .examples-section .col-md-6 {
        max-width: 320px;
    }
}

/* Ajuste de espaçamento das seções */
section {
    margin-bottom: 0;
    padding: 40px 0;
}

.discount-banner {
    margin-bottom: 40px;
}

.plans-section {
    padding-top: 80px;
    background: #fff;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(400px, 1fr));
    gap: 30px;
    margin: 40px auto;
    max-width: 1000px;
    padding: 60px 20px 20px;
}

@media (max-width: 768px) {
    section {
        padding: 30px 0;
    }

    .hero-section {
        padding-top: 60px;
    }

    .examples-section,
    .testimonials-section,
    .garantia-section {
        padding: 20px 0;
    }

    .plans-section {
        padding-top: 20px;
        padding-bottom: 30px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 20px 0;
    }

    .hero-section {
        padding-top: 50px;
    }
}

@media (max-width: 768px) {
    .examples-section .container {
        padding: 0;
        max-width: 100%;
    }

    .examples-section .row {
        margin: 0;
    }

    .examples-section .col-md-6 {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    .video-card {
        margin: 0;
        border-radius: 0;
    }

    .video-wrapper {
        padding-bottom: 56.25%;
        margin: 0;
    }

    .video-wrapper iframe {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
}

@media (max-width: 768px) {
    .video-message {
        text-align: center;
        margin: 0 10px 10px;
        font-size: 18px;
        padding: 15px 0;
        color: var(--primary-color);
    }

    .video-container {
        position: relative;
        width: calc(100% - 20px);
        margin: 0 10px;
        padding-bottom: calc(80% - 11.25px);
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 8px;
    }

    .floating-arrow {
        color: var(--primary-color);
        margin-left: 5px;
    }
}

@media (max-width: 768px) {
    .hero-section .video-message {
        text-align: center;
        margin: 0 5px 10px;
        font-size: 18px;
        padding: 15px 0;
        color: #fff;
        background: none;
    }

    .hero-section .floating-arrow {
        color: #fff;
        margin-left: 5px;
    }

    .hero-section .video-container {
        position: relative;
        width: calc(100% - 10px);
        margin: 0 5px;
        padding-bottom: 80%;
        box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    }

    .hero-section .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 6px;
    }
}

@media (max-width: 768px) {
    .hero-section .col-lg-6 {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 25px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .hero-section .col-lg-6:last-child {
        padding-bottom: 25px !important;
    }

    .responsive-video {
        position: relative;
        width: 100% !important;
        padding-bottom: 56.25% !important; /* 16:9 */
        height: 0;
        overflow: hidden;
        margin: 0 !important;
        box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        border-radius: 8px;
    }

    .video-message {
        text-align: center;
        width: 100% !important;
        padding: 15px !important;
        margin: 0 0 15px 0 !important;
        color: #fff;
        font-size: 1.1rem;
    }

    .responsive-video iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        border: none;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .hero-section .col-lg-6 {
        padding: 0 15px !important;
    }
}

/* Video Styles */
.responsive-video {
    position: relative;
    width: 90%;
    max-width: 560px;
    margin: 20px auto;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .responsive-video {
        width: 85%;
        max-width: 480px;
        padding-bottom: 56.25%; /* 16:9 */
    }
}

@media (max-width: 480px) {
    .responsive-video {
        width: 85%;
        max-width: 400px;
        padding-bottom: 56.25%; /* 16:9 */
    }
}

.video-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-message {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: none;
}

.floating-arrow {
    display: block;
    font-size: 2rem;
    color: #fff;
    animation: float 2s ease-in-out infinite;
}

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

.hero-section .col-lg-6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-section .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .hero-section .row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .hero-section .col-lg-6 {
        width: 100% !important;
        max-width: 800px !important;
        padding: 0 25px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    .hero-section .col-lg-6:last-child {
        padding-bottom: 25px !important;
    }

    .responsive-video {
        position: relative;
        width: 100% !important;
        max-width: 700px !important;
        padding-bottom: 56.25% !important;
        height: 0;
        overflow: hidden;
        margin: 0 auto !important;
        box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        border-radius: 8px;
    }

    .video-message {
        text-align: center;
        width: 100% !important;
        max-width: 700px !important;
        padding: 15px !important;
        margin: 0 auto 15px auto !important;
        color: #fff;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-section .col-lg-6 {
        padding: 0 15px !important;
        max-width: 100% !important;
    }
}

/* Botões dos cards */
.pricing-card .btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.pricing-card .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8800 100%);
    border: none;
    color: white;
}

.pricing-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

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

.pricing-card .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
}

.pricing-card .btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 15px 15px;
    }

    .pricing-card {
        padding: 25px;
        max-width: 450px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: scale(1);
        order: -1;
    }

    .best-value {
        top: 15px;
        right: -40px;
        padding: 6px 40px;
        font-size: 0.85rem;
    }

    .pricing-card .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .pricing-card .payment-methods {
        margin-top: 15px;
    }

    .pricing-card .payment-title {
        margin: 12px 0 8px;
    }
}

@media (max-width: 480px) {
    .pricing-grid {
        padding: 30px 10px 10px;
    }

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