:root {
    --color-primary: #dd004a;
    --color-secondary: #001837;
    --color-white: #ffffff;
    --color-gray: #f5f5f5;
    --color-accent: #001837;
    --color-accent-dark: #001837;
}

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

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--color-secondary);
}

section {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--color-secondary);
    overflow-x: hidden;
    width: 100%;
}

.container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 100%;
    box-sizing: border-box;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 100px 0 20px;
    background: url('../photo/bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: column;
}

.hero .container {
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hero-content-img {
    position: relative;
    height: 250px;
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-img img {
    position: absolute;
    width: 300px;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-content-img h1 {
    position: absolute;
    background: transparent;
    backdrop-filter: blur(5px);
    border-radius: 10px;
    top: 110%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 56px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgb(255, 255, 255);
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-content-img h1 span {
    color: var(--color-primary);
}

.hero-content p {
    width: 100%;
    max-width: 800px;
    font-size: 20px;
    margin-top: 50px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid var(--color-primary);
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--color-primary);
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.hero-price {
    font-size: 20px;
    font-weight: 500;
}

.hero-price .old {
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 10px;
}

.hero-price .highlight {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 28px;
}

/* Benefits Section */
.benefits {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.benefits .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.benefits .bg-img img {
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    max-width: none;
}

.benefits .container {
    position: relative;
    z-index: 1;
}

.benefits h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--color-primary);
}

.benefits-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.benefit-card {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 24px;
}

.benefit-card p {
    color: var(--color-white);
    font-size: 16px;
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background: var(--color-secondary);
    position: relative;
    overflow: hidden;
}

.pricing .bg-img {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.pricing .bg-img img {
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing h2 {
    text-align: center;
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    align-items: flex-start;
}

.price-card {
    background: var(--color-white);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

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

.price-card.featured {
    border: 3px solid var(--color-accent);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(221, 0, 74, 0.2);
}

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

.popular-tag, .premium-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1;
}

.popular-tag {
    background: var(--color-primary);
    color: var(--color-white);
}

.premium-tag {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: var(--color-text);
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
}

.price-header h3 {
    color: var(--color-white);
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Título Basic */
.price-card .price-header h3 {
    background: linear-gradient(45deg, 
        var(--color-primary) 0%, 
        var(--color-accent) 50%,
        var(--color-primary) 100%
    );
}

/* Título Plus */
.price-card.featured .price-header h3 {
    background: linear-gradient(45deg, 
        #001837 0%, 
        #003366 25%,
        #004B8F 50%,
        #003366 75%,
        #001837 100%
    );
    box-shadow: 0 5px 15px rgba(0, 24, 55, 0.2);
}

/* Título Premium */
.price-card.premium .price-header h3 {
    background: linear-gradient(45deg, 
        #FFD700 0%, 
        #FFA500 25%,
        #FF8C00 50%,
        #FFA500 75%,
        #FFD700 100%
    );
    color: var(--color-text);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.price-card:hover .price-header h3 {
    background-position: right center;
}

.price-header h3::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.price-card:hover .price-header h3::after {
    opacity: 1;
    left: 100%;
}

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

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

.current-price {
    color: var(--color-accent);
    font-size: 2.5rem;
    font-weight: 700;
}

.savings {
    font-size: 1rem;
    color: #28a745;
    font-weight: 500;
}

.savings.highlight {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1.1rem;
}

.bonus-tag {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
}

.bonus-tag.premium {
    background: linear-gradient(45deg, #f8f9fa, #FFD700);
}

.bonus-icon {
    font-size: 1.2rem;
}

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

.features li {
    padding: 0.8rem 0;
    color: var(--color-text);
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.features li.featured {
    color: var(--color-text);
    font-weight: 500;
}

.features li.disabled {
    color: #999;
}

.value-tag {
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 500;
}

.price-footer {
    text-align: center;
}

.best-value, .total-value {
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.total-value {
    color: #28a745;
}

.buy-button {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    color: var(--color-white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1rem;
    border: none;
    position: relative;
    overflow: hidden;
}

/* Botão Basic */
.buy-button {
    background: linear-gradient(45deg, 
        var(--color-primary) 0%, 
        var(--color-accent) 50%,
        var(--color-primary) 100%
    );
}

/* Botão Plus */
.buy-button.featured {
    background: linear-gradient(45deg, 
        #001837 0%, 
        #003366 25%,
        #004B8F 50%,
        #003366 75%,
        #001837 100%
    );
    box-shadow: 0 5px 15px rgba(0, 24, 55, 0.3);
}

/* Botão Premium */
.buy-button.premium {
    background: linear-gradient(45deg, 
        #FFD700 0%, 
        #FFA500 25%,
        #FF8C00 50%,
        #FFA500 75%,
        #FFD700 100%
    );
    color: var(--color-text);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.buy-button:hover {
    transform: translateY(-3px);
}

.buy-button.featured:hover {
    box-shadow: 0 8px 20px rgba(0, 24, 55, 0.4);
}

.buy-button.premium:hover {
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Efeito de brilho nos botões */
.buy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.buy-button:hover::before {
    left: 100%;
}

.guarantee {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }

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

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

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .price-card {
        margin: 0 auto;
        max-width: 400px;
    }
}

/* Footer */
.footer {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 30px 0;
    text-align: center;
}

/* Covers Section */
.covers {
    position: relative;
    padding: 4rem 0;
    background-color: var(--color-primary);
    overflow: hidden;
}

.covers .container {
    position: relative;
    z-index: 1;
}

.covers .bg-img {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.covers .bg-img img {
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.covers h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-white);
    font-size: 2.5rem;
}

.covers-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.cover-card {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cover-card.color-2 {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.cover-card.color-2 h3 {
    color: var(--color-white);
}

.cover-card.color-2 p {
    color: var(--color-white);
}

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

.cover-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cover-card img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    padding: 20px;
}

.cover-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cover-content h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cover-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pack-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease;
    align-self: flex-start;
}

.pack-button:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #ff5252, #ff7676);
}

@media (max-width: 768px) {
    .cover-card {
        flex-direction: column;
        max-width: 500px;
        margin: 0 auto;
    }

    .cover-card img {
        width: 100%;
        height: 250px;
    }

    .cover-content {
        padding: 1.5rem;
    }
}

/* Social Buttons */
.social-buttons {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.social-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.social-button svg {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.social-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--button-color-1), var(--button-color-2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-button:hover {
    transform: translateX(-10px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(0, 0, 0, 0.15);
}

.social-button:hover::before {
    opacity: 1;
}

.social-button:hover svg {
    color: var(--color-white);
    transform: scale(1.1);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* WhatsApp */
.whatsapp {
    --button-color-1: #25D366;
    --button-color-2: #128C7E;
    background: rgba(255, 255, 255, 0.95);
}

.whatsapp svg {
    width: 50px;
    height: 50px;
    color: #25D366;
    filter: drop-shadow(0 2px 4px rgba(37, 211, 102, 0.2));
}

/* Instagram */
.instagram {
    --button-color-1: #833AB4;
    --button-color-2: #FD1D1D;
    background: rgba(255, 255, 255, 0.95);
}

.instagram svg {
    color: #E1306C;
    filter: drop-shadow(0 2px 4px rgba(225, 48, 108, 0.2));
}

/* Behance */
.behance {
    --button-color-1: #1769ff;
    --button-color-2: #0057ff;
    background: rgba(255, 255, 255, 0.95);
}

.behance svg {
    color: #1769ff;
    filter: drop-shadow(0 2px 4px rgba(23, 105, 255, 0.2));
}

@media (max-width: 768px) {
    .social-buttons {
        right: 15px;
    }

    .social-button {
        width: 40px;
        height: 40px;
    }

    .social-button svg {
        width: 20px;
        height: 20px;
    }

    .whatsapp svg {
        width: 50px;
        height: 50px;
        color: #25D366;
        filter: drop-shadow(0 2px 4px rgba(37, 211, 102, 0.2));
    }
}

/* Seção de Depoimentos */
.testimonials {
    padding: 4rem 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.testimonials .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.testimonials .bg-img img {
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials h2 {
    text-align: center;
    color: var(--color-text);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Carrossel de Depoimentos */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
    width: 100%;
    box-sizing: border-box;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll 60s linear infinite;
    width: max-content;
    padding: 1rem 0;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-item {
    flex-shrink: 0;
    width: 400px;
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: scale(1.05);
}

.testimonial-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-item:hover .testimonial-image {
    transform: scale(1.02);
}

/* Modal para visualização das imagens */
.testimonial-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: auto;
    display: block;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    top: 50%;
    transform: translateY(-50%);
}

.modal-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--color-primary);
}

/* Responsividade para o carrossel */
@media (max-width: 768px) {
    .testimonials-carousel {
        padding: 1rem 0;
    }
    
    .carousel-track {
        gap: 1rem;
        animation-duration: 40s;
    }
    
    .testimonial-item {
        width: 320px;
    }
    
    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .modal-content {
        width: 95%;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .testimonial-item {
        width: 280px;
    }
    
    .carousel-track {
        gap: 0.8rem;
        animation-duration: 30s;
    }
}

/* Seção FAQ */
.faq {
    padding: 4rem 0;
    background: var(--color-secondary);
    position: relative;
    overflow: hidden;
}

.faq .bg-img {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.faq .bg-img img {
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.faq .container {
    position: relative;
    z-index: 1;
}

.faq h2 {
    text-align: center;
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-item {
    background: var(--color-white);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

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

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

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

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

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

.gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-grid {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-item {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: -5px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item.desktop {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item.mobile {
    display: none;
}

/* Otimização para dispositivos móveis */
@media (max-width: 768px) {
    .scroll-content img {
        width: 150px;
        height: 240px;
    }
    
    .infinite-scroll {
        animation-duration: 60s;
    }
    
    .infinite-scroll.reverse {
        animation-duration: 60s;
    }

    .gallery-item.desktop {
        display: none;
    }

    .gallery-item.mobile {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .gallery h2 {
        font-size: 1.6rem;
        padding: 15px 25px;
        margin-bottom: 2rem;
    }
    
    .gallery-category h3 {
        font-size: 1.4rem;
        padding: 12px 20px;
        margin-bottom: 1.5rem;
    }
    
    .hero {
        padding: 20px 0 20px;
        min-height: auto;
    }

    .hero-content {
        text-align: center;
        padding: 0 15px;
        gap: 5px;
    }

    .hero-content-img h1 {
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        width: 90%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-content-img {
        flex-direction: column;
        align-items: center;
        margin-bottom: 15px;
        height: auto;
    }

    .hero-content-img img {
        width: 150px;
        margin-top: 1rem;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }

    .hero-content p {
        font-size: 0.9rem;
        width: 100%;
        line-height: 1.6;
        margin-bottom: 1rem;
        padding: 0 10px;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem;
        font-size: 1rem;
    }

    .benefits {
        padding: 20px 0 20px;
    }

    .benefits-grid {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .benefit-card {
        padding: 15px;
        width: 100%;
        max-width: 350px;
    }

    .benefit-card h3 {
        font-size: 16px;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }
    
    /* Corrigir overflow das imagens de fundo */
    .benefits .bg-img,
    .pricing .bg-img,
    .covers .bg-img,
    .testimonials .bg-img,
    .faq .bg-img {
        display: none;
    }
    
    /* Ajustar covers para mobile */
    .covers-grid {
        padding: 0 0.5rem;
    }
    
    .cover-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .cover-card img {
        width: 200px;
        height: 200px;
    }
    
    .cover-content {
        padding: 1rem;
    }
    
    .cover-content h3 {
        font-size: 1.4rem;
    }
    
    .cover-content p {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content-img h1 {
        font-size: 16px;
        width: 100%;
        line-height: 1.3;
    }

    .hero-content-img img {
        width: 120px;
    }

    .hero-content p {
        font-size: 0.8rem;
        padding: 0 5px;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 0.7rem;
        max-width: 250px;
    }

    .benefit-card {
        padding: 1rem;
        max-width: 300px;
    }

    .benefits h2 {
        font-size: 24px;
    }

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

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

    .container h2 {
        font-size: 24px;
    }
    
    .cover-card {
        max-width: 320px;
    }
    
    .cover-card img {
        width: 150px;
        height: 150px;
    }
    
    .cover-content h3 {
        font-size: 1.2rem;
    }
    
    .cover-content p {
        font-size: 0.8rem;
    }
    
    .testimonial-item {
        width: 250px;
    }
    
    .carousel-track {
        gap: 0.5rem;
        animation-duration: 25s;
    }
    
    .gallery-item.desktop {
        display: none;
    }

    .gallery-item.mobile {
        display: block;
    }
}

