/* Reset e Base */

.simulator-preview {
    background-color: #1a2238;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #2a3448;
}

.simulator-preview iframe {
    width: 100%;
    height: 100%;
}

@media (min-width: 769px) {
    .simulator-preview {
        width: 500px; /* Largura da moldura para desktop */
        height: 500px; /* Altura da moldura para desktop */
        margin: 0; /* Remove margin auto para desktop */
    }
}

@media (max-width: 768px) {
    .simulator-preview {
        padding: 10px;
        width: 90%;
        max-width: 320px;
        margin: 20px auto;
        height: auto;
    }

    .simulator-preview iframe {
        width: 100%;
        height: 380px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a1128;
}

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

/* Header */
.header {
    background-color: #0a1128;
    padding: 15px 0;
    border-bottom: 1px solid #1a2238;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: auto;
}

.header-text h1 {
    color: #d4af37;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.header-text p {
    color: #b8c5d6;
    font-size: 0.9em;
}

.contact-info {
    color: #b8c5d6;
    font-size: 0.9em;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a1128 0%, #1a2238 100%);
    padding: 80px 0;
    color: white;
}

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

.badge {
    background-color: #d4af37;
    color: #0a1128;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #d4af37;
}

.hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #b8c5d6;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #d4af37;
    color: #0a1128;
}

.btn-primary:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background-color: #d4af37;
    color: #0a1128;
}

/* Simulator Preview */
.simulator-preview {
    background-color: #1a2238;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #2a3448;
}

.simulator-preview h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.simulator-preview p {
    color: #b8c5d6;
    margin-bottom: 20px;
}

/* Stats Section */
.stats {
    background-color: #1a2238;
    padding: 60px 0;
    color: white;
}

.stats h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #d4af37;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 3em;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
    color: #b8c5d6;
}

/* Why Invest Section */
.why-invest {
    background-color: #0a1128;
    padding: 80px 0;
    color: white;
}

.why-invest h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #d4af37;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #b8c5d6;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-item {
    background-color: #1a2238;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #2a3448;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.benefit-item h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.benefit-item p {
    color: #b8c5d6;
    line-height: 1.6;
}

/* Comparison Table */
.comparison {
    background-color: #1a2238;
    padding: 80px 0;
    color: white;
}

.comparison h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #d4af37;
}

.table-container {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #0a1128;
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #2a3448;
}

.comparison-table th {
    background-color: #2a3448;
    color: #d4af37;
    font-weight: bold;
}

.highlight-cell {
    background-color: #d4af37;
    color: #0a1128;
    font-weight: bold;
}

.highlight-column {
    background-color: #d4af37;
    color: #0a1128;
    font-weight: bold;
}

/* Simulator Benefits */
.simulator-benefits {
    background-color: #0a1128;
    padding: 80px 0;
    color: white;
}

.simulator-benefits h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #d4af37;
}

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

.benefit-card {
    background-color: #1a2238;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #2a3448;
    position: relative;
    transition: transform 0.3s ease;
}

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

.benefit-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background-color: #d4af37;
    color: #0a1128;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.benefit-card h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.3em;
    margin-top: 10px;
}

.benefit-card p {
    color: #b8c5d6;
    line-height: 1.6;
}

/* Scarcity Section */
.scarcity-section {
    background-color: #1a2238;
    padding: 60px 0;
    color: white;
    text-align: center;
}

.scarcity-content h3 {
    color: #d4af37;
    font-size: 2em;
    margin-bottom: 20px;
}

.scarcity-content p {
    color: #b8c5d6;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.scarcity-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.scarcity-stat {
    background-color: #0a1128;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #2a3448;
}

.scarcity-stat .stat-number {
    font-size: 2.5em;
    color: #d4af37;
    margin-bottom: 10px;
}

.scarcity-stat .stat-label {
    color: #b8c5d6;
    font-size: 0.9em;
}

/* Social Proof Advanced */
.social-proof-advanced {
    background-color: #0a1128;
    padding: 80px 0;
    color: white;
}

.social-proof-advanced h3 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #d4af37;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    text-align: center;
}

.proof-item {
    background-color: #1a2238;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #2a3448;
}

.proof-number {
    font-size: 2.5em;
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 10px;
}

.proof-label {
    color: #b8c5d6;
    font-size: 1em;
}

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

.recent-approvals h4 {
    color: #d4af37;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.approval-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.approval-item {
    background-color: #1a2238;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    color: #b8c5d6;
}

/* Authority Section */
.authority-section {
    background-color: #1a2238;
    padding: 80px 0;
    color: white;
}

.authority-section h3 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #d4af37;
}

.authority-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.authority-item {
    background-color: #0a1128;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #2a3448;
    text-align: center;
}

.authority-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.authority-item h4 {
    color: #d4af37;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.authority-item p {
    color: #b8c5d6;
    line-height: 1.6;
}

/* Video Testimonials */
.video-testimonials {
    background-color: #0a1128;
    padding: 80px 0;
    color: white;
}

.video-testimonials h3 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #d4af37;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.video-item {
    background-color: #1a2238;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #2a3448;
}

.video-placeholder {
    padding: 30px;
    text-align: center;
    position: relative;
}

.play-button {
    font-size: 3em;
    margin-bottom: 20px;
    cursor: pointer;
}

.video-item h4 {
    color: #d4af37;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.video-item p {
    color: #b8c5d6;
    margin-bottom: 20px;
    font-style: italic;
}

.video-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9em;
}

.video-stats span {
    background-color: #0a1128;
    padding: 5px 10px;
    border-radius: 15px;
    color: #d4af37;
}

/* Testimonials */
.testimonials {
    background-color: #1a2238;
    padding: 80px 0;
    color: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #d4af37;
}

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

.testimonial-item {
    background-color: #0a1128;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 20px;
    color: #b8c5d6;
    font-size: 1.1em;
}

.testimonial-author strong {
    color: #d4af37;
    display: block;
    margin-bottom: 5px;
}

.testimonial-return {
    color: #28a745;
    font-weight: bold;
}

/* Final CTA */
.final-cta {
    background-color: #0a1128;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #d4af37;
}

.final-cta p {
    font-size: 1.2em;
    color: #b8c5d6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-benefits span {
    background-color: #1a2238;
    padding: 10px 20px;
    border-radius: 20px;
    color: #d4af37;
    font-weight: bold;
    border: 1px solid #2a3448;
}

/* Footer */
.footer {
    background-color: #0a1128;
    color: #b8c5d6;
    padding: 40px 0;
    border-top: 1px solid #2a3448;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-text h3 {
    color: #d4af37;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.footer-text p {
    font-size: 0.9em;
    margin-bottom: 5px;
}

.footer-right {
    text-align: right;
}

.footer-right p {
    margin-bottom: 5px;
}

.footer a {
    color: #b8c5d6;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Valorization Grid */
.valorization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.valorization-item {
    background-color: #1a2238;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #2a3448;
    transition: transform 0.3s ease;
}

.valorization-item:hover {
    transform: translateY(-5px);
}

.valorization-item h3 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.valorization-item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.valorization-item li {
    color: #b8c5d6;
    margin-bottom: 8px;
    padding: 5px 0;
}

/* Payment Models */
.payment-models {
    background-color: #1a2238;
    padding: 80px 0;
    color: white;
}

.payment-models h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #d4af37;
}

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

.payment-item {
    background-color: #0a1128;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #2a3448;
    transition: transform 0.3s ease;
}

.payment-item:hover {
    transform: translateY(-5px);
}

.payment-item h3 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 1.5em;
    text-align: center;
}

.payment-item ul {
    list-style: none;
    padding: 0;
}

.payment-item li {
    color: #b8c5d6;
    margin-bottom: 15px;
    font-size: 1.1em;
    padding: 10px 0;
    border-bottom: 1px solid #2a3448;
}

.payment-item li:last-child {
    border-bottom: none;
}

.payment-item li strong {
    color: #d4af37;
}

/* Club Benefits */
.club-benefits {
    background-color: #0a1128;
    padding: 80px 0;
    color: white;
}

.club-benefits h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #d4af37;
}

.club-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.club-benefits .benefit-item {
    background-color: #1a2238;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #2a3448;
    transition: transform 0.3s ease;
    text-align: center;
}

.club-benefits .benefit-item:hover {
    transform: translateY(-5px);
}

.club-benefits .benefit-icon {
    font-size: 2em;
    margin-bottom: 15px;
    color: #d4af37;
}

.club-benefits .benefit-item h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.club-benefits .benefit-item p {
    color: #b8c5d6;
    line-height: 1.6;
}

/* Disclaimer Section */
.disclaimer {
    background-color: #0a1128;
    padding: 40px 0;
    color: white;
    text-align: center;
    border-top: 1px solid #2a3448;
}

.disclaimer-text {
    font-size: 0.8em;
    color: #b8c5d6;
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-text strong {
    color: #d4af37;
}

/* Button styles for small buttons */
.btn-small {
    background-color: #d4af37;
    color: #0a1128;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 15px;
}

.btn-small:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
}

/* CTA button container */
.cta-button-container {
    text-align: center;
    margin-top: 40px;
}

/* Font Awesome icon adjustments */
.benefit-icon i {
    font-size: 2.5em;
    color: #d4af37;
}

/* MEDIA QUERIES PARA RESPONSIVIDADE MOBILE */

/* Tablets e telas médias */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5em;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Smartphones e telas pequenas */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header mobile */
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .logo-section {
        justify-content: center;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .header-text h1 {
        font-size: 1.1em;
    }
    
    .header-text p {
        font-size: 0.8em;
    }
    
    /* Hero section mobile */
    .hero {
        padding: 40px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8em;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 1em;
        margin-bottom: 25px;
    }
    
    .badge {
        font-size: 0.8em;
        padding: 6px 12px;
        margin-bottom: 15px;
    }
    
    /* Botões mobile */
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-primary, 
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 12px 20px;
        font-size: 1em;
        text-align: center;
    }
    
    .cta-button-container .btn-primary {
        width: 100%;
        max-width: 300px;
        padding: 12px 20px;
        font-size: 1em;
    }
    
    /* Ocultar iframe em mobile */
    .hero-right,
    .mobile-hidden {
        display: none;
    }
    
    /* Seções gerais mobile */
    .stats,
    .why-invest,
    .comparison,
    .payment-models,
    .club-benefits,
    .final-cta {
        padding: 50px 0;
    }
    
    .stats h2,
    .why-invest h2,
    .comparison h2,
    .payment-models h2,
    .club-benefits h2,
    .final-cta h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }
    
    .section-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    /* Grids mobile */
    .stats-grid,
    .benefits-grid,
    .valorization-grid,
    .payment-grid,
    .proof-grid,
    .authority-stats,
    .testimonial-grid,
    .video-grid,
    .scarcity-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Cards mobile */
    .benefit-item,
    .valorization-item,
    .payment-item,
    .testimonial-item,
    .authority-item,
    .proof-item,
    .scarcity-stat {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .benefit-item h3,
    .valorization-item h3,
    .payment-item h3 {
        font-size: 1.2em;
        margin-bottom: 12px;
    }
    
    .benefit-item p,
    .valorization-item li,
    .payment-item li {
        font-size: 0.9em;
        line-height: 1.5;
    }
    
    /* Tabela comparativa mobile */
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table {
        min-width: 600px;
        font-size: 0.8em;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px;
        white-space: nowrap;
    }
    
    /* Footer mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-left {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .footer-right {
        text-align: center;
    }
    
    /* CTA benefits mobile */
    .cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-benefits span {
        padding: 8px 16px;
        font-size: 0.9em;
    }
}

/* Smartphones muito pequenos */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.5em;
    }
    
    .hero-description {
        font-size: 0.9em;
    }
    
    .btn-primary,
    .btn-secondary {
        max-width: 280px;
        padding: 10px 16px;
        font-size: 0.9em;
    }
    
    .stats h2,
    .why-invest h2,
    .comparison h2,
    .payment-models h2,
    .club-benefits h2,
    .final-cta h2 {
        font-size: 1.7em;
    }
    
    .section-subtitle {
        font-size: 0.9em;
    }
    
    .benefit-item,
    .valorization-item,
    .payment-item {
        padding: 15px;
    }
    
    .comparison-table {
        font-size: 0.7em;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 6px;
    }
}

/* Ajustes específicos para botões pequenos em mobile */
@media (max-width: 768px) {
    .btn-small {
        width: 100%;
        max-width: 200px;
        padding: 10px 16px;
        font-size: 0.8em;
        margin: 10px auto;
        display: block;
    }
}



@media (max-width: 768px) {
    .simulator-preview {
        padding: 15px;
        width: 100%;
        max-width: 350px; /* Limita a largura da moldura */
        margin: 0 auto; /* Centraliza a moldura */
    }
    
    .simulator-preview iframe {
        width: 100%; /* Garante que o iframe ocupe 100% da largura do contêiner */
        height: 400px; /* Ajusta a altura do iframe para mobile */
    }
}



@media (max-width: 768px) {
    .simulator-preview {
        padding: 15px;
        width: 100%;
        max-width: 300px; /* Limita a largura da moldura para mobile */
        margin: 0 auto; /* Centraliza a moldura */
    }
    
    .simulator-preview iframe {
        width: 100%; /* Garante que o iframe ocupe 100% da largura do contêiner */
        height: 350px; /* Ajusta a altura do iframe para mobile */
    }

    .hero-right {
        display: block; /* Garante que o iframe seja exibido */
        width: 100%;
        margin-top: 30px;
    }
}



@media (max-width: 768px) {
    .simulator-preview {
        max-width: 100%; /* Garante que a moldura ocupe a largura total disponível */
        padding: 15px; /* Mantém o padding */
        margin: 0 auto; /* Centraliza a moldura */
    }
    
    .simulator-preview iframe {
        width: 100%; /* Garante que o iframe ocupe 100% da largura do contêiner */
        height: auto; /* Altura automática para se ajustar ao conteúdo */
        min-height: 350px; /* Altura mínima para o iframe */
    }
}

