/* Variáveis e Reset */
:root {
    --color-primary: #ff0085;
    --color-secondary: #405de6;
    --color-gradient-start: #405de6;
    --color-gradient-mid: #833ab4;
    --color-gradient-end: #fd1d1d;
    --color-dark: #111111;
    --color-light: #ffffff;
    --color-gray: #f8f8f8;
    --color-text: #333333;
    --font-primary: 'Poppins', sans-serif;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-button: 0 5px 15px rgba(0, 0, 0, 0.1);
    --radius-card: 15px;
    --radius-button: 30px;
    --transition: all 0.3s ease;
}

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-light);
    overflow-x: hidden;
    overflow-y: hidden; /* Prevent scrolling during preloader */
}

body.loaded {
    overflow-y: auto; /* Enable scrolling after preloader */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Botões */
.btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--color-gradient-start), var(--color-gradient-end));
    color: var(--color-light);
    font-weight: 600;
    font-size: 1.6rem;
    padding: 1.2rem 3rem;
    border-radius: var(--radius-button);
    box-shadow: var(--shadow-button);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-comprar {
    background: linear-gradient(45deg, #00b894, #00d2d3);
    width: 80%;
    margin: 2rem auto;
}

/* Header */
header {
    padding: 2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

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

header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

header span {
    color: var(--color-secondary);
}

nav ul {
    display: flex;
    gap: 3rem;
}

nav a {
    font-size: 1.6rem;
    font-weight: 500;
    transition: var(--transition);
}

nav a:hover {
    color: var(--color-primary);
}

/* Hero Section */
.hero {
    padding: 15rem 0 10rem;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-mid), var(--color-gradient-end));
    color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-content h2 {
    font-size: 4.2rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Seção de Planos */
.plans {
    padding: 10rem 0;
    background-color: var(--color-gray);
}

.plans h2 {
    font-size: 3.6rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.plans > .container > p {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 5rem;
}

/* Estilos para o seletor de categoria */
.category-selector-container {
    text-align: center;
    margin-bottom: 4rem;
}

.categories {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.category-btn {
    background-color: var(--color-light);
    border: 2px solid transparent;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.category-btn.active, .category-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

/* Estilos para Cards de Seguidores */
.plans-cards-container {
    display: none;
    margin-top: 30px;
}

.plans-cards-container.active {
    display: block;
}

.plans-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.plan-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--color-primary);
}

.card-header {
    margin-bottom: 15px;
}

.card-quantity {
    display: block;
    font-size: 2em;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.card-type {
    display: block;
    font-size: 0.9em;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-price {
    font-size: 1.5em;
    font-weight: bold;
    color: #00b894;
    margin: 15px 0;
}

.card-features {
    margin: 15px 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9em;
    color: var(--color-text);
}

.feature-item i {
    color: #00b894;
    margin-right: 8px;
    font-size: 1em;
}

.btn-buy-card {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

.btn-buy-card:hover {
    background: linear-gradient(135deg, #c2185b, #e91e63);
    transform: scale(1.05);
}

/* Estilos para Tabelas de Planos (outros planos) */
.plans-table-container {
    display: none;
    margin-top: 30px;
}

.plans-table-container.active {
    display: block;
}

.plans-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.plan-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.plan-row:last-child {
    border-bottom: none;
}

.plan-row:hover {
    background-color: #f8f9ff;
}

.plan-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.plan-quantity {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    min-width: 80px;
    text-align: left;
}

.plan-type {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    flex: 1;
    text-align: left;
}

.plan-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00b894;
    min-width: 100px;
    text-align: right;
}

.btn-buy {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    min-width: 140px;
    text-align: center;
    animation: pulse 2s infinite;
}

.btn-buy:hover {
    background: linear-gradient(135deg, #c2185b, #e91e63);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
    text-decoration: none;
    color: white;
}

/* Responsividade */
@media (max-width: 1024px) {
    .plans-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .plans-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .plan-card-item {
        padding: 20px 15px;
    }
    
    .card-quantity {
        font-size: 2.8em;
        font-weight: 900;
    }
    
    .card-type {
        font-size: 1.2em;
        font-weight: 600;
    }
    
    .card-price {
        font-size: 2em;
        margin: 20px 0;
        font-weight: 800;
    }
    
    .btn-buy-card {
        padding: 8px 16px;
        font-size: 0.8em;
        margin-top: 10px;
        animation: pulse 2s infinite;
    }
    
    .plan-row {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }
    
    .plan-info {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .plan-quantity,
    .plan-type,
    .plan-price {
        text-align: center;
        min-width: auto;
    }
    
    .btn-buy {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .plans-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card-item {
        padding: 25px 20px;
    }
    
    .card-quantity {
        font-size: 3.2em;
        margin-bottom: 8px;
        font-weight: 900;
    }
    
    .card-type {
        font-size: 1.3em;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .card-price {
        font-size: 2.4em;
        margin: 25px 0 20px 0;
        font-weight: 800;
    }
    
    .btn-buy-card {
        padding: 10px 20px;
        font-size: 0.85em;
        border-radius: 20px;
        animation: pulse 2s infinite;
    }
}

/* Animação de pulsação para botões */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(233, 30, 99, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
    }
}

/* Estilos para seções TikTok e YouTube */
.tiktok-section, .youtube-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tiktok-section {
    background: linear-gradient(135deg, #ff0050 0%, #ff4081 100%);
    color: white;
}

.youtube-section {
    background: linear-gradient(135deg, #ff0000 0%, #ff5722 100%);
    color: white;
}

.platform-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.platform-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.platform-header i {
    font-size: 3em;
    color: white;
}

.platform-header h3 {
    font-size: 2.5em;
    font-weight: bold;
    margin: 0;
    color: white;
}

.platform-info-card p {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.btn-contact {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-contact:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-contact i {
    font-size: 1.2em;
}

/* Responsividade para seções de plataforma */
@media (max-width: 768px) {
    .platform-info-card {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .platform-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .platform-header i {
        font-size: 2.5em;
    }
    
    .platform-header h3 {
        font-size: 2em;
    }
    
    .platform-info-card p {
        font-size: 1.1em;
    }
    
    .btn-contact {
        padding: 12px 25px;
        font-size: 1em;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-mid), var(--color-gradient-end));
    margin: 20px;
    padding: 0;
    border-radius: var(--radius-card);
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    overflow: hidden;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    transition: var(--transition);
}

.close-modal:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.modal-body {
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.modal-icon {
    margin-bottom: 20px;
}

.modal-icon i {
    font-size: 4em;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.modal-body h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modal-body p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

.modal-actions {
    margin-top: 30px;
}

.btn-modal-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 15px 30px;
    border-radius: var(--radius-button);
    font-weight: 600;
    font-size: 1.1em;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    width: 80%;
    max-width: 250px;
    margin: 0 auto;
}

.btn-modal-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.btn-modal-whatsapp i {
    font-size: 1.2em;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10px;
        width: 95%;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
    
    .modal-icon i {
        font-size: 3em;
    }
    
    .modal-body h2 {
        font-size: 2em;
    }
    
    .modal-body p {
        font-size: 1.1em;
    }
    
    .btn-modal-whatsapp {
        padding: 12px 25px;
        font-size: 1em;
    }
}

.plan-card {
    background-color: var(--color-light);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.plan-card.popular {
    border: 2px solid var(--color-primary);
    transform: scale(1.05);
}

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

.popular-tag {
    position: absolute;
    top: 2rem;
    right: -5rem;
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 5rem;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 1.2rem;
}

.plan-card h3 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.plan-card h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--color-dark);
}

.price {
    font-size: 3.6rem;
    font-weight: 700;
    color: #00b894;
    margin-bottom: 3rem;
}

.features {
    margin-bottom: 2rem;
}

.features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.features i {
    color: #00b894;
    font-size: 1.8rem;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.badge i {
    font-size: 2rem;
    color: var(--color-secondary);
}

.badge span {
    font-size: 1rem;
    text-align: center;
    line-height: 1.2;
    color: var(--color-text);
}

/* Seção de Benefícios */
.benefits {
    padding: 10rem 0;
    background-color: var(--color-light);
}

.benefits h2 {
    font-size: 3.6rem;
    text-align: center;
    margin-bottom: 5rem;
}

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

.benefit-card {
    text-align: center;
}

.icon {
    width: 8rem;
    height: 8rem;
    background: linear-gradient(45deg, var(--color-gradient-start), var(--color-gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.icon i {
    font-size: 3rem;
    color: var(--color-light);
}

.benefit-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.benefit-card p {
    font-size: 1.6rem;
}

/* FAQ */
.faq {
    padding: 10rem 0;
    background-color: var(--color-gray);
}

.faq h2 {
    font-size: 3.6rem;
    text-align: center;
    margin-bottom: 5rem;
}

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

.faq-item {
    background-color: var(--color-light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-card);
}

.faq-question {
    font-size: 1.8rem;
    font-weight: 600;
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: var(--transition);
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    height: auto;
    padding: 0 2rem 2rem;
}

/* Contato */
.contact {
    padding: 10rem 0;
    background-color: var(--color-light);
}

.contact h2 {
    font-size: 3.6rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact > .container > p {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 5rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.contact-item {
    text-align: center;
    padding: 3rem;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-10px);
}

.contact-item i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.contact-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-item a {
    color: var(--color-primary);
    font-weight: 500;
    transition: var(--transition);
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-logo h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.footer-logo span {
    color: var(--color-primary);
}

.footer-links h3, .footer-social h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    transition: var(--transition);
}

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

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--color-primary);
    transform: translateY(-5px);
}

.social-icons i {
    font-size: 2rem;
}

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

/* WhatsApp Flutuante */
.floating-whatsapp {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    z-index: 999;
}

.floating-whatsapp a {
    width: 6rem;
    height: 6rem;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.floating-whatsapp i {
    font-size: 3rem;
    color: var(--color-light);
}

.floating-whatsapp a:hover {
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 992px) {
    html {
        font-size: 60%;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-content {
        order: 2;
        position: relative;
        z-index: 2;
        background-color: rgba(64, 93, 230, 0.7); /* Semitransparente, cor do gradient-start */
        backdrop-filter: blur(5px);
        padding: 2rem;
        border-radius: 15px;
        margin-top: -5rem;
    }

    .hero-image {
        order: 1;
        margin-bottom: 0;
        position: relative;
        z-index: 1;
        width: 100%;
        overflow: hidden;
    }
    
    .hero-image img {
        border-radius: 0;
        width: 100%;
        max-height: 300px;
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 55%;
    }

    header {
        padding: 1.5rem 0;
    }

    nav ul {
        gap: 1.5rem;
    }
    
    /* Design imersivo para mobile */
    .hero {
        padding: 10rem 0 5rem;
        overflow: hidden;
    }
    
    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, 
                    rgba(64, 93, 230, 0.85) 0%,
                    rgba(131, 58, 180, 0.85) 50%,
                    rgba(253, 29, 29, 0.85) 100%);
        z-index: 1;
    }
    
    .hero .container {
        position: relative;
        z-index: 2;
        gap: 0;
    }
    
    .hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        margin: 0;
        display: block;
    }
    
    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
        opacity: 0.5; /* Reduzir a opacidade para melhorar a legibilidade */
    }
    
    .hero-content {
        background: none;
        backdrop-filter: none;
        margin-top: 0;
        padding: 2rem 1rem;
    }
    
    .hero-content h2,
    .hero-content p {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        color: white; /* Garantir que o texto seja branco para contraste */
    }
    
    .hero-content h2 {
        font-size: 3.6rem; /* Ligeiramente maior para melhor legibilidade */
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    /* Resto do código para mobile permanece */
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .plan-card.popular {
        transform: scale(1);
    }

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

    .categories {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .category-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero {
        padding: 18rem 0 8rem;
    }

    .hero-content h2 {
        font-size: 3.2rem;
    }
    
    .hero-content .btn {
        font-size: 1.6rem;
        padding: 1rem 2.5rem;
        width: 80%;
        max-width: 300px;
    }

    .benefits-grid, 
    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .icon {
        width: 6rem;
        height: 6rem;
    }

    .icon i {
        font-size: 2.5rem;
    }
    
    /* Melhorias nas animações da tela introdutória para mobile */
    .preloader-logo {
        font-size: 3.2rem;
    }
    
    .social-icons-animation {
        gap: 1rem;
    }
    
    .social-icon {
        width: 5rem;
        height: 5rem;
    }
    
    .social-icon i {
        font-size: 2.5rem;
    }
    
    .icon-counter {
        font-size: 1.6rem;
    }
    
    .loading-bar {
        width: 80%;
        max-width: 250px;
    }

    .phone-mockup {
        max-width: 280px;
    }

    .profile-stats {
        padding: 0 1rem;
    }

    .stat-value {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .platform-buttons {
        flex-direction: column;
        align-items: center;
    }
    .platform-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Preloader/Tela introdutória */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-mid), var(--color-gradient-end));
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: var(--color-light);
}

.preloader-logo {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

.social-icons-animation {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
}

.social-icon {
    width: 6rem;
    height: 6rem;
    background: var(--color-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.social-icon i {
    font-size: 3rem;
}

.icon-counter {
    font-size: 1.8rem;
    font-weight: 600;
}

.icon-container:nth-child(1) {
    animation: fadeInUp 0.6s ease forwards 0.8s;
}

.icon-container:nth-child(1) i {
    color: #fd1d1d;
}

.icon-container:nth-child(2) {
    animation: fadeInUp 0.6s ease forwards 1.1s;
}

.icon-container:nth-child(2) i {
    color: #405de6;
}

.icon-container:nth-child(3) {
    animation: fadeInUp 0.6s ease forwards 1.4s;
}

.icon-container:nth-child(3) i {
    color: #25d366;
}

.counter-animation {
    display: inline-block;
}

.loading-bar {
    width: 25rem;
    height: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    margin-top: 4rem;
    overflow: hidden;
    position: relative;
}

.loading-progress {
    width: 0;
    height: 100%;
    background: var(--color-light);
    border-radius: 2rem;
    position: absolute;
    left: 0;
    top: 0;
    animation: loadingProgress 3s ease forwards;
}

.loading-text {
    margin-top: 1rem;
    font-size: 1.6rem;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    70% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes loadingProgress {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efeito de Chuva de Interações */
.floating-interaction {
    position: absolute;
    z-index: 9999;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    will-change: transform, opacity;
    animation-fill-mode: forwards;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Efeito de brilho ao redor dos ícones */
.floating-interaction::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.6;
    border-radius: 50%;
}

@keyframes float-up {
    0% {
        opacity: 0.8;
        transform: translateY(0) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) rotate(var(--rotation));
    }
}

/* Animação para elementos interativos */
.plan-card, .benefit-card, .contact-item, .btn, .category-btn {
    position: relative;
    overflow: visible;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover, .benefit-card:hover, .contact-item:hover, .btn:hover, .category-btn:hover {
    z-index: 1;
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.07);
}

/* Efeito sutil de brilho ao redor dos elementos em hover */
.plan-card::after, .benefit-card::after, .contact-item::after, .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    transition: box-shadow 0.5s ease;
    pointer-events: none;
}

.plan-card:hover::after, .benefit-card:hover::after, .contact-item:hover::after, .btn:hover::after {
    box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.3);
}

/* Estilos para o novo dropdown de planos */
.plans-select-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
}

.plans-select-wrapper {
    background-color: var(--color-light);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
    display: none;
}

.plans-select-wrapper.active {
    display: block;
}

.select-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    position: relative;
}

.select-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-text);
}

.select-header i {
    font-size: 1.6rem;
    color: var(--color-primary);
    transition: var(--transition);
}

.select-header.open i {
    transform: rotate(180deg);
}

.select-options {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.select-header.open + .select-options {
    max-height: 400px;
    overflow-y: auto;
}

.select-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
    transition: var(--transition);
}

.select-option:hover {
    background-color: rgba(0,0,0,0.02);
}

.select-option.selected {
    background: linear-gradient(to right, rgba(64, 93, 230, 0.1), rgba(255, 0, 133, 0.1));
    font-weight: 600;
}

.option-quantity {
    font-size: 1.6rem;
}

.option-price {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-primary);
}

.selected-plan-info {
    display: flex;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto 40px;
    background-color: var(--color-light);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    padding: 30px;
}

.selected-plan-details {
    flex: 1;
    padding-right: 20px;
}

.selected-plan-details h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.selected-plan-description {
    font-size: 1.8rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.plan-features {
    margin-top: 20px;
}

.selected-plan-action {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    padding-left: 20px;
    border-left: 1px solid rgba(0,0,0,0.1);
}

.selected-price {
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .selected-plan-info {
        flex-direction: column;
    }
    
    .selected-plan-action {
        padding-left: 0;
        padding-top: 20px;
        border-left: none;
        border-top: 1px solid rgba(0,0,0,0.1);
    }
}

/* Estilos para o seletor de plataforma */
.platform-selector-container {
    text-align: center;
    margin-bottom: 4rem;
}

.platform-selector-container h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.platform-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.platform-btn {
    background-color: var(--color-light);
    border: 2px solid var(--color-gray);
    padding: 1.2rem 2.5rem;
    border-radius: var(--radius-button);
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: none;
}

.platform-btn i {
    font-size: 2rem;
}

/* Botão Instagram - Rosa */
.platform-btn[data-platform="instagram"] {
    background: #E1306C;
    color: white;
    border-color: #E1306C;
}

.platform-btn[data-platform="instagram"]:hover {
    background: #C13584;
    border-color: #C13584;
}

/* Botão TikTok - Preto */
.platform-btn[data-platform="tiktok"] {
    background: #000000;
    color: white;
    border-color: #000000;
}

.platform-btn[data-platform="tiktok"]:hover {
    background: #333333;
    border-color: #333333;
}

/* Botão YouTube - Vermelho */
.platform-btn[data-platform="youtube"] {
    background: #FF0000;
    color: white;
    border-color: #FF0000;
}

.platform-btn[data-platform="youtube"]:hover {
    background: #CC0000;
    border-color: #CC0000;
}

.platform-btn.active {
    opacity: 1;
    transform: scale(1.05);
}

.platform-btn:not(.active) {
    opacity: 0.7;
}

/* Ajustes para o seletor de plataforma em telas menores */
@media (max-width: 576px) {
    .platform-buttons {
        flex-direction: column;
        align-items: center;
    }
    .platform-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

/* Estilos para Cards de Seguidores */
.plans-cards-container {
    display: none;
    margin-top: 30px;
}

.plans-cards-container.active {
    display: block;
}

.plans-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.plan-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--color-primary);
}

.card-header {
    margin-bottom: 15px;
}

.card-quantity {
    display: block;
    font-size: 2em;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.card-type {
    display: block;
    font-size: 0.9em;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-price {
    font-size: 1.5em;
    font-weight: bold;
    color: #00b894;
    margin: 15px 0;
}

.card-features {
    margin: 15px 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9em;
    color: var(--color-text);
}

.feature-item i {
    color: #00b894;
    margin-right: 8px;
    font-size: 1em;
}

.btn-buy-card {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

.btn-buy-card:hover {
    background: linear-gradient(135deg, #c2185b, #e91e63);
    transform: scale(1.05);
}

/* Estilos para Tabelas de Planos (outros planos) */
.plans-table-container {
    display: none;
    margin-top: 30px;
}

.plans-table-container.active {
    display: block;
}

.plans-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.plan-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.plan-row:last-child {
    border-bottom: none;
}

.plan-row:hover {
    background-color: #f8f9ff;
}

.plan-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.plan-quantity {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    min-width: 80px;
    text-align: left;
}

.plan-type {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    flex: 1;
    text-align: left;
}

.plan-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00b894;
    min-width: 100px;
    text-align: right;
}

.btn-buy {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    min-width: 140px;
    text-align: center;
    animation: pulse 2s infinite;
}

.btn-buy:hover {
    background: linear-gradient(135deg, #c2185b, #e91e63);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
    text-decoration: none;
    color: white;
}

/* Responsividade */
@media (max-width: 1024px) {
    .plans-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .plans-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .plan-card-item {
        padding: 20px 15px;
    }
    
    .card-quantity {
        font-size: 2.8em;
        font-weight: 900;
    }
    
    .card-type {
        font-size: 1.2em;
        font-weight: 600;
    }
    
    .card-price {
        font-size: 2em;
        margin: 20px 0;
        font-weight: 800;
    }
    
    .btn-buy-card {
        padding: 8px 16px;
        font-size: 0.8em;
        margin-top: 10px;
        animation: pulse 2s infinite;
    }
    
    .plan-row {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }
    
    .plan-info {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .plan-quantity,
    .plan-type,
    .plan-price {
        text-align: center;
        min-width: auto;
    }
    
    .btn-buy {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .plans-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card-item {
        padding: 25px 20px;
    }
    
    .card-quantity {
        font-size: 3.2em;
        margin-bottom: 8px;
        font-weight: 900;
    }
    
    .card-type {
        font-size: 1.3em;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .card-price {
        font-size: 2.4em;
        margin: 25px 0 20px 0;
        font-weight: 800;
    }
    
    .btn-buy-card {
        padding: 10px 20px;
        font-size: 0.85em;
        border-radius: 20px;
        animation: pulse 2s infinite;
    }
}

/* Animação de pulsação para botões */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(233, 30, 99, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
    }
}

/* Estilos para seções TikTok e YouTube */
.tiktok-section, .youtube-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tiktok-section {
    background: linear-gradient(135deg, #ff0050 0%, #ff4081 100%);
    color: white;
}

.youtube-section {
    background: linear-gradient(135deg, #ff0000 0%, #ff5722 100%);
    color: white;
}

.platform-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.platform-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.platform-header i {
    font-size: 3em;
    color: white;
}

.platform-header h3 {
    font-size: 2.5em;
    font-weight: bold;
    margin: 0;
    color: white;
}

.platform-info-card p {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.btn-contact {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-contact:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-contact i {
    font-size: 1.2em;
}

/* Responsividade para seções de plataforma */
@media (max-width: 768px) {
    .platform-info-card {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .platform-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .platform-header i {
        font-size: 2.5em;
    }
    
    .platform-header h3 {
        font-size: 2em;
    }
    
    .platform-info-card p {
        font-size: 1.1em;
    }
    
    .btn-contact {
        padding: 12px 25px;
        font-size: 1em;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-mid), var(--color-gradient-end));
    margin: 20px;
    padding: 0;
    border-radius: var(--radius-card);
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    overflow: hidden;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    transition: var(--transition);
}

.close-modal:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.modal-body {
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.modal-icon {
    margin-bottom: 20px;
}

.modal-icon i {
    font-size: 4em;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.modal-body h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modal-body p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

.modal-actions {
    margin-top: 30px;
}

.btn-modal-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 15px 30px;
    border-radius: var(--radius-button);
    font-weight: 600;
    font-size: 1.1em;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    width: 80%;
    max-width: 250px;
    margin: 0 auto;
}

.btn-modal-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.btn-modal-whatsapp i {
    font-size: 1.2em;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10px;
        width: 95%;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
    
    .modal-icon i {
        font-size: 3em;
    }
    
    .modal-body h2 {
        font-size: 2em;
    }
    
    .modal-body p {
        font-size: 1.1em;
    }
    
    .btn-modal-whatsapp {
        padding: 12px 25px;
        font-size: 1em;
    }
}