@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --bg-dark: #090d16;
    --bg-card: rgba(30, 41, 59, 0.4);
    --bg-card-hover: rgba(30, 41, 59, 0.7);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-hover: rgba(99, 102, 241, 0.4);
    
    --primary: #6366f1; /* Indigo */
    --primary-glow: rgba(99, 102, 241, 0.15);
    --secondary: #a855f7; /* Purple */
    --accent: #14b8a6; /* Teal */
    
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset & Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-secondary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

.glass-card p,
.timeline-content p,
.cta-banner p,
.footer p,
.text-muted {
    color: var(--text-secondary) !important;
}

/* Background Glowing Orbs */
.glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

.orb-1 {
    top: 10%;
    right: -100px;
    background: var(--primary);
}

.orb-2 {
    top: 50%;
    left: -150px;
    background: var(--secondary);
}

.orb-3 {
    bottom: 10%;
    right: -100px;
    background: var(--accent);
}

/* Custom Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
}

/* Navbar Custom Styling */
.navbar-custom {
    background: rgba(9, 13, 22, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-custom.scrolled {
    padding: 0.6rem 0;
    background: rgba(9, 13, 22, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.nav-link-custom {
    color: var(--text-secondary) !important;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1rem !important;
}

.nav-link-custom:hover {
    color: var(--text-primary) !important;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition);
}

.nav-link-custom:hover::after {
    width: 70%;
}

/* Hero Section */
.hero-section {
    padding: 10rem 0 6rem;
    position: relative;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 30%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 1.5rem 0 2rem;
}

/* Custom Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
    color: #fff;
}

.btn-secondary-custom {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color-hover);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-secondary-custom:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-primary);
    color: var(--text-primary);
}

/* Section Header */
.section-title-container {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    background: var(--primary-glow);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.glass-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--primary-glow);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: var(--transition);
}

.glass-card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    transform: scale(1.1);
}

/* Differentials list */
.differential-card {
    padding: 2rem;
}

.differential-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

/* Timeline Process Styling */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 80%;
    background: linear-gradient(180deg, var(--primary), var(--secondary), transparent);
    top: 10%;
    z-index: 1;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.timeline-content {
    width: 45%;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.timeline-item:hover .timeline-content {
    border-color: var(--border-color-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.timeline-number {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-primary);
    z-index: 3;
    transition: var(--transition);
    box-shadow: 0 0 15px var(--primary-glow);
}

.timeline-item:hover .timeline-number {
    background: var(--primary);
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.6);
}

.timeline-empty {
    width: 45%;
}

/* Alternate timeline items alignment */
.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

/* Call To Action Banner */
.cta-banner {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
    border: 1px solid var(--border-color-hover);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Footer Section */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    background: rgba(9, 13, 22, 0.95);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    margin-right: 1.5rem;
}

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

/* Responsive adjustments */
@media (max-width: 991px) {
    .timeline::before {
        left: 30px;
        height: 85%;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-bottom: 3rem;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }
    
    .timeline-empty {
        display: none;
    }
    
    .timeline-number {
        left: 30px;
        transform: translate(-50%, 0);
    }
    
    .hero-section {
        padding: 8rem 0 4rem;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===========================
   Contact Section
   =========================== */

.contact-info-card,
.contact-form-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

/* Empurra o botão do WhatsApp para o fundo do card de info */
.contact-info-card {
    justify-content: space-between;
}

/* O formulário preenche toda a altura disponível */
.contact-form-card form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form-card form .row {
    flex: 1;
}

/* Contact Info List */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--primary-glow);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-list li:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}

/* Form Labels */
.form-label-custom {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

/* Input Wrapper with Icon */
.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    z-index: 2;
    transition: var(--transition);
}

.textarea-icon {
    top: 1rem;
    transform: none;
}

/* Inputs, Selects, Textareas */
.form-input-custom {
    width: 100%;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.8rem 1rem 0.8rem 2.8rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

.form-input-custom::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-input-custom:focus {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.input-wrapper:focus-within .input-icon {
    color: var(--primary);
}

/* Select arrow */
.form-select-custom {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.form-select-custom option {
    background-color: #1e293b;
    color: var(--text-primary);
}

/* Textarea */
.form-textarea-custom {
    resize: vertical;
    min-height: 130px;
    padding-top: 0.8rem;
}

/* Feedback message */
.form-feedback-msg {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
}

.form-feedback-msg.success {
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.3);
    color: #2dd4bf;
}

.form-feedback-msg.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* ===========================
   Price Banner Section
   =========================== */

.price-banner-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    margin: 2rem 0;
}

/* Animated gradient background */
.price-banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 30%, #4c1d95 60%, #1e1b4b 100%);
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    z-index: 0;
}

@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Decorative orbs inside the banner */
.price-banner-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}

.price-banner-orb.orb-left {
    width: 350px;
    height: 350px;
    background: #6366f1;
    top: -80px;
    left: -80px;
}

.price-banner-orb.orb-right {
    width: 300px;
    height: 300px;
    background: #a855f7;
    bottom: -60px;
    right: -60px;
}

/* Banner content wrapper */
.price-banner-content {
    position: relative;
    z-index: 1;
}

/* Pulsing icon badge */
.price-badge-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.price-icon-badge {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.6);
}

.price-pulse-ring {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid rgba(99, 102, 241, 0.6);
    animation: pulsRing 2s ease-out infinite;
}

@keyframes pulsRing {
    0%   { transform: scale(1);   opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Stars row */
.price-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.price-stars span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Main title */
.price-banner-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.price-highlight {
    background: linear-gradient(90deg, #fbbf24, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

/* Subtitle */
.price-banner-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* Chips */
.price-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.price-chip {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    backdrop-filter: blur(6px);
}

.price-chip i {
    color: #4ade80;
}

/* CTA button inside banner */
.btn-price-cta {
    font-size: 1.05rem;
    padding: 0.9rem 2.5rem;
    box-shadow: 0 6px 30px rgba(99, 102, 241, 0.5);
    animation: floatBtn 3s ease-in-out infinite;
}

@keyframes floatBtn {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-5px); }
}

.btn-price-cta:hover {
    animation: none;
    transform: translateY(-3px) scale(1.02);
}
