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

:root {
    --primary: #d946a6;
    --secondary: #ec4899;
    --dark: #0f0f0f;
    --darker: #1a1a1a;
    --text: #ffffff;
    --text-muted: #b0b0b0;
    --border: #333333;
    --gold: #fbbf24;
    --success: #10b981;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.5rem 0;
}

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

.logo h1 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    font-weight: 900;
    margin-bottom: 0.2rem;
}

.logo .tagline {
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

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

/* Hero Section */
.hero {
    height: 600px;
    background: linear-gradient(135deg, rgba(217, 70, 166, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%),
                linear-gradient(to bottom, var(--darker) 0%, var(--dark) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 70, 166, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(217, 70, 166, 0.12);
    border: 1.5px solid rgba(217, 70, 166, 0.4);
    border-radius: 8px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: slideDown 0.8s ease-out;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    animation: slideUp 0.8s ease-out 0.1s both;
}

.hero-content h2 .highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: slideUp 0.8s ease-out 0.3s both;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    box-shadow: 0 10px 30px rgba(217, 70, 166, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(217, 70, 166, 0.5);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.cta-button.secondary:hover {
    background: rgba(217, 70, 166, 0.1);
    border-color: var(--secondary);
    color: var(--secondary);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    animation: slideUp 0.8s ease-out 0.4s both;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(217, 70, 166, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite;
}

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

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

@keyframes gradientShift {
    0%, 100% {
        background: 
            radial-gradient(circle at 20% 50%, rgba(217, 70, 166, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    }
    50% {
        background: 
            radial-gradient(circle at 80% 50%, rgba(217, 70, 166, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    }
}

/* Gallery Preview */
.gallery-preview {
    padding: 50px 0;
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.gallery-preview h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, rgba(217, 70, 166, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-placeholder img,
.gallery-placeholder video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
    z-index: 1;
    position: absolute;
}

.gallery-item:hover .gallery-placeholder {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(217, 70, 166, 0.2);
    transform: translateY(-5px);
}

.gallery-item:hover .placeholder-text {
    opacity: 0.3;
}

.item-label {
    margin-top: 1rem;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
}

.gallery-cta {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 2rem;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.lightbox img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s;
}

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

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0 20px;
    z-index: 2001;
    transition: color 0.3s;
    user-select: none;
}

.lightbox-prev:hover, .lightbox-next:hover {
    color: var(--primary);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

@media (max-width: 768px) {
    .hero {
        min-height: 400px;
        padding: 3rem 0;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 0.8rem;
    }

    .cta-button {
        width: 100%;
    }

    .hero-stats {
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-preview h2 {
        font-size: 1.8rem;
    }

    .lightbox-prev, .lightbox-next {
        font-size: 1.5rem;
        padding: 0 10px;
    }

    .lightbox-prev {
        left: -40px;
    }

    .lightbox-next {
        right: -40px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
.benefits {
    padding: 40px 0;
    background: var(--darker);
    border-top: 1px solid var(--border);
}

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

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(217, 70, 166, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    transition: all 0.3s;
}

.benefit-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(217, 70, 166, 0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    color: var(--primary);
    stroke-width: 1.5;
}

.benefit-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 50px 0;
    background: var(--dark);
}

.pricing h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.plan-card {
    background: linear-gradient(135deg, rgba(217, 70, 166, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(217, 70, 166, 0.2);
    transform: translateY(-10px);
}

.plan-card.featured {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(217, 70, 166, 0.3);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.plan-badge.popular {
    background: linear-gradient(135deg, var(--gold) 0%, #f59e0b 100%);
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.plan-duration {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

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

.plan-features .check {
    color: var(--success);
    font-weight: bold;
    margin-right: 0.5rem;
    min-width: 20px;
}

.plan-features .check-x {
    color: #6b7280;
    font-weight: bold;
    margin-right: 0.5rem;
    min-width: 20px;
}

.buy-button {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(217, 70, 166, 0.3);
}

.buy-button-featured {
    background: linear-gradient(135deg, var(--gold) 0%, #f59e0b 100%);
}

/* FAQ */
.faq {
    padding: 40px 0;
    background: var(--darker);
    border-top: 1px solid var(--border);
}

.faq h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-items {
    display: grid;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(217, 70, 166, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.2rem;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(217, 70, 166, 0.1);
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

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

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

.modal-content {
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(217, 70, 166, 0.3);
    animation: slideUp 0.3s;
}

/* PIX Modal Específico */
.pix-modal {
    text-align: center;
    max-width: 420px !important;
}

.pix-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: -0.5rem;
}

.pix-method {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(217, 70, 166, 0.08);
    border-radius: 10px;
}

.pix-method h3 {
    margin: 0 0 1rem 0;
    color: var(--primary);
    font-size: 1rem;
}

.pix-qrcode {
    margin: 1rem 0;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    display: flex;
    justify-content: center;
}

.pix-qrcode img {
    max-width: 100%;
    width: 280px;
    height: auto;
}

.pix-divider {
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.pix-help {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.pix-key-copy {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.pix-key-input {
    flex: 1;
    padding: 0.9rem;
    background: rgba(217, 70, 166, 0.1);
    border: 1.5px solid var(--primary);
    color: var(--text);
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.85rem;
    word-break: break-all;
    max-height: 60px;
    overflow-y: auto;
}

.pix-copy-btn {
    padding: 0.9rem 1.2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
    min-width: 130px;
}

.pix-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 70, 166, 0.4);
}

.pix-copy-btn span {
    display: inline-block;
}

.pix-info {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    line-height: 1.5;
}

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

.close {
    color: var(--text);
    float: right;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

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

.modal-content h2 {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.price-display {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-align: center;
}

/* Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text);
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(217, 70, 166, 0.2);
}

.card-element {
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.card-errors {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    min-height: 20px;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(217, 70, 166, 0.3);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.security-note {
    text-align: center;
    color: var(--success);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--darker);
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
    text-align: center;
    color: var(--text-muted);
}

.footer p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

.footer .legal {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsivo */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero {
        height: 400px;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 20% auto;
        width: 95%;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .benefits .container {
        grid-template-columns: 1fr;
    }
}

/* ✨ MOBILE RESPONSIVO */
@media (max-width: 768px) {
    body {
        padding: 10px;
        font-size: 14px;
    }

    .container {
        padding: 15px;
    }

    header {
        padding: 15px 10px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .hero {
        padding: 30px 15px;
        min-height: auto;
    }

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

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        width: 100%;
        margin: 8px 0;
    }

    .plans-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px 0;
    }

    .plan-card {
        padding: 20px;
    }

    .plan-price {
        font-size: 1.8rem;
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 15px;
    }

    .gallery img {
        max-height: 150px;
    }

    .faq-container {
        padding: 15px;
    }

    .faq-item {
        margin: 10px 0;
    }

    .faq-question {
        padding: 12px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 12px;
        font-size: 0.9rem;
    }

    .modal-content {
        width: 95%;
        padding: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-header h2 {
        font-size: 1.4rem;
    }

    .form-group {
        margin-bottom: 12px;
    }

    input, textarea {
        padding: 10px;
        font-size: 16px;
    }

    .code-display {
        padding: 15px;
        font-size: 0.9rem;
        word-break: break-all;
    }

    .copy-btn {
        width: 100%;
        padding: 10px;
        margin-top: 10px;
    }

    .close {
        font-size: 28px;
        top: 10px;
        right: 15px;
    }

    footer {
        padding: 20px 10px;
        font-size: 0.85rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 5px;
    }

    .nav-links a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    /* Garantir sem overflow horizontal */
    * {
        box-sizing: border-box;
        max-width: 100%;
    }

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

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .plans-container {
        grid-template-columns: 1fr;
    }

    .plan-price {
        font-size: 1.5rem;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery img {
        max-height: 120px;
    }

    .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .modal-content {
        width: 98%;
        padding: 15px;
    }

    .code-display {
        padding: 12px;
        font-size: 0.85rem;
    }
}
/* ✨ CORREÇÕES MOBILE - ADICIONAR NO FINAL DO styles.css */

@media (max-width: 1024px) {
    .container {
        max-width: 95%;
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    * {
        box-sizing: border-box;
    }

    body, html {
        width: 100%;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }

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

    /* Navbar */
    .navbar {
        padding: 12px 0;
    }

    .navbar .container {
        flex-direction: column;
        gap: 10px;
    }

    .logo h1 {
        font-size: 1.4rem;
        margin: 0;
    }

    .logo .tagline {
        font-size: 0.75rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .nav-links a {
        font-size: 0.85rem;
        padding: 6px 10px;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 30px 12px;
    }

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

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .hero-content h2 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin: 15px 0;
    }

    .hero-content h2 br {
        display: none;
    }

    .hero-content h2 span {
        display: inline;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin: 15px 0;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 10px;
        margin: 20px 0;
    }

    .cta-button {
        width: 100%;
        padding: 12px;
        font-size: 0.95rem;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
        margin-top: 20px;
    }

    .stat {
        padding: 10px;
    }

    .stat-number {
        font-size: 1.1rem;
    }

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

    /* Gallery */
    .gallery-preview {
        padding: 20px 0;
    }

    .gallery-preview h2 {
        font-size: 1.4rem;
        margin: 15px 0 10px 0;
    }

    .gallery-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-grid img {
        max-height: 140px;
        object-fit: cover;
    }

    .gallery-cta {
        font-size: 0.9rem;
        margin: 15px 0;
    }

    /* Pricing */
    .pricing {
        padding: 30px 0;
    }

    .pricing h2 {
        font-size: 1.4rem;
        margin: 0 0 20px 0;
    }

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

    .plan-card {
        padding: 18px;
        margin: 0;
    }

    .plan-badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    .plan-card h3 {
        font-size: 1.2rem;
        margin: 8px 0;
    }

    .plan-price {
        font-size: 1.8rem;
        margin: 10px 0 5px 0;
    }

    .plan-duration {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .plan-features {
        font-size: 0.85rem;
        margin: 12px 0;
        gap: 8px;
    }

    .plan-features li {
        padding: 5px 0;
    }

    .buy-button {
        width: 100%;
        padding: 12px;
        font-size: 0.95rem;
        margin-top: 10px;
    }

    /* Benefits */
    .benefits {
        padding: 25px 0;
    }

    .benefits .container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-item {
        text-align: center;
        padding: 15px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 10px;
    }

    .benefit-item h3 {
        font-size: 1.1rem;
        margin: 10px 0 8px 0;
    }

    .benefit-item p {
        font-size: 0.85rem;
        margin: 0;
    }

    /* FAQ */
    .faq {
        padding: 25px 0;
    }

    .faq h2 {
        font-size: 1.4rem;
        margin: 0 0 15px 0;
    }

    .faq-items {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .faq-item {
        margin: 0;
        padding: 12px;
        border-radius: 8px;
    }

    .faq-item h4 {
        font-size: 0.95rem;
        margin: 0 0 8px 0;
        cursor: pointer;
    }

    .faq-item p {
        font-size: 0.85rem;
        margin: 0;
        line-height: 1.4;
    }

    /* Modal */
    .modal-content {
        width: 95%;
        max-width: 95%;
        padding: 20px;
        max-height: 85vh;
        border-radius: 12px;
    }

    .modal-header h2,
    .modal-content h2 {
        font-size: 1.3rem;
        margin: 0 0 15px 0;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group label {
        font-size: 0.9rem;
        display: block;
        margin-bottom: 6px;
    }

    input, textarea {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        border-radius: 6px;
    }

    .code-display {
        padding: 15px;
        font-size: 0.9rem;
        word-break: break-all;
        margin: 12px 0;
        border-radius: 8px;
    }

    .copy-btn {
        width: 100%;
        padding: 12px;
        margin-top: 10px;
        font-size: 0.95rem;
    }

    .close {
        font-size: 24px;
        top: 12px;
        right: 12px;
    }

    /* Footer */
    footer {
        padding: 20px 12px;
        font-size: 0.85rem;
    }

    /* Garantir sem overflow */
    .hero-overlay,
    .hero-bg-animation {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.2rem;
    }

    .hero-content h2 {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .plan-price {
        font-size: 1.6rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .gallery-grid img {
        max-height: 120px;
    }

    .benefits .container {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 98%;
        padding: 15px;
    }

    .cta-button {
        padding: 10px;
        font-size: 0.9rem;
    }

    .buy-button {
        padding: 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .logo h1 {
        font-size: 1rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .plan-price {
        font-size: 1.4rem;
    }

    .stat-number {
        font-size: 0.95rem;
    }
}

/* ✨ ESCONDER MENU NO MOBILE */
@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }

    .navbar .container {
        flex-direction: row;
        justify-content: center;
    }

    .logo {
        text-align: center;
        width: 100%;
    }

    .logo h1 {
        margin: 0;
        font-size: 1.3rem;
    }

    .logo .tagline {
        margin: 2px 0 0 0;
        font-size: 0.7rem;
    }
}

/* ✨ CORRIGIR IMAGENS NO MOBILE */
@media (max-width: 768px) {
    .gallery-grid img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-grid img {
        height: 120px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

/* GARANTIR QUE TODAS AS IMAGENS CARREGAM COMPLETO */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* CORREÇÕES MOBILE - VISUAL APENAS */
@media (max-width: 768px) {
    .hero {
        padding-top: 40px;
    }

    .hero-content h2 {
        line-height: 1.4;
        margin: 20px 0 15px 0;
    }

    .gallery-placeholder {
        aspect-ratio: 1 / 1 !important;
        min-height: 280px !important;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .logo .tagline {
        font-size: 0.7rem;
        margin-top: 4px;
    }

    .hero {
        padding: 60px 15px 40px 15px;
    }

    .hero-content h2 {
        font-size: 1.5rem;
        line-height: 1.4;
        margin: 20px 0 15px 0;
    }

    .gallery-placeholder {
        aspect-ratio: 1 / 1 !important;
        min-height: 260px !important;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* =========================================================
   CORREÇÃO FINAL MOBILE — preserva o visual do desktop
   Corrige: imagens cortadas pela metade e textos comprimidos
   ========================================================= */
@media (max-width: 768px) {
    /* Evita que regras antigas de altura fixa cortem a mídia */
    .gallery-placeholder img,
    .gallery-placeholder video,
    .gallery-grid img,
    .gallery-grid video {
        width: 100% !important;
        height: 100% !important;
        max-height: none !important;
        object-fit: cover !important;
        object-position: center !important;
        display: block !important;
    }

    /* Mantém o quadro proporcional à largura disponível */
    .gallery-placeholder {
        width: 100% !important;
        aspect-ratio: 1 / 1 !important;
        min-height: 0 !important;
        overflow: hidden !important;
    }

    /* Permite quebra normal de textos sem colar/cortar palavras */
    h1, h2, h3, h4, p, li, a, span, button, label {
        white-space: normal;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .hero-description,
    .gallery-subtitle,
    .gallery-cta,
    .plan-features li,
    .benefit-item p,
    .faq-item p,
    .footer p {
        line-height: 1.5;
    }

    /* O conteúdo do hero pode crescer naturalmente no celular */
    .hero {
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .gallery-placeholder img,
    .gallery-placeholder video,
    .gallery-grid img,
    .gallery-grid video {
        height: 100% !important;
        max-height: none !important;
    }

    .gallery-placeholder {
        min-height: 0 !important;
    }
}

/* CORREÇÃO MOBILE — espaço entre "Acesso Completo" e "Sem Limites" */
@media (max-width: 768px) {
    .hero-content h2 .highlight::before {
        content: "\00a0";
    }
}
