/* ============================================
   FAZENDA DAS PEDRAS - LP CASAMENTOS
   Design Romântico e Sofisticado
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Cores Românticas */
    --color-primary: #c9a962;
    --color-primary-dark: #b08d4a;
    --color-primary-light: #e8d5a8;

    --color-rose: #d4a5a5;
    --color-rose-light: #f5e6e6;
    --color-blush: #fdf4f4;

    --color-dark: #2d2d2d;
    --color-darker: #1a1a1a;
    --color-text: #4a4a4a;
    --color-text-light: #777777;
    --color-white: #ffffff;
    --color-cream: #faf8f5;

    --color-whatsapp: #25d366;

    /* Tipografia Romântica */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, sans-serif;

    /* Tamanhos */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;
    --text-6xl: 4.5rem;

    /* Espaçamentos */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Outros */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);

    --transition: 0.3s ease;
    --header-height: 80px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-dark);
}

.script-font {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--color-primary);
}

.section-eyebrow {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.section-eyebrow.light {
    color: var(--color-primary-light);
}

.section-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

.section-title.light {
    color: var(--color-white);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-light);
    max-width: 600px;
}

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

.section-header.center .section-subtitle {
    margin: 0 auto;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

section {
    padding: var(--space-16) 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: var(--text-sm);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    transition: all var(--transition);
    min-height: 48px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-dark);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-glass {
    background: rgba(255,255,255,0.15);
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255,255,255,0.25);
}

.btn-outline {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-primary);
}

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

.btn-whatsapp {
    background: var(--color-whatsapp);
    color: var(--color-white);
}

.btn-whatsapp:hover {
    background: #20ba5a;
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

.btn-lg {
    font-size: var(--text-base);
    padding: var(--space-4) var(--space-8);
    min-height: 56px;
}

.btn-block {
    width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    height: var(--header-height);
    transition: all var(--transition);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-img {
    height: 45px;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    justify-content: center;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: all var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    transform: translateX(100%);
    transition: transform var(--transition);
    padding: var(--space-6);
}

.nav.active {
    transform: translateX(0);
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.nav-list a {
    display: block;
    padding: var(--space-3) var(--space-4);
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius-md);
}

.nav-list a:hover {
    background: var(--color-cream);
    color: var(--color-primary-dark);
}

.nav-cta {
    background: var(--color-primary) !important;
    color: var(--color-dark) !important;
    text-align: center;
    margin-top: var(--space-4);
    border-radius: var(--radius-full) !important;
}

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

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
    animation: slowZoom 10s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5) 0%,
        rgba(0,0,0,0.3) 40%,
        rgba(0,0,0,0.5) 70%,
        rgba(0,0,0,0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: calc(var(--header-height) + var(--space-8)) var(--space-4) var(--space-8);
    max-width: 900px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-primary);
    padding: var(--space-2) var(--space-4);
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: var(--text-4xl);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: var(--space-6);
}

.hero-title .script-font {
    font-size: 1.1em;
    display: block;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto var(--space-8);
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

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

.trust-number {
    display: block;
    font-family: var(--font-serif);
    font-size: var(--text-3xl);
    font-weight: 500;
    color: var(--color-primary);
}

.trust-label {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

.trust-divider {
    width: 1px;
    background: rgba(255,255,255,0.2);
    display: none;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: none;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    margin: var(--space-3) auto 0;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 2px;
    animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro {
    background: var(--color-cream);
    text-align: center;
}

.intro-content {
    max-width: 700px;
    margin: 0 auto var(--space-12);
}

.intro-text {
    font-size: var(--text-lg);
    color: var(--color-text);
    margin-bottom: var(--space-4);
}

.intro-features {
    display: grid;
    gap: var(--space-6);
}

.intro-feature {
    background: var(--color-white);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-4);
    color: var(--color-primary);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.intro-feature h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
}

.intro-feature p {
    color: var(--color-text-light);
    font-size: var(--text-sm);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    background: var(--color-white);
}

.section-header {
    margin-bottom: var(--space-10);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}

.tab-btn {
    font-size: var(--text-sm);
    font-weight: 500;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    color: var(--color-text-light);
    border: 1px solid var(--color-text-light);
    transition: all var(--transition);
}

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

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item.large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-4);
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--color-white);
    font-size: var(--text-sm);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.gallery-cta {
    text-align: center;
    margin-top: var(--space-10);
}

.gallery-cta p {
    color: var(--color-text-light);
    margin-bottom: var(--space-4);
}

/* ============================================
   CEREMONY SECTION
   ============================================ */
.ceremony {
    background: var(--color-cream);
}

.ceremony-grid {
    display: grid;
    gap: var(--space-10);
}

.ceremony-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-4);
}

.ceremony-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.ceremony-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ceremony-img-secondary {
    border-radius: var(--radius-lg);
    overflow: hidden;
    align-self: end;
}

.ceremony-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ceremony-content p {
    font-size: var(--text-lg);
    color: var(--color-text);
    margin-bottom: var(--space-6);
}

.ceremony-features {
    margin-bottom: var(--space-6);
}

.ceremony-feature {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.ceremony-feature:last-child {
    border-bottom: none;
}

.cf-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    color: var(--color-primary);
}

.cf-icon svg {
    width: 100%;
    height: 100%;
}

.cf-content h4 {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.cf-content p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits {
    background: var(--color-white);
}

.benefits-grid {
    display: grid;
    gap: var(--space-6);
}

.benefit-card {
    padding: var(--space-6);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.benefit-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.benefit-number {
    font-family: var(--font-serif);
    font-size: var(--text-3xl);
    font-weight: 300;
    color: var(--color-primary-light);
    margin-bottom: var(--space-2);
}

.benefit-card h3 {
    font-family: var(--font-sans);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.benefit-card p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

/* ============================================
   SIMULATOR
   ============================================ */
.simulator {
    background: var(--color-dark);
    color: var(--color-white);
}

.simulator-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.simulator-header {
    background: linear-gradient(135deg, var(--color-dark), var(--color-darker));
    padding: var(--space-8);
    text-align: center;
}

.simulator-header p {
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto;
}

.simulator-form {
    padding: var(--space-6);
    color: var(--color-text);
}

.form-section {
    margin-bottom: var(--space-8);
}

.form-section h3 {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-sans);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    color: var(--color-dark);
    font-size: var(--text-sm);
    font-weight: 700;
    border-radius: 50%;
}

.form-grid {
    display: grid;
    gap: var(--space-4);
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-2);
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    transition: all var(--transition);
    min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.form-row {
    display: grid;
    gap: var(--space-4);
}

/* Extras Cards */
.extras-grid {
    display: grid;
    gap: var(--space-3);
}

.extra-card {
    display: block;
    cursor: pointer;
}

.extra-card input {
    display: none;
}

.extra-content {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    border: 2px solid #eee;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.extra-card input:checked + .extra-content {
    border-color: var(--color-primary);
    background: var(--color-cream);
}

.extra-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--color-primary);
}

.extra-icon svg {
    width: 100%;
    height: 100%;
}

.extra-content h4 {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: 2px;
}

.extra-content p {
    font-size: var(--text-xs);
    color: var(--color-text-light);
    margin-bottom: 0;
}

.extra-price {
    margin-left: auto;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-primary-dark);
    white-space: nowrap;
}

/* Simulator Result */
.simulator-result {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin-top: var(--space-6);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.result-header h3 {
    font-family: var(--font-serif);
    font-size: var(--text-xl);
}

.result-note {
    font-size: var(--text-xs);
    color: var(--color-text-light);
}

.result-breakdown {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: var(--space-4);
    margin-bottom: var(--space-4);
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    font-size: var(--text-sm);
    padding: var(--space-2) 0;
}

.result-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
}

.result-total span {
    font-size: var(--text-base);
}

.result-total strong {
    font-family: var(--font-serif);
    font-size: var(--text-3xl);
    color: var(--color-primary-dark);
}

.result-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: var(--color-cream);
}

.testimonials-grid {
    display: grid;
    gap: var(--space-6);
}

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.testimonial-card.featured {
    box-shadow: var(--shadow-lg);
}

.testimonial-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: var(--space-6);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
}

.testimonial-card blockquote {
    font-family: var(--font-serif);
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-dark);
}

.testimonial-author span {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
    background: var(--color-white);
}

.timeline-steps {
    max-width: 600px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: var(--space-4);
    padding-bottom: var(--space-8);
    position: relative;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 56px;
    bottom: 0;
    width: 2px;
    background: var(--color-primary-light);
}

.timeline-step:last-child::before {
    display: none;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.step-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-dark);
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    font-weight: 600;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.step-icon svg {
    width: 24px;
    height: 24px;
}

.step-content h3 {
    font-family: var(--font-sans);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.step-content p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    background: var(--color-cream);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.faq-item.open {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-6);
    text-align: left;
    font-weight: 600;
    font-size: var(--text-base);
    color: var(--color-dark);
    transition: all var(--transition);
}

.faq-question:hover {
    color: var(--color-primary-dark);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-primary);
    transition: transform var(--transition);
}

.faq-item.open .faq-question {
    color: var(--color-primary-dark);
    background: var(--color-cream);
}

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

.faq-answer p {
    padding: var(--space-4) var(--space-6) var(--space-6);
    font-size: var(--text-base);
    color: var(--color-text);
    line-height: 1.8;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.faq-answer a {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    background: linear-gradient(135deg, var(--color-dark), var(--color-darker));
    color: var(--color-white);
}

.contact-wrapper {
    display: grid;
    gap: var(--space-10);
}

.contact-content p {
    color: rgba(255,255,255,0.7);
    font-size: var(--text-lg);
    margin-bottom: var(--space-6);
}

.contact-info {
    margin-bottom: var(--space-6);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    color: rgba(255,255,255,0.8);
    transition: color var(--transition);
}

.contact-link:hover {
    color: var(--color-primary);
}

.contact-link svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.contact-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
}

.contact-form h3 {
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
    text-align: center;
    margin-bottom: var(--space-6);
    color: var(--color-dark);
}

.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-text-light);
    cursor: pointer;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    min-height: auto;
    margin-top: 2px;
}

.form-checkbox a {
    color: var(--color-primary-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-darker);
    color: rgba(255,255,255,0.6);
    padding: var(--space-12) 0 var(--space-6);
}

.footer-content {
    display: grid;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.footer-logo {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: var(--space-4);
}

.footer-brand p {
    font-size: var(--text-sm);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer-links a {
    font-size: var(--text-sm);
    transition: color var(--transition);
}

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

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--color-primary);
    color: var(--color-dark);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--space-6);
    text-align: center;
    font-size: var(--text-sm);
}

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

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-whatsapp);
    color: var(--color-white);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (min-width: 768px) {
    .section-title {
        font-size: var(--text-4xl);
    }

    /* Header */
    .mobile-menu-btn { display: none; }

    .nav {
        position: static;
        transform: none;
        padding: 0;
        background: transparent;
    }

    .nav-list {
        flex-direction: row;
        gap: var(--space-1);
    }

    .nav-list a {
        padding: var(--space-2) var(--space-3);
        font-size: var(--text-sm);
    }

    .nav-cta {
        margin-top: 0;
        margin-left: var(--space-2);
    }

    /* Hero */
    .hero-title { font-size: var(--text-5xl); }
    .hero-ctas {
        flex-direction: row;
        justify-content: center;
    }
    .trust-divider { display: block; }
    .hero-scroll { display: block; }

    /* Intro */
    .intro-features {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Gallery */
    .gallery-masonry {
        grid-template-columns: repeat(4, 1fr);
    }
    .gallery-item.large {
        grid-column: span 2;
    }

    /* Ceremony */
    .ceremony-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Simulator */
    .simulator-form { padding: var(--space-8); }
    .form-grid { grid-template-columns: repeat(2, 1fr); }
    .extras-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: repeat(2, 1fr); }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    .testimonial-card.featured {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .testimonial-card.featured .testimonial-image {
        aspect-ratio: auto;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* ============================================
   RESPONSIVE - DESKTOP
   ============================================ */
@media (min-width: 1024px) {
    section {
        padding: var(--space-20) 0;
    }

    .section-title {
        font-size: var(--text-5xl);
    }

    .hero-title {
        font-size: var(--text-6xl);
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .extras-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-prepare {
    opacity: 0;
    transform: translateY(30px);
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ============================================
   LIGHTBOX (GALERIA)
   ============================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.lightbox.active {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 1;
}

/* ============================================
   FORM SUCCESS MESSAGE
   ============================================ */
.form-success {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--color-success-light, #ecfdf5);
    border: 1px solid var(--color-success, #10b981);
    border-radius: var(--radius-lg);
    color: var(--color-success-dark, #065f46);
    margin-bottom: var(--space-4);
    animation: slideDown 0.3s ease;
}

.form-success svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-success, #10b981);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   FORM FIELD ERROR
   ============================================ */
.field-error {
    color: #ef4444;
    font-size: var(--text-xs);
    margin-top: var(--space-1);
    display: block;
}

input.error, select.error, textarea.error {
    border-color: #ef4444 !important;
}

/* ============================================
   CHARACTER COUNTER
   ============================================ */
.char-counter {
    display: block;
    text-align: right;
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    margin-top: var(--space-1);
}

.char-counter.warning {
    color: #f59e0b;
}

/* ============================================
   LOADING SPINNER
   ============================================ */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: var(--space-2);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   EXTRA CARD SELECTED STATE
   ============================================ */
.extra-card.selected {
    border-color: var(--color-gold);
    background: rgba(var(--color-gold-rgb, 156, 123, 78), 0.1);
}

.extra-card.selected::before {
    content: '';
    position: absolute;
    top: var(--space-2);
    right: var(--space-2);
    width: 20px;
    height: 20px;
    background: var(--color-gold);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

/* ============================================
   WHATSAPP FLOAT VISIBILITY
   ============================================ */
.whatsapp-float {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float.visible {
    opacity: 1;
    pointer-events: auto;
}

/* ============================================
   HEADER SCROLLED STATE
   ============================================ */
.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* ============================================
   GALLERY ITEM HOVER & HIDDEN
   ============================================ */
.gallery-item {
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ============================================
   FAQ ITEM OPEN STATE
   ============================================ */
.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

/* ============================================
   SIMULATOR RESULT TOTAL ANIMATION
   ============================================ */
#totalPrice {
    transition: transform 0.2s ease;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .animate-prepare { opacity: 1; transform: none; }
}
