/* pre-venda/assets/css/style.css */
:root {
    --terracota: #C65D3B;
    --terracota-dark: #A84A2C;
    --terracota-light: #D97A56;
    --terracota-soft: #FDF4F0;
    --azul-escuro: #0D2D31;
    --azul-escuro-light: #1A454A;
    --dourado: #8B783F;
    --dourado-light: #B8A25A;
    --branco: #F8F8F8;
    --branco-puro: #FFFFFF;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #DC2626;
    --info: #3B82F6;
    --neutral-100: #F3F4F6;
    --neutral-200: #E5E7EB;
    --neutral-300: #D1D5DB;
    --neutral-400: #9CA3AF;
    --neutral-500: #6B7280;
    --neutral-600: #4B5563;
    --neutral-700: #374151;
    --neutral-800: #1F2937;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--terracota-soft) 0%, var(--branco) 100%);
    min-height: 100vh;
}

/* ============================================ */
/* TIPOGRAFIA */
/* ============================================ */
h1,
h2,
h3,
.logo-text {
    font-family: 'Cormorant Garamond', serif;
}

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

/* ============================================ */
/* HEADER */
/* ============================================ */
.header {
    background: var(--azul-escuro);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo i {
    font-size: 2rem;
    color: var(--dourado);
}

.logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dourado);
}

.logo small {
    display: block;
    font-size: 0.6rem;
    color: var(--terracota);
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    color: var(--branco);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--dourado);
}

/* ============================================ */
/* BOTÕES */
/* ============================================ */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--terracota), var(--terracota-dark));
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(198, 93, 59, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: var(--azul-escuro);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--azul-escuro-light);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--terracota);
    color: var(--terracota);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--terracota);
    color: white;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* ============================================ */
/* HERO SECTION */
/* ============================================ */
.hero {
    background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul-escuro-light) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '✨';
    position: absolute;
    font-size: 15rem;
    opacity: 0.05;
    right: -50px;
    bottom: -80px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================ */
/* FEATURES */
/* ============================================ */
.features {
    padding: 60px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--terracota);
    margin-bottom: 15px;
}

.feature-card h3 {
    color: var(--azul-escuro);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--neutral-600);
    font-size: 0.9rem;
}

/* ============================================ */
/* TESTIMONIAL */
/* ============================================ */
.testimonial {
    background: var(--terracota-soft);
    padding: 50px;
    border-radius: 30px;
    margin: 40px 0;
    text-align: center;
}

.testimonial i {
    font-size: 3rem;
    color: var(--dourado);
    opacity: 0.5;
}

.testimonial p {
    font-size: 1.1rem;
    color: var(--neutral-700);
    margin: 20px 0;
    font-style: italic;
}

/* ============================================ */
/* QUIZ CARD */
/* ============================================ */
.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.quiz-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.progress-bar {
    background: var(--neutral-200);
    border-radius: 10px;
    height: 8px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-fill {
    background: var(--terracota);
    width: 0%;
    height: 100%;
    transition: width 0.3s ease;
}

.question-number {
    color: var(--dourado);
    font-size: 0.85rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.question-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--azul-escuro);
    margin-bottom: 30px;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--neutral-100);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.option:hover {
    background: var(--terracota-soft);
    border-color: var(--terracota);
}

.option.selected {
    background: var(--terracota-soft);
    border-color: var(--terracota);
}

.option input {
    width: 20px;
    height: 20px;
    accent-color: var(--terracota);
}

.option label {
    flex: 1;
    cursor: pointer;
    font-size: 1rem;
    color: var(--neutral-700);
}

/* ============================================ */
/* FORMULÁRIOS */
/* ============================================ */
.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--neutral-200);
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--terracota);
    box-shadow: 0 0 0 3px rgba(198, 93, 59, 0.1);
}

/* ============================================ */
/* RESULTADOS */
/* ============================================ */
.result-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.result-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.result-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--terracota), var(--terracota-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.result-icon i {
    font-size: 2.5rem;
    color: white;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.perfume-card {
    background: var(--neutral-100);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--neutral-200);
}

.perfume-card:hover {
    transform: translateY(-5px);
    border-color: var(--terracota);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.perfume-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 15px;
}

.perfume-name {
    font-weight: 700;
    color: var(--azul-escuro);
    margin-bottom: 5px;
}

.perfume-marca {
    color: var(--dourado);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.perfume-price {
    color: var(--terracota);
    font-weight: 700;
    margin-bottom: 15px;
}

/* ============================================ */
/* FOOTER */
/* ============================================ */
.footer {
    background: var(--azul-escuro);
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer p {
    margin: 5px 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ============================================ */
/* RESPONSIVO */
/* ============================================ */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

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

    .quiz-card {
        padding: 25px;
    }

    .question-text {
        font-size: 1.3rem;
    }

    .result-card {
        padding: 25px;
    }

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

    .btn-primary,
    .btn-whatsapp {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu {
        justify-content: center;
        flex-wrap: wrap;
    }

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