/* 
    Iluminar Fotografia - Guia de Looks
    Design System & Styles
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Mulish:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    /* Brand Colors - Iluminar Magnética */
    --primary: #8E6F51;
    --primary-dark: #7A5E44;
    --secondary: #3D2E1E;
    --bg-light: #F5F0EB;
    --bg-dark: #1a1a1a;
    --text-dark: #3D2E1E;
    --text-body: #4A3D32;
    --text-light: #6B5D50;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(142, 111, 81, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Mulish', sans-serif;
    --font-accent: 'Playfair Display', serif;
    --font-alt: 'Poppins', sans-serif;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

    /* Radius */
    --radius: 20px;

    /* Spacing */
    --section-padding: 100px 5%;
    --container-width: 900px;
    --container-wide: 1200px;
}

/* ─── NAVIGATION ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(245, 240, 235, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(61, 46, 30, 0.05);
}

.navbar .container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.navbar:not(.scrolled) .nav-logo {
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.navbar.scrolled .nav-links a {
    color: var(--secondary);
}

.nav-links a.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-trigger {
    cursor: pointer;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 240px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(61, 46, 30, 0.15);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 16px !important;
    color: var(--text-dark) !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.nav-dropdown-menu a svg {
    width: 18px !important;
    height: 18px !important;
    stroke: var(--primary);
    stroke-width: 1.5;
    flex-shrink: 0;
}

.nav-dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary) !important;
}

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

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-body);
    font-size: 1.15rem;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--font-alt);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-alt);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(192, 155, 114, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 155, 114, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

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

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content .eyebrow {
    color: var(--white);
    opacity: 0.8;
}

.hero h1 {
    font-size: 5rem;
    color: var(--white);
    margin-bottom: 25px;
}

.hero-text {
    font-size: 1.3rem;
    margin-bottom: 45px;
    font-weight: 300;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scrolldown {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
}

.scrolldown .line {
    width: 1px;
    height: 60px;
    background: var(--white);
    margin: 10px auto 0;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* INTRO */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-text h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.visual-card {
    position: relative;
    z-index: 1;
}

.visual-card img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
}

.visual-card::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    z-index: -1;
}

/* THE PLAN */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.plan-step {
    text-align: center;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--primary-light);
    margin-bottom: -20px;
    opacity: 0.5;
}

.plan-step h3 {
    margin-bottom: 15px;
}

/* LOOKS INTERATIVO */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--white);
    border: 1px solid #eee;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-alt);
    font-size: 0.9rem;
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.6s ease;
}

.tab-pane.active {
    display: block;
}

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

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

.interaction-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tip-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.tip-card img {
    height: 450px;
    width: 100%;
    object-fit: cover;
}

.tip-content {
    padding: 25px;
}

.tip-content h3 {
    font-size: 1.4rem;
}

.read-more {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.info-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow);
}

.info-card h3 {
    margin-bottom: 20px;
}

.info-card ul li {
    margin-bottom: 15px;
}

/* AVOID */
.avoid-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.avoid-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
}

.avoid-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* LEAD CAPTURE */
.capture-box {
    display: flex;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.capture-text {
    padding: 60px;
    flex: 1;
    background: var(--primary);
    color: var(--white);
}

.capture-text h2 {
    color: var(--white);
    font-size: 2.5rem;
}

.capture-form {
    padding: 60px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.capture-form input {
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-family: var(--font-body);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--text-body);
    opacity: 0.6;
    margin-top: 15px;
}

/* FAQ */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 5px;
}

.faq-question {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.15rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-answer p {
    padding-bottom: 25px;
    color: var(--text-body);
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 900px;
    border-radius: 20px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    color: var(--text-dark);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-image {
    display: flex;
    align-items: stretch;
    background: var(--bg-light);
}

.modal-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 0;
}

.modal-info {
    padding: 50px;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.modal-info h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.modal-text {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--text-body);
}

.modal-tips {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
}

.modal-tips h4 {
    margin-bottom: 10px;
    font-family: var(--font-alt);
    color: var(--primary);
}

.modal-tips ul li {
    color: var(--text-body);
    font-size: 0.95rem;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .intro-grid,
    .plan-grid,
    .capture-box,
    .modal-grid {
        grid-template-columns: 1fr;
    }

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

    .capture-text,
    .capture-form {
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .section-header h2 {
        font-size: 2.2rem;
    }

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

    .hero-btns {
        flex-direction: column;
    }

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

    .modal-info {
        padding: 30px;
    }
}

/* ─── PADRONIZACAO LISTAS PRICE CARD (TIPO PARTOS) ─── */

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
    flex-grow: 1;
}

.price-card li,
.price-card ul li {
    padding: 10px 0 10px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    position: relative;
    margin-bottom: 0;
}

.price-card li::before,
.price-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.price-card li strong,
.price-card ul li strong {
    color: var(--primary);
}