/* ===== RESET & GENERAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF0050;
    --secondary-color: #00D9FF;
    --accent-color: #6A0572;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success: #00c800;
    --warning: #ff9500;
    --error: #e74c3c;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

img,
iframe,
video {
    max-width: 100%;
    height: auto;
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
    gap: 12px;
}

.navbar-center {
    flex: 1;
    min-width: 0;
}

.navbar-right {
    flex-shrink: 0;
}

.navbar-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    color: var(--text-dark);
}

.viral-icon {
    font-size: 32px;
}

.brand-name {
    display: inline-block;
    position: relative;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-name::after {
    content: 'Carla Schmit Super Fa';
    display: block;
    margin-left: 0;
    margin-top: 2px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15px;
    line-height: 1;
    white-space: nowrap;
    text-align: right;
    width: 100%;
    color: var(--text-light);
    background: none;
    -webkit-text-fill-color: var(--text-light);
}

.menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

#language {
    padding: 8px 10px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-white);
    font-size: 14px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '';
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    list-style: none;
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px;
}

.lang-selector select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-white);
    cursor: pointer;
    font-size: 14px;
}

.btn-premium {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: none;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0;
    background: var(--bg-white);
    cursor: pointer;
    color: var(--text-dark);
    font-weight: 600;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    font-size: 0;
    position: relative;
}

.hamburger span::before,
.hamburger span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
}

.hamburger span::before {
    top: -6px;
}

.hamburger span::after {
    top: 6px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,0,80,0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,217,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-content {
    text-align: center;
}

.hero-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.7rem, 3.6vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.22;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

.trilhas-section,
.modules-section,
.premium-section {
    padding: 80px 0;
}

.trilhas-section {
    background: var(--bg-light);
}

.modules-section {
    background: var(--bg-white);
}

.premium-section {
    background: linear-gradient(135deg, rgba(255,0,80,0.05), rgba(0,217,255,0.05));
}

/* ===== GRID CARDS ===== */
.trilhas-grid,
.modules-grid,
.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.modules-grid.modules-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trilha-card,
.module-card,
.premium-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    text-align: center;
}

.trilha-card:hover,
.module-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.trilha-card:hover {
    border-top: 4px solid var(--primary-color);
}

.trilha-icon,
.module-number {
    font-size: 48px;
    margin-bottom: 15px;
}

.module-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.trilha-card h3,
.module-card h4,
.premium-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.trilha-card p,
.module-card p,
.premium-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
}

.premium-card.locked {
    position: relative;
    opacity: 0.9;
    border: 2px solid var(--border-color);
}

.premium-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.premium-actions .btn {
    margin: 0;
}

.lock-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--text-dark), var(--accent-color));
}

.cta-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.cta-box {
    background: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.cta-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cta-box p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.lead-section {
    padding: 40px 0 80px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.disclaimer {
    margin-top: 10px;
    color: var(--warning);
    font-weight: 600;
}

/* ===== PAGE STRUCTURE ===== */
.page-header {
    background: linear-gradient(135deg, #00AA44, #00DD88);
    color: white;
    padding: 60px 0;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

.breadcrumb {
    padding: 20px 0;
    background: var(--bg-light);
}

.breadcrumb a,
.breadcrumb span {
    text-decoration: none;
    color: var(--text-light);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    margin: 0 8px;
}

.page-content {
    padding: 60px 0;
}

.section-block {
    margin-bottom: 60px;
}

.section-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.section-block h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-block p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.section-block ul,
.section-block ol {
    margin: 20px 0 20px 30px;
    color: var(--text-light);
}

.section-block li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255,0,80,0.05), rgba(0,217,255,0.05));
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.warning-box {
    background: rgba(255,149,0,0.05);
    border-left: 4px solid var(--warning);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.success-box {
    background: rgba(0,200,0,0.05);
    border-left: 4px solid var(--success);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

/* ===== CHECKLIST ===== */
.checklist {
    list-style: none;
    margin: 20px 0;
}

.checklist li {
    padding: 12px;
    margin: 8px 0;
    background: var(--bg-light);
    border-radius: 6px;
    border-left: 4px solid var(--secondary-color);
}

.checklist li::before {
    content: '✓ ';
    color: var(--success);
    font-weight: bold;
    margin-right: 10px;
}

/* ===== TABLE ===== */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

table th {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

table tr:last-child td {
    border-bottom: none;
}

table tr:hover {
    background: var(--bg-light);
}

/* ===== CODE BLOCK ===== */
code {
    background: var(--bg-light);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: var(--primary-color);
}

pre {
    background: var(--text-dark);
    color: #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

pre code {
    background: none;
    padding: 0;
    color: #e0e0e0;
}

/* ===== MODAL/PREMIUM LOGIN ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.modal form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal input,
.modal select {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
}

.modal input:focus,
.modal select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255,0,80,0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 14px;
    }

    .navbar .container {
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .navbar-logo {
        order: 2;
    }

    .navbar-right {
        order: 1;
        margin-left: 0;
        margin-right: 8px;
    }

    .navbar-center {
        order: 3;
        flex-basis: 100%;
    }

    .navbar-logo a {
        font-size: 20px;
    }

    .viral-icon {
        font-size: 24px;
    }

    .brand-name {
        font-size: 20px;
    }

    .brand-name::after {
        font-size: 10px;
        margin-left: 0;
    }

    .menu {
        display: none;
        width: 100%;
        order: 3;
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        background: var(--bg-white);
        border: 1px solid var(--border-color);
        border-radius: 10px;
        padding: 10px;
        box-shadow: var(--shadow);
        margin-top: 10px;
    }

    .menu.active {
        display: flex;
    }

    .menu .nav-link {
        display: block;
        padding: 10px 12px;
        border-radius: 6px;
        background: var(--bg-light);
    }

    .hamburger {
        display: flex;
    }

    #language {
        display: none;
    }

    .nav-link::after {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
        gap: 10px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 360px;
        text-align: center;
    }

    .trilhas-grid,
    .modules-grid,
    .premium-grid {
        grid-template-columns: 1fr;
    }

    .modules-grid.modules-grid-four {
        grid-template-columns: 1fr;
    }

    .modules-section .module-card {
        text-align: left;
        padding: 22px 20px;
        border: 1px solid #d9e8ff;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    }

    .modules-section .module-card h4 {
        font-size: 1.08rem;
        margin-bottom: 10px;
        color: #131313;
    }

    .modules-section .module-card p {
        font-size: 0.97rem;
        line-height: 1.72;
        color: #2e2e2e;
        margin-bottom: 0;
    }

    .cta-section .container {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .section-block h2 {
        font-size: 24px;
    }

    .premium-actions {
        flex-direction: column;
    }

    .premium-actions .btn {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        padding-left: 20px;
        background: var(--bg-light);
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        font-size: 12px;
    }

    table th,
    table td {
        padding: 8px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }

    .navbar .container {
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .navbar-logo {
        order: 2;
    }

    .navbar-right {
        order: 1;
        margin-left: 0;
        margin-right: 8px;
    }

    .navbar-center {
        order: 3;
        flex-basis: 100%;
    }

    .menu {
        display: none;
        width: 100%;
        order: 3;
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        background: var(--bg-white);
        border: 1px solid var(--border-color);
        border-radius: 10px;
        padding: 10px;
        box-shadow: var(--shadow);
        margin-top: 10px;
    }

    .menu.active {
        display: flex;
    }

    .menu .nav-link {
        display: block;
        padding: 10px 12px;
        border-radius: 6px;
        background: var(--bg-light);
    }

    .hamburger {
        display: flex;
    }

    #language {
        display: none;
    }

    .hero {
        padding: 80px 0;
    }

    .modules-grid.modules-grid-four {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 30px;
    }

    .page-header h1 {
        font-size: 38px;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .modules-grid.modules-grid-four {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1201px) and (max-width: 1400px) {
    .container {
        padding: 0 18px;
    }

    .section-title {
        font-size: 34px;
    }

    .hero-title {
        font-size: 46px;
    }

    .menu {
        gap: 18px;
    }

    .nav-link {
        font-size: 14px;
    }

    .modules-grid.modules-grid-four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .hero-title {
        font-size: 1.65rem;
        gap: 8px;
    }

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

    .page-header {
        padding: 45px 0;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .section-block h2 {
        font-size: 22px;
    }

    .section-block h3 {
        font-size: 20px;
    }

    .cta-box {
        padding: 24px;
    }

    .modules-section .module-card {
        padding: 18px 16px;
    }

    .modules-section .module-card h4 {
        font-size: 1rem;
    }

    .modules-section .module-card p {
        font-size: 0.93rem;
        line-height: 1.68;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trilha-card,
.module-card,
.premium-card {
    animation: fadeIn 0.6s ease-out;
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.text-muted {
    color: var(--text-light);
}
