/* ========================================
   Thaina Peixoto Nogueira - Estilos
   CSS Puro (sem Tailwind)
   ======================================== */

/* ========================================
   Reset e Base
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #0b1c30;
    background-color: #f8f9ff;
}

/* Material Symbols */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

/* ========================================
   Container
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0b1c30;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 16px;
    color: #45464d;
    max-width: 600px;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: #000000;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1a1a1a;
    transform: scale(0.98);
}

.btn-secondary {
    background-color: #0051d5;
    color: #ffffff;
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 81, 213, 0.3);
}

.btn-secondary:hover {
    background-color: #0046b8;
    transform: scale(1.02);
}

.btn-outline {
    background-color: transparent;
    color: #0b1c30;
    border: 2px solid #76777d;
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 12px;
}

.btn-outline:hover {
    background-color: #eff4ff;
    border-color: #0051d5;
}

.btn-submit {
    width: 100%;
    background-color: #0051d5;
    color: #ffffff;
    padding: 16px;
    font-size: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 81, 213, 0.3);
    justify-content: center;
}

.btn-submit:hover {
    background-color: #0046b8;
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0b1c30;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
    padding-bottom: 4px;
}

.nav-link:hover,
.nav-link.active {
    color: #0b1c30;
}

.nav-link.active {
    border-bottom: 2px solid #0b1c30;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #0b1c30;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 870px;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    background-color: #ffffff;
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: #d3e4fe;
    color: #003ea8;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #0b1c30;
    margin-bottom: 24px;
}

.highlight {
    color: #0051d5;
}

.hero-text {
    font-size: 18px;
    line-height: 1.6;
    color: #45464d;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    height: 600px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: 32px;
    left: 32px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 240px;
}

.hero-badge-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.hero-badge-header .material-symbols-outlined {
    color: #0051d5;
}

.hero-badge-header span:last-child {
    font-size: 14px;
    font-weight: 600;
    color: #0b1c30;
}

.hero-badge p {
    font-size: 14px;
    color: #45464d;
}

/* ========================================
   Stats Section
   ======================================== */
.stats {
    background-color: #ffffff;
    border-top: 1px solid #c6c6cd;
    border-bottom: 1px solid #c6c6cd;
    padding: 48px 0;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-number {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #45464d;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: 80px 0;
    background-color: #ffffff;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.about-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-images img.mt-8 {
    margin-top: 32px;
}

.about-content p {
    color: #45464d;
    margin-bottom: 16px;
}

.about-list {
    list-style: none;
    margin-top: 32px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 600;
}

.about-list .material-symbols-outlined {
    color: #0051d5;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: 80px 0;
    background-color: #eff4ff;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #c6c6cd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.service-content p {
    color: #45464d;
    margin-bottom: 24px;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: #dbe1ff;
    color: #00174b;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
}

.link {
    color: #0051d5;
    font-size: 14px;
    font-weight: 600;
}

/* ========================================
   Values Section
   ======================================== */
.values {
    padding: 80px 0;
    background-color: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.values-main {
    background-color: #131b2e;
    color: #ffffff;
    padding: 48px;
    border-radius: 24px;
}

.values-title {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 24px;
}

.values-main p {
    font-size: 18px;
    color: #7c839b;
    line-height: 1.6;
}

.value-card {
    background-color: #dce9ff;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid #c6c6cd;
}

.value-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 81, 213, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.value-icon .material-symbols-outlined {
    color: #0051d5;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.value-card p {
    font-size: 14px;
    color: #45464d;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.principle-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background-color: #f8f9ff;
    border-radius: 16px;
    border: 1px solid #c6c6cd;
}

.principle-item .material-symbols-outlined {
    color: #0051d5;
    flex-shrink: 0;
}

.principle-item h4 {
    font-weight: 600;
    margin-bottom: 4px;
}

.principle-item p {
    font-size: 14px;
    color: #45464d;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
}

.contact-info {
    background-color: #0f172a;
    color: #ffffff;
    padding: 64px;
}

.contact-info h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 32px;
}

.contact-info > p {
    color: #94a3b8;
    font-size: 18px;
    margin-bottom: 48px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-label {
    display: block;
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 4px;
}

.contact-value {
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.contact-form {
    padding: 64px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #0b1c30;
    background: transparent;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0051d5;
}

.form-group label {
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 16px;
    color: #64748b;
    transition: all 0.2s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 12px;
    color: #0051d5;
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    resize: vertical;
}

.form-group textarea:focus {
    border-color: #0051d5;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0b1c30;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-brand p {
    color: #64748b;
    font-size: 14px;
}

.footer-nav {
    display: flex;
    gap: 96px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0b1c30;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #64748b;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #0b1c30;
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding: 120px 24px 60px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .stats .container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about .container {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        max-width: 500px;
        margin: 0 auto 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .values-main {
        text-align: center;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .navbar .btn {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .stats .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form {
        padding: 32px;
    }
    
    .values-main {
        padding: 32px;
    }
    
    .values-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-secondary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .hero-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        max-width: 100%;
    }
    
    .about-images {
        grid-template-columns: 1fr;
    }
    
    .about-images img.mt-8 {
        margin-top: 0;
    }
}

/* ========================================
   Mobile Menu
   ======================================== */
.nav-links.active {
    display: flex;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    padding: 24px;
    gap: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.nav-links.active .nav-link {
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
}

/* ========================================
   Legal Pages (Termos e Privacidade)
   ======================================== */
.legal-main {
    padding: 128px 0 80px;
    background-color: #f8f9ff;
}

.legal-header {
    margin-bottom: 48px;
}

.legal-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 16px;
}

.legal-update {
    font-size: 18px;
    color: #45464d;
}

.legal-content {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #c6c6cd;
}

.legal-section {
    margin-bottom: 48px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #c6c6cd;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 24px;
}

.legal-section p {
    color: #45464d;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-section ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    color: #45464d;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-highlight {
    background-color: #eff4ff;
    border-color: #0051d5;
}

.legal-cta {
    margin-top: 64px;
    padding: 40px;
    background-color: #eff4ff;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 81, 213, 0.1);
}

.legal-cta p {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 24px;
}

/* ========================================
   Presell Page (Link)
   ======================================== */
.presell-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.presell-header {
    position: fixed;
}

.presell-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 40px;
}

.presell-content {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.presell-text h1 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
}

.presell-text p {
    font-size: 18px;
    color: #45464d;
    margin-bottom: 48px;
}

/* Hold Button */
.hold-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
}

.hold-button-wrapper {
    position: relative;
    width: 96px;
    height: 96px;
}

.hold-progress-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    transform: rotate(-90deg);
}

.hold-progress-bg {
    fill: none;
    stroke: #d3e4fe;
    stroke-width: 2;
}

.hold-progress-circle {
    fill: none;
    stroke: #0051d5;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.3s ease-out;
}

.hold-button {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background-color: #000000;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hold-button:hover {
    transform: scale(1.02);
}

.hold-button:active,
.hold-button.holding {
    transform: scale(1.02);
}

.hold-button .material-symbols-outlined {
    font-size: 40px;
}

.hold-button.completed {
    background-color: #0051d5;
}

.hold-instructions {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0051d5;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hold-instructions .material-symbols-outlined {
    font-size: 16px;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.badge-item .material-symbols-outlined {
    color: #0051d5;
}

.badge-item span:last-child {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #45464d;
}

/* Presell Footer */
.presell-footer {
    margin-top: auto;
}

.footer-links-simple {
    display: flex;
    gap: 24px;
}

.footer-links-simple a {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

.footer-links-simple a:hover {
    color: #0b1c30;
}

.footer-icons {
    display: flex;
    gap: 16px;
}

.footer-icons .material-symbols-outlined {
    color: #131b2e;
}

/* ========================================
   Responsive - Legal & Presell
   ======================================== */
@media (max-width: 768px) {
    .legal-main {
        padding: 100px 0 60px;
    }
    
    .legal-header h1 {
        font-size: 32px;
    }
    
    .legal-content {
        padding: 24px;
    }
    
    .legal-section {
        padding: 24px;
    }
    
    .legal-section h2 {
        font-size: 20px;
    }
    
    .legal-cta {
        padding: 24px;
    }
    
    .legal-cta p {
        font-size: 18px;
    }
    
    .presell-text h1 {
        font-size: 24px;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .footer-links-simple {
        flex-direction: column;
        gap: 12px;
    }
}
