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

:root {
    --primary-green: #10B981;
    --light-text: #FFFFFF;
    --gray-text: #E2E8F0;
    --gradient-primary: linear-gradient(135deg, #10B981 0%, #059669 50%, #047857 100%);
    --gradient-text: linear-gradient(135deg, #10B981 0%, #34D399 30%, #06B6D4 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: #000000;
    color: var(--light-text);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .container {
        max-width: 600px;
        padding: 0 24px;
    }
}

/* BOTÕES */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 14px;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(16, 185, 129, 0.6);
}

.btn-mega {
    padding: 28px 56px !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    border-radius: 16px !important;
    letter-spacing: 1px !important;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5) !important;
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn-mega::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-mega:hover::before {
    left: 100%;
}

.btn-mega:hover {
    transform: translateY(-6px) scale(1.02) !important;
    box-shadow: 0 16px 60px rgba(16, 185, 129, 0.7) !important;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
    }
    50% {
        box-shadow: 0 12px 50px rgba(16, 185, 129, 0.8);
    }
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* HERO */
.hero-chamada {
    padding: 80px 0 120px;
    min-height: 100vh;
    background: #000000;
    background-image: url('../../images/bgdesktop.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero-chamada::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    pointer-events: none;
    z-index: 0;
}

.hero-chamada .fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.7) 85%, #000000 100%);
    pointer-events: none;
    z-index: 1;
}

.alert-exclusivo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.2);
    border: 2px solid #EF4444;
    border-radius: 16px;
    padding: 20px 32px;
    margin: 0 auto 40px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.alert-text {
    color: #EF4444;
    font-size: 22px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.5;
}

.hero-image-top {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 60px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
}

.chamada-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    z-index: 2;
}

.chamada-left {
    width: 100%;
    max-width: 100%;
}

.chamada-right {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
}

.chamada-left h1 {
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 32px;
    letter-spacing: -2px;
    color: var(--light-text);
}

.badge-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    width: 100%;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 16px 32px;
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid var(--primary-green);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    margin: 0 auto;
}

.highlight {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    font-size: clamp(24px, 3vw, 32px);
    color: var(--gray-text);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 500;
}

.hero-image-after-text {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.benefits-list {
    list-style: none;
    margin-bottom: 56px;
}

.benefits-list li {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 24px;
    font-size: 22px;
    padding: 32px;
    background: rgba(10, 10, 10, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.6;
    font-weight: 500;
}

.benefits-list li svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.guarantee-box, .urgency-bar {
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    width: 100%;
    box-sizing: border-box;
}

.guarantee-icon, .urgency-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.guarantee-text, .urgency-text {
    flex: 1;
    line-height: 1.7;
    font-size: 20px;
    font-weight: 500;
}

.guarantee-text strong, .urgency-text strong {
    color: var(--primary-green);
    font-weight: 800;
}

/* CTA BOX */
.cta-box {
    background: rgba(10, 10, 10, 0.9);
    border: 3px solid rgba(16, 185, 129, 0.3);
    border-radius: 32px;
    padding: 64px 48px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-icon {
    font-size: 80px;
    margin-bottom: 32px;
    display: inline-block;
}

.cta-box h3 {
    font-size: clamp(36px, 5vw, 52px);
    margin-bottom: 28px;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.cta-description {
    color: var(--gray-text);
    margin-bottom: 40px;
    line-height: 1.7;
    font-size: 22px;
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 500;
}

.urgency-cta {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 0;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.trust-badges {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: var(--gray-text);
    padding: 20px 28px;
    background: rgba(20, 27, 45, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 600;
}

.trust-icon {
    color: var(--primary-green);
    font-weight: 800;
    font-size: 20px;
}

/* FAQ */
.faq-section {
    padding: 120px 0;
    background: transparent;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.faq-section h2 {
    text-align: center;
    font-size: clamp(48px, 7vw, 72px);
    margin-bottom: 80px;
    font-weight: 900;
    letter-spacing: -2px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.faq-item {
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.faq-item h4 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-green);
    font-weight: 800;
    line-height: 1.3;
}

.faq-item p {
    color: var(--gray-text);
    line-height: 1.8;
    font-size: 20px;
    font-weight: 400;
}

/* FOOTER */
/* AUTHOR SECTION */
.author-section {
    background: transparent;
    padding: 80px 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.author-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    max-width: 600px;
    margin: 0 auto;
}

.author-cta {
    width: 100%;
    margin-bottom: 0;
}

.author-image-wrapper {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
    border: 3px solid rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.author-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(16, 185, 129, 0.5);
    border-color: rgba(16, 185, 129, 0.6);
}

.author-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.footer {
    background: transparent;
    padding: 100px 0 50px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 20px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.footer-brand p {
    color: var(--gray-text);
    max-width: 400px;
    line-height: 1.8;
    font-size: 16px;
}

.footer-links {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 15px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-text);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-instagram {
    margin-bottom: 8px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--light-text);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.5);
}

.instagram-link svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.instagram-link span {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ABOUT SECTION */
.about-section {
    padding: 60px 0;
    background: transparent;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text h2 {
    font-size: clamp(48px, 7vw, 72px);
    font-weight: 900;
    letter-spacing: -2px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 16px;
}

.about-name {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.about-description {
    font-size: 22px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 20px;
}

.about-description strong {
    color: var(--primary-green);
    font-weight: 700;
}

.about-subdescription {
    font-size: 22px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 20px;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.about-image-wrapper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
    background: transparent;
}

.about-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
}

.about-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* RESPONSIVE */
@media (min-width: 1200px) {
    .chamada-content {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .chamada-left {
        width: 100%;
        max-width: 100%;
    }

    .chamada-right {
        width: 100%;
        max-width: 100%;
        position: static;
    }

    .about-section {
        margin: 40px 0;
    }

    .about-content {
        max-width: 100%;
    }

    .chamada-left h1 {
        font-size: clamp(40px, 8vw, 56px);
    }

    .chamada-left .lead {
        font-size: clamp(20px, 4vw, 24px);
    }
}

@media (min-width: 1400px) {
    .chamada-content {
        gap: 60px;
    }

    .chamada-left {
        max-width: 100%;
    }

    .chamada-right {
        max-width: 100%;
    }

    .about-content {
        max-width: 100%;
    }

    .benefits-list li {
        font-size: 22px;
        padding: 32px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-box {
        padding: 48px 32px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .chamada-content {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .chamada-left {
        max-width: 100%;
    }

    .chamada-right {
        max-width: 100%;
    }

    .about-section {
        margin: 40px 0;
    }

    .container {
        max-width: 600px;
        padding: 0 24px;
    }

    .chamada-left h1 {
        font-size: clamp(40px, 8vw, 56px);
    }

    .about-content {
        max-width: 100%;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .faq-item {
        padding: 32px;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .container {
        max-width: 600px;
        padding: 0 24px;
    }

    .chamada-content {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .chamada-left {
        max-width: 100%;
    }

    .chamada-right {
        max-width: 100%;
    }

    .chamada-left h1 {
        font-size: clamp(40px, 8vw, 56px);
    }

    .chamada-left .lead {
        font-size: clamp(20px, 4vw, 24px);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: clamp(40px, 6vw, 56px);
    }

    .about-images {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .cta-box {
        padding: 48px 32px;
    }

    .cta-box h3 {
        font-size: clamp(32px, 5vw, 42px);
    }

    .benefits-list li {
        font-size: 20px;
        padding: 28px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .faq-item {
        padding: 32px;
    }
}

@media (max-width: 1024px) {
    .chamada-content {
        gap: 50px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-images {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

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

    .hero-chamada {
        background-image: url('../../images/bgmobile.png');
        background-size: 100% auto;
        background-position: center top;
        background-repeat: no-repeat;
        min-height: auto;
        padding: 60px 0 100px;
    }

    .hero-chamada::before {
        background: rgba(0, 0, 0, 0.6);
    }

    .hero-chamada .fade-bottom {
        height: 200px;
    }

    .alert-exclusivo {
        padding: 18px 24px;
        margin-bottom: 32px;
    }

    .alert-text {
        font-size: 18px;
    }

    .hero-image-top {
        margin-bottom: 40px;
    }


    .chamada-left h1 {
        font-size: clamp(40px, 9vw, 56px);
        margin-bottom: 28px;
    }

    .chamada-left .lead {
        font-size: 22px;
        margin-bottom: 36px;
    }

    .hero-image-after-text {
        margin-bottom: 32px;
        border-radius: 16px;
    }

    .benefits-list li {
        padding: 28px;
        font-size: 20px;
        margin-bottom: 20px;
    }

    .guarantee-text, .urgency-text {
        font-size: 18px;
    }

    .cta-box {
        padding: 48px 32px;
    }

    .cta-box h3 {
        font-size: clamp(32px, 6vw, 42px);
    }

    .cta-description {
        font-size: 20px;
    }
    
    .urgency-cta {
        font-size: 16px;
        margin-top: 20px;
    }

    .btn-mega {
        padding: 24px 32px !important;
        font-size: 16px !important;
    }

    .guarantee-box, .urgency-bar {
        padding: 24px;
        flex-direction: column;
        text-align: center;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .about-images {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .author-section {
        padding: 60px 0;
    }

    .author-content {
        gap: 40px;
    }

    .author-image-wrapper {
        max-width: 350px;
    }

    .footer-content {
        flex-direction: column;
        gap: 50px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .faq-item {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-chamada {
        padding: 40px 0 60px;
        background-image: url('../../images/bgmobile.png');
        background-size: 100% auto;
        background-position: center top;
        background-repeat: no-repeat;
    }

    .hero-chamada::before {
        background: rgba(0, 0, 0, 0.6);
    }

    .hero-chamada .fade-bottom {
        height: 150px;
    }

    .alert-exclusivo {
        padding: 16px 20px;
        margin-bottom: 24px;
        border-radius: 12px;
    }

    .alert-text {
        font-size: 16px;
    }

    .hero-image-top {
        margin-bottom: 32px;
    }

    .chamada-left h1 {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 24px;
    }

    .chamada-left .lead {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .hero-image-after-text {
        margin-bottom: 24px;
        border-radius: 12px;
    }

    .badge {
        padding: 14px 28px;
        font-size: 14px;
        display: block;
        width: fit-content;
        margin: 0 auto;
    }

    .badge-wrapper {
        display: block;
        text-align: center;
    }

    .benefits-list li {
        padding: 24px;
        font-size: 18px;
        gap: 16px;
        margin-bottom: 18px;
    }

    .benefits-list li svg {
        width: 20px;
        height: 20px;
    }

    .cta-box {
        padding: 32px 24px;
    }

    .cta-icon {
        font-size: 60px;
        margin-bottom: 24px;
    }

    .cta-box h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .cta-description {
        font-size: 18px;
        margin-bottom: 32px;
    }
    
    .urgency-cta {
        font-size: 14px;
        margin-top: 16px;
        letter-spacing: 0.3px;
    }

    .guarantee-text, .urgency-text {
        font-size: 16px;
    }

    .btn-mega {
        padding: 20px 24px !important;
        font-size: 14px !important;
    }

    .btn-mega svg {
        width: 20px !important;
        height: 20px !important;
    }

    .trust-badges {
        flex-direction: column;
        gap: 12px;
    }

    .trust-item {
        width: 100%;
        justify-content: center;
    }

    .guarantee-box, .urgency-bar {
        padding: 20px;
        gap: 16px;
    }

    .guarantee-icon, .urgency-icon {
        font-size: 36px;
    }

    .faq-section h2 {
        font-size: 36px;
        margin-bottom: 48px;
    }

    .faq-item {
        padding: 28px 24px;
    }

    .faq-item h4 {
        font-size: 24px;
    }

    .faq-item p {
        font-size: 18px;
    }

    .author-section {
        padding: 40px 0;
    }

    .author-content {
        gap: 32px;
    }

    .author-image-wrapper {
        max-width: 100%;
        border-radius: 16px;
    }

    .author-cta {
        font-size: 16px !important;
        padding: 24px 32px !important;
    }
}
