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

/* Bloquear scroll horizontal */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Garantir que todos os containers respeitem a largura */
.container, 
[class*="container-"] {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

/* Social Proof Section */
.social-proof {
    text-align: center;
    margin-bottom: 30px;
}

.notification-bubble {
    background: white;
    border-radius: 25px;
    padding: 15px 25px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.profile-pics {
    display: flex;
    gap: -5px;
}

.profile-pic {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-pic:first-child {
    margin-left: 0;
}

.profile-pic:hover {
    transform: scale(1.1);
    z-index: 10;
    position: relative;
}

.social-text {
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

/* Main Headline */
.main-headline {
    text-align: center;
    margin-bottom: 20px;
}

.main-headline h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #333;
    margin-bottom: 20px;
}

.highlight {
    color: #ff6b9d;
}

/* Sub-headline */
.sub-headline {
    text-align: center;
    margin-bottom: 40px;
}

.sub-headline p {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
}

/* Central Section */
.central-section {
    text-align: center;
    margin-bottom: 40px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.main-logo {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

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

/* Bottom Section */
.bottom-section {
    text-align: center;
    margin-bottom: 40px;
}

.bottom-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

/* Call to Action */
.cta-section {
    text-align: center;
    margin-bottom: 40px;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.6);
}

/* Background Elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bg-text {
    position: absolute;
    color: rgba(0, 0, 0, 0.05);
    font-size: 2rem;
    font-weight: 700;
    transform: rotate(-15deg);
    opacity: 0.3;
}

.bg-text:nth-child(1) {
    top: 10%;
    left: 5%;
    font-size: 1.5rem;
}

.bg-text:nth-child(2) {
    top: 20%;
    right: 10%;
    font-size: 2.5rem;
}

.bg-text:nth-child(3) {
    top: 40%;
    left: 8%;
    font-size: 1.8rem;
}

.bg-text:nth-child(4) {
    top: 60%;
    right: 15%;
    font-size: 2rem;
}

.bg-text:nth-child(5) {
    top: 70%;
    left: 12%;
    font-size: 1.6rem;
}

.bg-text:nth-child(6) {
    top: 80%;
    right: 8%;
    font-size: 1.4rem;
}

.bg-text:nth-child(7) {
    top: 30%;
    left: 20%;
    font-size: 1.2rem;
}

/* Second Container - Pack Toque Viral */
.container-2 {
    background: #ff6b9d;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.pack-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Problem Section */
.problem-section {
    margin-bottom: 40px;
}

.algorithm-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
}

.normal-text {
    font-size: 1.2rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin: 5px 0;
    display: inline;
}

.highlighted-text {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 5px 0;
    display: inline;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlighted-text.green {
    color: #4CAF50;
}

.highlighted-text.yellow {
    color: #FFEB3B;
}

.highlighted-text.red {
    color: #F44336;
}

.highlighted-text.large {
    font-size: 1.4rem;
}

/* Transition Section */
.transition-section {
    margin: 50px 0;
}

.transition-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFEB3B;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.product-name h2 {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    margin: 10px 0;
    line-height: 0.9;
}

/* Product Details */
.product-details {
    margin: 40px 0;
}

.detail-text {
    font-size: 1.2rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin: 8px 0;
}

/* CTA Section 2 */
.cta-section-2 {
    margin-top: 50px;
    text-align: center;
    display: block;
}

.cta-button-2 {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    display: inline-block;
    position: relative;
    z-index: 10;
}

.cta-button-2:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.6);
    background: #45a049;
}

/* Debug - Garantir visibilidade do botão */
.cta-button-2 {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    min-width: 150px !important;
    min-height: 40px !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-headline h1 {
        font-size: 1.8rem;
    }
    
    .viral-touch h2 {
        font-size: 2.5rem;
    }
    
    .phones-container {
        gap: 15px;
    }
    
    .phone {
        width: 100px;
        height: 170px;
    }
    
    .story-text {
        font-size: 10px;
    }
    
    .bottom-section h3 {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    /* Second Container Responsive */
    .container-2 {
        padding: 40px 15px;
    }
    
    .algorithm-text {
        font-size: 1.2rem;
    }
    
    .normal-text, .highlighted-text {
        font-size: 1rem;
    }
    
    .highlighted-text.large {
        font-size: 1.2rem;
    }
    
    .transition-text {
        font-size: 1.5rem;
    }
    
    .product-name h2 {
        font-size: 3rem;
    }
    
    .cta-button-2 {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .main-headline h1 {
        font-size: 1.5rem;
    }
    
    .viral-touch h2 {
        font-size: 2rem;
    }
    
    .phones-container {
        gap: 10px;
    }
    
    .phone {
        width: 80px;
        height: 140px;
    }
    
    .story-text {
        font-size: 8px;
    }
    
    .notification-bubble {
        flex-direction: column;
        gap: 10px;
    }
    
    .profile-pics {
        justify-content: center;
    }
    
    /* Second Container Mobile */
    .container-2 {
        padding: 30px 10px;
    }
    
    .algorithm-text {
        font-size: 1rem;
    }
    
    .normal-text, .highlighted-text {
        font-size: 0.9rem;
    }
    
    .highlighted-text.large {
        font-size: 1rem;
    }
    
    .transition-text {
        font-size: 1.2rem;
    }
    
    .product-name h2 {
        font-size: 2.5rem;
    }
    
    .cta-button-2 {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

/* Third Container - Todos os Nichos */
.container-3 {
    background: #ff6b9d;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

/* Top Banner */
.top-banner {
    text-align: center;
    margin-bottom: 30px;
}

.banner-text {
    background: white;
    padding: 20px 40px;
    border-radius: 0;
    display: block;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0;
    text-align: center;
    box-sizing: border-box;
}

.banner-line-1 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.2;
}

.banner-line-2 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ff6b9d;
    line-height: 1.2;
}

/* Main Content Area */
.main-content-area {
    background: white;
    border-radius: 30px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    max-width: 800px;
    margin: 0 auto;
}

/* Title Section */
.title-section {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 30px;
}

.viral-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Brush Script MT', cursive;
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Snippets */
.snippet {
    padding: 15px;
    border-radius: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 60px;
    justify-content: center;
}

/* Typography Classes */
.pink-cursive {
    color: #ff6b9d;
    font-family: 'Brush Script MT', cursive;
    font-size: 1.2rem;
    font-weight: 600;
}

.grey-text {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.white-bold {
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
}

.white-text {
    color: white;
    font-size: 1rem;
}

.white-cursive {
    color: white;
    font-family: 'Brush Script MT', cursive;
    font-size: 1.1rem;
}

.white-small {
    color: white;
    font-size: 0.9rem;
}

.pink-bold {
    color: #ff6b9d;
    font-weight: 800;
    font-size: 1.2rem;
}

.pink-bold-large {
    color: #ff6b9d;
    font-weight: 800;
    font-size: 1.4rem;
}

.white-bold-large {
    color: white;
    font-weight: 800;
    font-size: 1.3rem;
}

.orange-bold {
    color: #ff8c00;
    font-weight: 800;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.green-cursive {
    color: #4CAF50;
    font-family: 'Brush Script MT', cursive;
    font-size: 1.1rem;
}

.underlined {
    text-decoration: underline;
    text-decoration-color: #ff6b9d;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.heart {
    font-size: 1.2rem;
    margin: 0 5px;
}

.sparkle {
    font-size: 1.2rem;
    margin-right: 5px;
}

.cat {
    font-size: 1.2rem;
    margin-left: 5px;
}

/* Specific Snippet Styles */
.academia-snippet {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    grid-column: span 1;
}

.bem-pago-snippet {
    background: linear-gradient(135deg, #667eea, #764ba2);
    grid-column: span 1;
}

.unhas-snippet {
    background: #2c2c2c;
    grid-column: span 1;
}

.speech-bubble {
    background: #444;
    padding: 10px 15px;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #444;
}

.agenda-snippet {
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
    grid-column: span 1;
}

.autocuidado-snippet {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    grid-column: span 1;
}

.saude-snippet {
    background: linear-gradient(135deg, #d299c2, #fef9d7);
    grid-column: span 1;
}

.horario-snippet {
    background: linear-gradient(135deg, #89f7fe, #66a6ff);
    grid-column: span 1;
}

.cafe-snippet {
    background: linear-gradient(135deg, #fdbb2d, #22c1c3);
    grid-column: span 1;
}

.dieta-snippet {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    grid-column: span 1;
}

.treino-snippet {
    background: linear-gradient(135deg, #667eea, #764ba2);
    grid-column: span 1;
}

.dignidade-snippet {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    grid-column: span 1;
}

.fitness-snippet {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    grid-column: span 1;
}

.gym-snippet {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    grid-column: span 1;
}

.gatos-snippet {
    background: linear-gradient(135deg, #fa709a, #fee140);
    grid-column: span 1;
}

.momento-snippet {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    grid-column: span 1;
}

.checklist-snippet {
    background: linear-gradient(135deg, #667eea, #764ba2);
    grid-column: span 1;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checklist-item {
    color: white;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checklist-item.checked::before {
    content: '✅';
    font-size: 1rem;
}

.checklist-item:not(.checked)::before {
    content: '☐';
    font-size: 1rem;
}

.shake-snippet {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    grid-column: span 1;
}

.disciplina-snippet {
    background: transparent;
    grid-column: span 1;
}

.quote-box {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 15px;
    border: 1px solid #ddd;
    text-align: center;
}

.unha-snippet {
    background: linear-gradient(135deg, #667eea, #764ba2);
    grid-column: span 1;
}

.semana-snippet {
    background: linear-gradient(135deg, #fa709a, #fee140);
    grid-column: span 1;
}

/* Todos os Nichos Image */
.todos-nichos-img {
    width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* Responsive Design for Third Container */
@media (max-width: 768px) {
    .container-3 {
        padding: 30px 0;
    }
    
    .main-content-area {
        padding: 25px;
        border-radius: 20px;
        min-height: 500px;
        max-width: 90%;
    }
    
    .banner-text {
        padding: 15px 30px;
        margin: 0;
    }
    
    .banner-line-1 {
        font-size: 1rem;
    }
    
    .banner-line-2 {
        font-size: 1rem;
    }
    
    .todos-nichos-img {
        max-height: 600px;
    }
}

@media (max-width: 480px) {
    .container-3 {
        padding: 20px 0;
    }
    
    .main-content-area {
        padding: 20px;
        border-radius: 15px;
        min-height: 400px;
        max-width: 95%;
    }
    
    .banner-text {
        padding: 12px 20px;
        margin: 0;
    }
    
    .banner-line-1 {
        font-size: 0.9rem;
    }
    
    .banner-line-2 {
        font-size: 0.9rem;
    }
    
    .todos-nichos-img {
        max-height: 400px;
    }
}

/* Fourth Container - Academia */
.container-4 {
    background: #ff6b9d;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

/* Academia Banner */
.academia-banner {
    text-align: center;
    margin-bottom: 0;
    position: absolute;
    top: -10px;
    left: calc(50% - 2px);
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
}

.academia-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ff6b9d;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 12px 25px;
    border-radius: 0;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0;
    white-space: nowrap;
}

/* Academia Content Area */
.academia-content-area {
    background: #2c2c2c;
    border-radius: 30px;
    padding: 50px 40px 40px 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
    border: 20px solid white;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
}

.academia-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

/* Academia Title Section */
.academia-title-section {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 30px;
}

.academia-viral-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Brush Script MT', cursive;
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Academia Snippets */
.academia-snippet {
    padding: 15px;
    border-radius: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 60px;
    justify-content: center;
}

/* Academia Typography Classes */
.academia-pink-cursive {
    color: #ff6b9d;
    font-family: 'Brush Script MT', cursive;
    font-size: 1.2rem;
    font-weight: 600;
}

.academia-pink-cursive-large {
    color: #ff6b9d;
    font-family: 'Brush Script MT', cursive;
    font-size: 1.4rem;
    font-weight: 600;
}

.academia-grey-text {
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 5px;
}

.academia-white-cursive {
    color: white;
    font-family: 'Brush Script MT', cursive;
    font-size: 1.1rem;
}

.academia-white-text {
    color: white;
    font-size: 1rem;
}

.academia-white-bold {
    color: white;
    font-weight: 800;
    font-size: 1rem;
}

.academia-white-bold-large {
    color: white;
    font-weight: 800;
    font-size: 1.3rem;
}

.academia-white-small {
    color: white;
    font-size: 0.9rem;
}

.academia-orange-bold {
    color: #ff8c00;
    font-weight: 800;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.academia-heart {
    font-size: 1.2rem;
    margin: 0 5px;
}

/* Specific Academia Snippet Styles */
.academia-main-snippet {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    grid-column: span 1;
}

.bem-pago-snippet {
    background: linear-gradient(135deg, #667eea, #764ba2);
    grid-column: span 1;
}

.saude-snippet {
    background: linear-gradient(135deg, #d299c2, #fef9d7);
    grid-column: span 1;
}

.dieta-snippet {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    grid-column: span 1;
}

.treino-dieta-snippet {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    grid-column: span 1;
}

.gym-time-snippet {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    grid-column: span 1;
}

.corpo-snippet {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    grid-column: span 1;
}

.treinando-snippet {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    grid-column: span 1;
}

.disciplina-snippet {
    background: linear-gradient(135deg, #667eea, #764ba2);
    grid-column: span 1;
}

.fitness-snippet {
    background: linear-gradient(135deg, #fa709a, #fee140);
    grid-column: span 1;
}

.foco-snippet {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    grid-column: span 1;
}

.malhar-snippet {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    grid-column: span 1;
}

.feito-snippet {
    background: linear-gradient(135deg, #667eea, #764ba2);
    grid-column: span 1;
}

.bora-treino-snippet {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    grid-column: span 1;
}

.checklist-snippet {
    background: linear-gradient(135deg, #667eea, #764ba2);
    grid-column: span 1;
}

.academia-checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.academia-checklist-item {
    color: white;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.academia-checklist-item.checked::before {
    content: '✅';
    font-size: 1rem;
}

.academia-checklist-item:not(.checked)::before {
    content: '☐';
    font-size: 1rem;
}

/* Academia Image */
.academia-image-section {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 30px;
}

.academia-img {
    max-width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* Responsive Design for Fourth Container */
@media (max-width: 768px) {
    .container-4 {
        padding: 30px 0;
    }
    
    .academia-content-area {
        padding: 40px 25px 25px 25px;
        border-radius: 20px;
        max-width: 90%;
        border: 15px solid white;
    }
    
    .academia-banner {
        top: -8px;
        left: calc(50% - 2px);
    }
    
    .academia-title {
        font-size: 1rem;
        padding: 10px 20px;
        white-space: nowrap;
    }
    
    .academia-grid {
        margin-top: 15px;
    }
    
    .academia-viral-title {
        font-size: 2.5rem;
    }
    
    .academia-title {
        font-size: 1.2rem;
        padding: 12px 25px;
    }
    
    .academia-snippet {
        padding: 10px;
        min-height: 50px;
    }
    
    .academia-img {
        max-height: 500px;
    }
}

@media (max-width: 480px) {
    .container-4 {
        padding: 20px 0;
    }
    
    .academia-content-area {
        padding: 35px 20px 20px 20px;
        border-radius: 15px;
        max-width: 95%;
        border: 12px solid white;
    }
    
    .academia-banner {
        top: -6px;
        left: calc(50% - 2px);
    }
    
    .academia-title {
        font-size: 0.9rem;
        padding: 8px 18px;
        white-space: nowrap;
    }
    
    .academia-grid {
        margin-top: 10px;
    }
    
    .academia-viral-title {
        font-size: 2rem;
    }
    
    .academia-title {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .academia-snippet {
        padding: 8px;
        min-height: 40px;
    }
    
    .academia-img {
        max-height: 400px;
    }
}

/* Fifth Container - Dia a Dia */
.container-5 {
    background: #ff6b9d;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

/* Dia Banner */
.dia-banner {
    text-align: center;
    margin-bottom: 0;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: auto;
    min-width: 400px;
}

.dia-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ff6b9d;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 12px 42px;
    border-radius: 0;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}

/* Dia Content Area */
.dia-content-area {
    background: #2c2c2c;
    border-radius: 30px;
    padding: 50px 40px 40px 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
    border: 20px solid white;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
}

.dia-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.dia-img {
    max-width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* Responsive Design for Fifth Container */
@media (max-width: 768px) {
    .container-5 {
        padding: 30px 0;
    }
    
    .dia-content-area {
        padding: 40px 25px 25px 25px;
        border-radius: 20px;
        max-width: 90%;
        border: 15px solid white;
    }
    
    .dia-banner {
        top: -8px;
        left: 50%;
        min-width: 350px;
    }
    
    .dia-title {
        font-size: 1rem;
        padding: 10px 37px;
        white-space: nowrap;
        width: 100%;
        box-sizing: border-box;
    }
    
    .dia-grid {
        margin-top: 15px;
    }
    
    .dia-img {
        max-height: 500px;
    }
}

@media (max-width: 480px) {
    .container-5 {
        padding: 20px 0;
    }
    
    .dia-content-area {
        padding: 35px 20px 20px 20px;
        border-radius: 15px;
        max-width: 95%;
        border: 12px solid white;
    }
    
    .dia-banner {
        top: -6px;
        left: 50%;
        min-width: 300px;
    }
    
    .dia-title {
        font-size: 0.9rem;
        padding: 8px 32px;
        white-space: nowrap;
        width: 100%;
        box-sizing: border-box;
    }
    
    .dia-grid {
        margin-top: 10px;
    }
    
    .dia-img {
        max-height: 400px;
    }
}

/* Sixth Container - Empreendedora */
.container-6 {
    background: #ff6b9d;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

/* Empreendedora Banner */
.empreendedora-banner {
    text-align: center;
    margin-bottom: 0;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: auto;
    min-width: 400px;
}

.empreendedora-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ff6b9d;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 12px 42px;
    border-radius: 0;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}

/* Empreendedora Content Area */
.empreendedora-content-area {
    background: #2c2c2c;
    border-radius: 30px;
    padding: 50px 40px 40px 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
    border: 20px solid white;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
}

.empreendedora-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.empreendedora-img {
    max-width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* Responsive Design for Sixth Container */
@media (max-width: 768px) {
    .container-6 {
        padding: 30px 0;
    }
    
    .empreendedora-content-area {
        padding: 40px 25px 25px 25px;
        border-radius: 20px;
        max-width: 90%;
        border: 15px solid white;
    }
    
    .empreendedora-banner {
        top: -8px;
        left: 50%;
        min-width: 350px;
    }
    
    .empreendedora-title {
        font-size: 1rem;
        padding: 10px 37px;
        white-space: nowrap;
        width: 100%;
        box-sizing: border-box;
    }
    
    .empreendedora-grid {
        margin-top: 15px;
    }
    
    .empreendedora-img {
        max-height: 500px;
    }
}

@media (max-width: 480px) {
    .container-6 {
        padding: 20px 0;
    }
    
    .empreendedora-content-area {
        padding: 35px 20px 20px 20px;
        border-radius: 15px;
        max-width: 95%;
        border: 12px solid white;
    }
    
    .empreendedora-banner {
        top: -6px;
        left: 50%;
        min-width: 300px;
    }
    
    .empreendedora-title {
        font-size: 0.9rem;
        padding: 8px 32px;
        white-space: nowrap;
        width: 100%;
        box-sizing: border-box;
    }
    
    .empreendedora-grid {
        margin-top: 10px;
    }
    
    .empreendedora-img {
        max-height: 400px;
    }
}

/* Seventh Container - Lash e Nail */
.container-7 {
    background: #ff6b9d;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

/* Lash Banner */
.lash-banner {
    text-align: center;
    margin-bottom: 0;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: auto;
    min-width: 400px;
}

.lash-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ff6b9d;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 12px 42px;
    border-radius: 0;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}

/* Lash Content Area */
.lash-content-area {
    background: #2c2c2c;
    border-radius: 30px;
    padding: 50px 40px 40px 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
    border: 20px solid white;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
}

.lash-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.lash-img {
    max-width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* Responsive Design for Seventh Container */
@media (max-width: 768px) {
    .container-7 {
        padding: 30px 0;
    }
    
    .lash-content-area {
        padding: 40px 25px 25px 25px;
        border-radius: 20px;
        max-width: 90%;
        border: 15px solid white;
    }
    
    .lash-banner {
        top: -8px;
        left: 50%;
        min-width: 350px;
    }
    
    .lash-title {
        font-size: 1rem;
        padding: 10px 37px;
        white-space: nowrap;
        width: 100%;
        box-sizing: border-box;
    }
    
    .lash-grid {
        margin-top: 15px;
    }
    
    .lash-img {
        max-height: 500px;
    }
}

@media (max-width: 480px) {
    .container-7 {
        padding: 20px 0;
    }
    
    .lash-content-area {
        padding: 35px 20px 20px 20px;
        border-radius: 15px;
        max-width: 95%;
        border: 12px solid white;
    }
    
    .lash-banner {
        top: -6px;
        left: 50%;
        min-width: 300px;
    }
    
    .lash-title {
        font-size: 0.9rem;
        padding: 8px 32px;
        white-space: nowrap;
        width: 100%;
        box-sizing: border-box;
    }
    
    .lash-grid {
        margin-top: 10px;
    }
    
    .lash-img {
        max-height: 400px;
    }
}

/* Eighth Container - Pets */
.container-8 {
    background: #ff6b9d;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

/* Pets Banner */
.pets-banner {
    text-align: center;
    margin-bottom: 0;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: auto;
    min-width: 400px;
}

.pets-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ff6b9d;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 12px 42px;
    border-radius: 0;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}

/* Pets Content Area */
.pets-content-area {
    background: #2c2c2c;
    border-radius: 30px;
    padding: 50px 40px 40px 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
    border: 20px solid white;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
}

.pets-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.pets-img {
    max-width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* Responsive Design for Eighth Container */
@media (max-width: 768px) {
    .container-8 {
        padding: 30px 0;
    }
    
    .pets-content-area {
        padding: 40px 25px 25px 25px;
        border-radius: 20px;
        max-width: 90%;
        border: 15px solid white;
    }
    
    .pets-banner {
        top: -8px;
        left: 50%;
        min-width: 350px;
    }
    
    .pets-title {
        font-size: 1rem;
        padding: 10px 37px;
        white-space: nowrap;
        width: 100%;
        box-sizing: border-box;
    }
    
    .pets-grid {
        margin-top: 15px;
    }
    
    .pets-img {
        max-height: 500px;
    }
}

@media (max-width: 480px) {
    .container-8 {
        padding: 20px 0;
    }
    
    .pets-content-area {
        padding: 35px 20px 20px 20px;
        border-radius: 15px;
        max-width: 95%;
        border: 12px solid white;
    }
    
    .pets-banner {
        top: -6px;
        left: 50%;
        min-width: 300px;
    }
    
    .pets-title {
        font-size: 0.9rem;
        padding: 8px 32px;
        white-space: nowrap;
        width: 100%;
        box-sizing: border-box;
    }
    
    .pets-grid {
        margin-top: 10px;
    }
    
    .pets-img {
        max-height: 400px;
    }
}

/* Pets CTA Section */
.pets-cta-section {
    text-align: center;
    margin-top: 30px;
    padding: 0 20px;
}

.pets-cta-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    min-width: 300px;
    max-width: 400px;
    width: 100%;
}

.pets-cta-button:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.pets-cta-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* Responsive Design for Pets CTA */
@media (max-width: 768px) {
    .pets-cta-section {
        margin-top: 25px;
        padding: 0 15px;
    }
    
    .pets-cta-button {
        padding: 12px 30px;
        font-size: 1rem;
        min-width: 250px;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .pets-cta-section {
        margin-top: 20px;
        padding: 0 10px;
    }
    
    .pets-cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
        min-width: 200px;
        max-width: 300px;
    }
}

/* Ninth Container - Nichadas e Universais */
.container-9 {
    background: #000000;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.nichadas-universais-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

/* Cards */
.nichadas-card,
.universais-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nichadas-card:hover,
.universais-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.card-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff6b9d;
    text-align: center;
    margin: 0 0 25px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.card-list li {
    font-size: 1rem;
    color: #333;
    padding: 8px 12px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
}

.card-list li:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.card-list li.highlight-item {
    color: #ff6b9d;
    background: #fff0f5;
    font-weight: 600;
}

/* Final CTA Section */
.final-cta-section {
    text-align: center;
    margin-top: 20px;
    padding: 0 20px;
}

.final-cta-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 15px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    min-width: 350px;
    max-width: 450px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.final-cta-button:hover {
    background: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

.final-cta-button:active {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.button-line-1,
.button-line-2 {
    display: block;
    line-height: 1.2;
}

/* Responsive Design for Ninth Container */
@media (max-width: 768px) {
    .container-9 {
        padding: 40px 15px;
    }
    
    .nichadas-universais-content {
        gap: 25px;
    }
    
    .nichadas-card,
    .universais-card {
        padding: 25px;
        max-width: 100%;
    }
    
    .card-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .card-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .card-list li {
        font-size: 0.9rem;
        padding: 10px;
    }
    
    .final-cta-button {
        padding: 15px 40px;
        font-size: 1.1rem;
        min-width: 280px;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .container-9 {
        padding: 30px 10px;
    }
    
    .nichadas-universais-content {
        gap: 20px;
    }
    
    .nichadas-card,
    .universais-card {
        padding: 20px;
    }
    
    .card-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .card-list li {
        font-size: 0.85rem;
        padding: 8px;
    }
    
    .final-cta-button {
        padding: 12px 30px;
        font-size: 1rem;
        min-width: 250px;
        max-width: 300px;
        letter-spacing: 1px;
    }
}

/* Tenth Container - Stories */
.container-10 {
    background: #000000;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.stories-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

/* Stories Message */
.stories-message {
    text-align: center;
    max-width: 800px;
}

.message-text {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.white-text {
    color: #ffffff;
}

.red-text {
    color: #ff4444;
    text-shadow: 2px 2px 4px rgba(255, 68, 68, 0.3);
}

.yellow-text {
    color: #ffdd44;
    text-shadow: 2px 2px 4px rgba(255, 221, 68, 0.3);
}

.green-text {
    color: #44ff44;
    text-shadow: 2px 2px 4px rgba(68, 255, 68, 0.3);
}

/* Stories Grid */
.stories-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.stories-img {
    max-width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stories-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

/* Responsive Design for Tenth Container */
@media (max-width: 768px) {
    .container-10 {
        padding: 40px 15px;
    }
    
    .stories-content {
        gap: 30px;
    }
    
    .message-text {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .stories-img {
        max-height: 600px;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .container-10 {
        padding: 30px 10px;
    }
    
    .stories-content {
        gap: 25px;
    }
    
    .message-text {
        font-size: 1.2rem;
        line-height: 1.5;
    }
    
    .stories-img {
        max-height: 500px;
        border-radius: 10px;
    }
}

/* Eleventh Container - Stories 2 */
.container-11 {
    background: #000000;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.stories2-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stories2-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
}

.stories2-img {
    max-width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stories2-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}


/* Responsive Design for Eleventh Container */
@media (max-width: 768px) {
    .container-11 {
        padding: 40px 15px;
    }
    
    .stories2-img {
        max-height: 600px;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .container-11 {
        padding: 30px 10px;
    }
    
    .stories2-img {
        max-height: 500px;
        border-radius: 10px;
    }
}

/* Twelfth Container - Stories 3 (Limpeza) */
.container-12 {
    background: #000000;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.stories3-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.stories3-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
}

.stories3-img {
    max-width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stories3-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}


/* CTA Section */
.stories3-cta-section {
    text-align: center;
    margin-top: 20px;
    padding: 0 20px;
}

.stories3-cta-button {
    background: #ff6b9d;
    color: white;
    border: none;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 15px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
    min-width: 350px;
    max-width: 450px;
    width: 100%;
}

.stories3-cta-button:hover {
    background: #ff8fab;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

.stories3-cta-button:active {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.3);
}

/* Responsive Design for Twelfth Container */
@media (max-width: 768px) {
    .container-12 {
        padding: 40px 15px;
    }
    
    .stories3-content {
        gap: 30px;
    }
    
    .stories3-img {
        max-height: 600px;
        border-radius: 15px;
    }
    
    .stories3-cta-button {
        padding: 15px 40px;
        font-size: 1.1rem;
        min-width: 280px;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .container-12 {
        padding: 30px 10px;
    }
    
    .stories3-content {
        gap: 25px;
    }
    
    .stories3-img {
        max-height: 500px;
        border-radius: 10px;
    }
    
    .stories3-cta-button {
        padding: 12px 30px;
        font-size: 1rem;
        min-width: 250px;
        max-width: 300px;
        letter-spacing: 1px;
    }
}

/* Thirteenth Container - Stories Prontos Bonus */
.container-13 {
    background: white;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.bonus-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Top Section */
.bonus-top-section {
    margin-bottom: 40px;
}

.bonus-intro {
    font-size: 1.2rem;
    color: #ff6b9d;
    margin-bottom: 10px;
    font-weight: 500;
}

.bonus-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0;
    letter-spacing: 2px;
}

/* Main Banner Section */
.bonus-banner {
    background: #ff6b9d;
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.3);
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

/* Stories Mini Grid */
.stories-mini-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.bonus-img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}


/* Description Text */
.bonus-description {
    margin: 40px 0 30px 0;
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

.bonus-description p {
    margin: 5px 0;
}

/* Price Section */
.bonus-price-section {
    margin-top: 30px;
}

.old-price {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 10px;
    text-decoration: line-through;
    text-decoration-color: #ff4444;
    text-decoration-thickness: 2px;
}

.new-price {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0;
    letter-spacing: 3px;
}


/* Responsive Design for Thirteenth Container */
@media (max-width: 768px) {
    .container-13 {
        padding: 40px 15px;
    }
    
    .bonus-title {
        font-size: 2.5rem;
    }
    
    .bonus-banner {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .banner-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .bonus-img {
        max-height: 500px;
        border-radius: 12px;
    }
    
    
    .bonus-description {
        font-size: 1rem;
        margin: 30px 0 25px 0;
    }
    
    .new-price {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .container-13 {
        padding: 30px 10px;
    }
    
    .bonus-title {
        font-size: 2rem;
    }
    
    .bonus-banner {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .banner-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .bonus-img {
        max-height: 400px;
        border-radius: 10px;
    }
    
    
    .bonus-description {
        font-size: 0.9rem;
        margin: 25px 0 20px 0;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
}

/* Fourteenth Container - Capas Para Destaque */
.container-14 {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.capas-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Top Section */
.capas-top-section {
    margin-bottom: 40px;
}

.capas-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
    letter-spacing: 2px;
}

/* Main Banner Section */
.capas-banner {
    background: #ff6b9d;
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.3);
}

/* Icons Grid */
.icons-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    background: #f5f5dc;
    padding: 30px;
    border-radius: 20px;
}

.capas-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capas-img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}


/* Description Text */
.capas-description {
    margin: 40px 0 30px 0;
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

.capas-description p {
    margin: 5px 0;
}

/* Price Section */
.capas-price-section {
    margin-top: 30px;
}

/* Responsive Design for Fourteenth Container */
@media (max-width: 768px) {
    .container-14 {
        padding: 40px 15px;
    }
    
    .capas-title {
        font-size: 2.5rem;
    }
    
    .capas-banner {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .capas-img {
        max-height: 400px;
        border-radius: 12px;
    }
    
    
    .capas-description {
        font-size: 1rem;
        margin: 30px 0 25px 0;
    }
    
    .new-price {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .container-14 {
        padding: 30px 10px;
    }
    
    .capas-title {
        font-size: 2rem;
    }
    
    .capas-banner {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .capas-img {
        max-height: 350px;
        border-radius: 10px;
    }
    
    
    .capas-description {
        font-size: 0.9rem;
        margin: 25px 0 20px 0;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
}

/* Fifteenth Container - Cursos de Social Media e Influencer */
.container-15 {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.cursos-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Main Banner Section */
.cursos-banner {
    background: #ff6b9d;
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.3);
}

/* Header Section */
.cursos-header {
    margin-bottom: 40px;
}

.cursos-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0 0 10px 0;
    letter-spacing: 2px;
}

.cursos-subtitle {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
    letter-spacing: 2px;
}

/* Main Image Section */
.cursos-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cursos-main-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cursos-main-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}


/* Description Text */
.cursos-description {
    margin: 40px 0 30px 0;
    text-align: left;
}

.cursos-description p {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}

/* Price Section */
.cursos-price-section {
    margin-top: 30px;
}

/* Responsive Design for Fifteenth Container */
@media (max-width: 768px) {
    .container-15 {
        padding: 40px 15px;
    }
    
    .cursos-banner {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .cursos-title {
        font-size: 2.5rem;
    }
    
    .cursos-subtitle {
        font-size: 2.2rem;
    }
    
    .cursos-main-img {
        max-height: 400px;
        border-radius: 15px;
    }
    
    .cursos-description p {
        font-size: 1rem;
    }
    
    .new-price {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .container-15 {
        padding: 30px 10px;
    }
    
    .cursos-banner {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .cursos-title {
        font-size: 2rem;
    }
    
    .cursos-subtitle {
        font-size: 1.8rem;
    }
    
    .cursos-main-img {
        max-height: 350px;
        border-radius: 12px;
    }
    
    .cursos-description p {
        font-size: 0.9rem;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
}

/* Sixteenth Container - Posts e Carrosséis Editáveis no Canva */
.container-16 {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.canva-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Main Banner Section */
.canva-banner {
    background: #ff6b9d;
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.3);
    margin-bottom: 30px;
}

/* Header Section */
.canva-header {
    margin-bottom: 40px;
}

.canva-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0 0 10px 0;
    letter-spacing: 2px;
}

.canva-subtitle {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
    letter-spacing: 2px;
}

/* Main Image Section */
.canva-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.canva-main-img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.canva-main-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Description Text */
.canva-description {
    margin: 40px 0 30px 0;
    text-align: left;
}

.canva-description p {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
    margin: 5px 0;
}

/* Price Section */
.canva-price-section {
    margin-top: 30px;
}

/* Call to Action Section */
.canva-cta-section {
    text-align: center;
    margin-top: 20px;
}

.canva-cta-button {
    background: #ff6b9d;
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.6);
    transition: all 0.3s ease;
    margin-bottom: 10px;
    display: inline-block;
}

.canva-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.8);
    background: #ff5a8a;
}

.canva-cta-button:active {
    transform: translateY(-1px);
}


/* Responsive Design for Sixteenth Container */
@media (max-width: 768px) {
    .container-16 {
        padding: 40px 15px;
    }
    
    .canva-banner {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .canva-title {
        font-size: 2.5rem;
    }
    
    .canva-subtitle {
        font-size: 2.2rem;
    }
    
    .canva-main-img {
        max-height: 550px;
        border-radius: 15px;
    }
    
    .canva-description p {
        font-size: 1rem;
    }
    
    .canva-cta-button {
        padding: 18px 35px;
        font-size: 1.3rem;
    }
    
    
    .new-price {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .container-16 {
        padding: 30px 10px;
    }
    
    .canva-banner {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .canva-title {
        font-size: 2rem;
    }
    
    .canva-subtitle {
        font-size: 1.8rem;
    }
    
    .canva-main-img {
        max-height: 450px;
        border-radius: 12px;
    }
    
    .canva-description p {
        font-size: 0.9rem;
    }
    
    .canva-cta-button {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
    
    
    .new-price {
        font-size: 2.5rem;
    }
}

/* Seventeenth Container - Bônus Grátis */
.container-17 {
    background: #000000;
    padding: 60px 20px;
    text-align: center;
}

.bonus-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section */
.bonus-header {
    margin-bottom: 40px;
    text-align: center;
}

.bonus-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin: 0;
    letter-spacing: 2px;
}

.bonus-subtitle {
    font-size: 2.8rem;
    font-weight: 800;
    color: #4CAF50;
    letter-spacing: 2px;
}

.bonus-limited {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin: 20px 0 0 0;
    letter-spacing: 2px;
}

/* Bônus List Section */
.bonus-list-section {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    border-radius: 30px;
    padding: 25px;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.bonus-list-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.bonus-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.bonus-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.bonus-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bonus-item-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    text-align: left;
    flex: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.bonus-item-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ff4444;
    text-align: right;
    margin-left: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
}

.bonus-item-price::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    width: 3px;
    height: 20px;
    background: #ff4444;
    transform: translateY(-50%);
    border-radius: 2px;
}

.bonus-total {
    margin-top: 20px;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.bonus-total::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: 18px;
    pointer-events: none;
}

.total-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.total-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ff4444;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.total-value::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff4444, #ff6666);
    border-radius: 2px;
}

/* Responsive Design for Seventeenth Container */
@media (max-width: 768px) {
    .container-17 {
        padding: 40px 15px;
    }
    
    .bonus-main-title {
        font-size: 2.2rem;
    }
    
    .bonus-subtitle {
        font-size: 2.2rem;
    }
    
    .bonus-limited {
        font-size: 1rem;
    }
    
    .bonus-list-section {
        padding: 20px 20px;
    }
    
    .bonus-item-name {
        font-size: 1.1rem;
    }
    
    .bonus-item-price {
        font-size: 1.3rem;
    }
    
    .total-text {
        font-size: 1.5rem;
    }
    
    .total-value {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container-17 {
        padding: 30px 10px;
    }
    
    .bonus-main-title {
        font-size: 1.8rem;
    }
    
    .bonus-subtitle {
        font-size: 1.8rem;
    }
    
    .bonus-limited {
        font-size: 0.9rem;
    }
    
    .bonus-list-section {
        padding: 18px 15px;
    }
    
    .bonus-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .bonus-item-name {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .bonus-item-price {
        font-size: 1.2rem;
        margin-left: 0;
    }
    
    .total-text {
        font-size: 1.3rem;
    }
    
    .total-value {
        font-size: 1.6rem;
    }
}

/* Container 18 - Economize e Barreiras */
.container-18 {
    background: #000;
    padding: 60px 40px;
    text-align: center;
}

.economize-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Upper Text Section */
.economize-text-section {
    margin-bottom: 40px;
}

.economize-line-1,
.economize-line-2,
.economize-line-3,
.economize-line-4,
.economize-line-5,
.economize-line-6,
.economize-line-7,
.economize-line-8 {
    margin: 0 0 8px 0;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1px;
}

.economize-line-3 {
    margin-bottom: 15px;
}

.economize-line-4,
.economize-line-5 {
    margin-bottom: 12px;
}

.economize-line-6,
.economize-line-7,
.economize-line-8 {
    margin-bottom: 8px;
}

/* Text Colors */
.white-text {
    color: white;
}

.green-text {
    color: #4CAF50;
}

.yellow-text {
    color: #FFD700;
}

/* Lower Pink Section */
.barreiras-section {
    background: #ff6b9d;
    border-radius: 20px;
    padding: 30px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.barreiras-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-align: left;
}

.barreiras-item:last-child {
    margin-bottom: 0;
}

.barreiras-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-right: 20px;
    min-width: 50px;
}

.barreiras-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container-18 {
        padding: 40px 20px;
    }
    
    .economize-line-1,
    .economize-line-2,
    .economize-line-3,
    .economize-line-4,
    .economize-line-5,
    .economize-line-6,
    .economize-line-7,
    .economize-line-8 {
        font-size: 1.8rem;
    }
    
    .barreiras-section {
        padding: 25px 20px;
    }
    
    .barreiras-number {
        font-size: 1.5rem;
        margin-right: 15px;
        min-width: 40px;
    }
    
    .barreiras-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .container-18 {
        padding: 30px 15px;
    }
    
    .economize-line-1,
    .economize-line-2,
    .economize-line-3,
    .economize-line-4,
    .economize-line-5,
    .economize-line-6,
    .economize-line-7,
    .economize-line-8 {
        font-size: 1.5rem;
    }
    
    .barreiras-section {
        padding: 20px 15px;
    }
    
    .barreiras-number {
        font-size: 1.3rem;
        margin-right: 12px;
        min-width: 35px;
    }
    
    .barreiras-text {
        font-size: 1.1rem;
    }
}

/* Container 19 - Plano de Preços */
.container-19 {
    background: #000;
    padding: 60px 40px 100px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-content {
    max-width: 500px;
    width: 100%;
    overflow: visible;
}

.pricing-card {
    background: #000;
    border: 2px solid #ff6b9d;
    border-radius: 25px;
    padding: 0;
    position: relative;
    overflow: visible;
    min-height: 600px;
}

/* Header Banner */
.pricing-header {
    background: #ff6b9d;
    padding: 20px;
    text-align: center;
    border-radius: 23px 23px 0 0;
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Pricing Details */
.pricing-details {
    padding: 30px 25px 20px 25px;
    text-align: center;
}

.old-price-line {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.old-price-text {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 500;
}

.old-price-value {
    font-size: 1.4rem;
    color: #ccc;
    font-weight: 600;
    text-decoration: line-through;
    text-decoration-color: #ff6b9d;
    text-decoration-thickness: 3px;
}

.main-price-line {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.main-price-prefix {
    font-size: 1.8rem;
    color: white;
    font-weight: 800;
}

.main-price-value {
    font-size: 2.5rem;
    color: #ff6b9d;
    font-weight: 800;
}

.cash-price-line {
    margin-bottom: 10px;
}

.cash-price-text {
    font-size: 1.3rem;
    color: white;
    font-weight: 600;
}

/* Features List */
.features-list {
    padding: 0 25px 20px 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    text-align: left;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-bullet {
    font-size: 1.2rem;
    color: #ff6b9d;
    margin-right: 12px;
    font-weight: bold;
}

.feature-text {
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
}

/* Economic Badge */
.economic-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b9d;
    padding: 8px 20px;
    border-radius: 15px;
    z-index: 9999;
    white-space: nowrap;
}

.badge-text {
    font-size: 0.9rem;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Button */
.pricing-cta {
    padding: 20px 0 0 0;
    text-align: center;
}

.pricing-button {
    width: 100%;
    background: #ff6b9d;
    color: white;
    border: none;
    padding: 18px 25px;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-button:hover {
    background: #ff5a8a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

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

.pricing-button {
    animation: pulse 2s infinite;
}

/* Animation Hint */
.animation-hint {
    text-align: center;
    padding: 10px 25px 20px 25px;
}

.hint-text {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container-19 {
        padding: 40px 20px 80px 20px;
    }
    
    .pricing-title {
        font-size: 1.6rem;
    }
    
    .main-price-prefix {
        font-size: 1.5rem;
    }
    
    .main-price-value {
        font-size: 2.2rem;
    }
    
    .cash-price-text {
        font-size: 1.2rem;
    }
    
    .feature-text {
        font-size: 1rem;
    }
    
    .pricing-button {
        font-size: 1.2rem;
        padding: 16px 20px;
    }
}

@media (max-width: 480px) {
    .container-19 {
        padding: 30px 15px 70px 15px;
    }
    
    .pricing-card {
        border-radius: 20px;
        min-height: 550px;
    }
    
    .pricing-header {
        padding: 15px;
        border-radius: 18px 18px 0 0;
    }
    
    .pricing-title {
        font-size: 1.4rem;
    }
    
    .pricing-details {
        padding: 25px 20px 15px 20px;
    }
    
    .main-price-prefix {
        font-size: 1.3rem;
    }
    
    .main-price-value {
        font-size: 2rem;
    }
    
    .cash-price-text {
        font-size: 1.1rem;
    }
    
    .features-list {
        padding: 0 20px 15px 20px;
    }
    
    .feature-text {
        font-size: 0.95rem;
    }
    
    .pricing-cta {
        padding: 20px 0 0 0;
    }
    
    .pricing-button {
        font-size: 1.1rem;
        padding: 15px 18px;
    }
    
    .economic-badge {
        bottom: -15px;
        padding: 6px 15px;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
}

/* Animação de Pulsação para o Botão */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 157, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 107, 157, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 157, 0);
    }
}

/* Container 20 - Plano Premium */
.container-20 {
    background: #000;
    padding: 60px 40px 80px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.premium-content {
    max-width: 500px;
    width: 100%;
    overflow: visible;
}

.premium-card {
    background: #000;
    border: 2px solid #ff6b9d;
    border-radius: 25px;
    padding: 0;
    position: relative;
    overflow: visible;
}

/* Header */
.premium-header {
    background: #ffd700;
    padding: 20px;
    border-radius: 23px 23px 0 0;
    text-align: center;
}

.premium-title {
    font-size: 1.4rem;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Pricing Details */
.premium-pricing {
    padding: 25px 20px 15px 20px;
    text-align: center;
}

.original-price {
    margin-bottom: 10px;
}

.price-text {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.installment-price {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.installment-text {
    font-size: 1.2rem;
    color: white;
}

.installment-number {
    font-size: 1.4rem;
    color: #ff6b9d;
    font-weight: 800;
}

.installment-value {
    font-size: 2.2rem;
    color: #ff6b9d;
    font-weight: 800;
}

.cash-price {
    margin-bottom: 15px;
}

.cash-text {
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
}

/* Features List */
.premium-features {
    padding: 0 20px 15px 20px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.feature-bullet {
    color: #666;
    margin-right: 10px;
    font-size: 1.2rem;
}

.feature-text {
    font-size: 1rem;
    color: white;
    font-weight: 500;
}

/* Bonus Section */
.premium-bonus {
    padding: 0 20px 15px 20px;
}

.bonus-title {
    font-size: 1.2rem;
    color: white;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-align: center;
}

.bonus-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left !important;
}



.bonus-text {
    font-size: 1rem;
    color: white;
    font-weight: 500;
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
}

/* Forçar alinhamento à esquerda para todos os itens da lista */
.bonus-item {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin-bottom: 8px;
    text-align: left !important;
}

.bonus-item span {
    text-align: left !important;
}

/* Regras específicas para cada item da lista */
.bonus-item:nth-child(1) .bonus-text,
.bonus-item:nth-child(3) .bonus-text,
.bonus-item:nth-child(4) .bonus-text,
.bonus-item:nth-child(5) .bonus-text {
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    width: 100% !important;
    display: block !important;
}


/* Best Seller Badge */
.best-seller-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.best-seller-badge .badge-text {
    background: #ffd700;
    color: white;
    padding: 8px 20px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    white-space: nowrap;
}

/* CTA Button */
.premium-cta {
    padding: 20px 0 0 0;
    text-align: center;
}

.premium-button {
    width: 100%;
    background: #ff6b9d;
    color: white;
    border: none;
    padding: 18px 25px;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.premium-button:hover {
    background: #ff5a8a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.premium-button:active {
    transform: translateY(0);
}

/* Animation Hint */
.premium-animation-hint {
    text-align: center;
    padding: 10px 25px 20px 25px;
}

.premium-animation-hint .hint-text {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container-20 {
        padding: 40px 20px 70px 20px;
    }
    
    .premium-title {
        font-size: 1.2rem;
    }
    
    .installment-value {
        font-size: 2rem;
    }
    
    .premium-button {
        font-size: 1.1rem;
        padding: 15px 18px;
    }
}

@media (max-width: 480px) {
    .container-20 {
        padding: 30px 15px 60px 15px;
    }
    
    .premium-card {
        border-radius: 20px;
    }
    
    .premium-header {
        padding: 15px;
        border-radius: 18px 18px 0 0;
    }
    
    .premium-title {
        font-size: 1.1rem;
    }
    
    .premium-pricing {
        padding: 20px 15px 10px 15px;
    }
    
    .installment-value {
        font-size: 1.8rem;
    }
    
    .premium-features,
    .premium-bonus {
        padding: 0 15px 10px 15px;
    }
    
    .feature-text,
    .bonus-text {
        font-size: 0.9rem;
    }
    
    .premium-button {
        font-size: 1rem;
        padding: 14px 16px;
    }
}

/* Container 21 - Feedbacks */
.container-21 {
    background: #000;
    padding: 80px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feedback-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.feedback-title {
    font-size: 2.5rem;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.feedback-subtitle {
    font-size: 2.8rem;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    background: linear-gradient(45deg, #fff, #ff6b9d, #fff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Feedback Images */
.feedback-images {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
    align-items: center;
}

.feedback-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback-img:nth-child(2),
.feedback-img:nth-child(3) {
    max-width: 150%;
    width: 150%;
    display: block;
    margin: 0 auto;
    position: relative;
    left: 50%;
    transform: translateX(calc(-50% + 2px));
}

.feedback-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.feedback-img:nth-child(2):hover,
.feedback-img:nth-child(3):hover {
    transform: translateX(calc(-50% + 2px)) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.feedback-img:nth-child(3) {
    transform: translateX(calc(-50% + 3px));
}

.feedback-img:nth-child(3):hover {
    transform: translateX(calc(-50% + 3px)) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container-21 {
        padding: 60px 20px;
    }
    
    .feedback-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .feedback-subtitle {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .feedback-images {
        gap: 25px;
        margin-top: 40px;
    }
    
    .feedback-img:nth-child(2),
    .feedback-img:nth-child(3) {
        max-width: 130%;
        width: 130%;
        left: 50%;
        transform: translateX(calc(-50% + 2px));
    }
    
    .feedback-img:nth-child(3) {
        transform: translateX(calc(-50% + 3px));
    }
}

@media (max-width: 480px) {
    .container-21 {
        padding: 40px 15px;
    }
    
    .feedback-title {
        font-size: 1.6rem;
        letter-spacing: 0.5px;
    }
    
    .feedback-subtitle {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }
    
    .feedback-images {
        gap: 20px;
        margin-top: 30px;
    }
    
    .feedback-img:nth-child(2),
    .feedback-img:nth-child(3) {
        max-width: 120%;
        width: 120%;
        left: 50%;
        transform: translateX(calc(-50% + 2px));
    }
    
    .feedback-img:nth-child(3) {
        transform: translateX(calc(-50% + 3px));
    }
}
