/* ========================================
   DIDA SCHNEIDER - WEBSITE STYLES
   Paleta inspirada no Instagram:
   Terracota, Dourado, Azul Royal,
   Laranja queimado, Tons terrosos
   ======================================== */

/* === CSS VARIABLES === */
:root {
    /* Primary palette */
    --terracotta: #C8553D;
    --terracotta-light: #E07A5F;
    --terracotta-dark: #A3422F;
    --gold: #D4A853;
    --gold-light: #F0D68A;
    --gold-dark: #B8892E;

    /* Secondary palette */
    --royal-blue: #2D4A8A;
    --royal-blue-light: #4A6DB5;
    --deep-red: #8B2635;
    --burnt-orange: #D97E2B;

    /* Neutrals - warm */
    --cream: #FFF8F0;
    --cream-dark: #F5EBE0;
    --warm-white: #FFFDF9;
    --warm-gray: #8B7E74;
    --warm-gray-light: #B5A99A;
    --warm-dark: #3D3028;
    --warm-darker: #2A1F17;

    /* Functional */
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;

    /* Typography */
    --font-display: 'Caveat', cursive;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 6rem 0;
    --container-width: 1200px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 253, 249, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.nav.scrolled {
    border-bottom-color: rgba(200, 85, 61, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--terracotta);
    transition: var(--transition);
}

.nav-logo:hover {
    color: var(--terracotta-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--warm-dark);
    transition: var(--transition);
    position: relative;
}

.nav-menu a:not(.nav-cta):hover {
    color: var(--terracotta);
}

.nav-menu a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: var(--transition);
}

.nav-menu a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--terracotta);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 85, 61, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--warm-dark);
    transition: var(--transition);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 85, 61, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--terracotta);
    border-color: var(--terracotta);
}

.btn-secondary:hover {
    background: var(--terracotta);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--terracotta);
    border-color: var(--terracotta);
}

.btn-outline:hover {
    background: var(--terracotta);
    color: white;
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
    background: var(--terracotta);
    color: white;
    border-color: var(--terracotta);
}

.btn-small:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* === SECTION COMMON === */
.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--terracotta);
    margin-bottom: 0.5rem;
}

.section-tag--light {
    color: var(--gold-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--warm-darker);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--terracotta);
    font-style: italic;
}

.highlight-light {
    color: var(--gold-light);
    font-style: italic;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--warm-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 50%, #F9E4D4 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--terracotta);
    top: -150px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--gold);
    bottom: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--royal-blue);
    top: 40%;
    right: 30%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-10px, 15px) scale(0.95); }
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 600;
    color: var(--warm-darker);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.hero-proof-item {
    text-align: center;
}

.hero-proof-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--terracotta);
    font-weight: 600;
}

.hero-proof-item span {
    font-size: 0.85rem;
    color: var(--warm-gray);
}

.hero-proof-divider {
    width: 1px;
    height: 40px;
    background: var(--warm-gray-light);
    opacity: 0.5;
}

/* Hero Visual */
.hero-visual-mobile {
    display: none;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-frame {
    width: 600px;
    height: 730px;
    border-radius: 180px 180px 140px 140px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--terracotta-light), var(--gold));
    box-shadow: 0 30px 60px rgba(200, 85, 61, 0.15);
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: white;
    font-family: var(--font-display);
    font-size: 1.2rem;
    opacity: 0.8;
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    color: white;
}

.hero-floating-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-emoji {
    font-size: 1.5rem;
}

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

/* === ABOUT === */
.about {
    padding: var(--section-padding);
    background: var(--warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-frame {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gold), var(--terracotta-light));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-accent-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--terracotta);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(200, 85, 61, 0.3);
    text-align: center;
}

.accent-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
}

.accent-text {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.3;
}

.about-content .section-tag {
    display: block;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--warm-gray);
    font-size: 1.05rem;
}

.about-text strong {
    color: var(--warm-dark);
}

.about-text-expanded {
    display: none;
}

.about-text-expanded.active {
    display: block;
}

.about-read-more {
    background: none;
    border: none;
    color: var(--terracotta);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    transition: opacity 0.3s ease;
}

.about-read-more:hover {
    opacity: 0.7;
}

.about-destaque {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--warm-dark);
    margin-bottom: 1.5rem !important;
}

.about-values {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cream);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.value-icon {
    font-size: 1.2rem;
}

/* === SERVICES === */
.services {
    padding: var(--section-padding);
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition);
    border: 1px solid rgba(200, 85, 61, 0.08);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta), var(--gold));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(200, 85, 61, 0.1);
}

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

.service-card--featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--warm-darker) 0%, var(--terracotta-dark) 100%);
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-card--featured::before {
    display: none;
}

.service-card--featured p,
.service-card--featured li {
    color: rgba(255, 255, 255, 0.85);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-includes {
    margin-bottom: 2rem;
}

.service-includes li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--warm-gray);
}

.service-includes li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.7rem;
}

.service-card--featured .service-includes li::before {
    color: var(--gold-light);
}

.service-card--featured .btn-primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--warm-darker);
}

.service-card--featured .btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

/* === PRODUCTS === */
.products {
    padding: var(--section-padding);
    background: var(--warm-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(200, 85, 61, 0.08);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(200, 85, 61, 0.1);
}

.product-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--cream-dark), var(--cream));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.product-info {
    padding: 1.8rem;
}

.product-tag {
    display: inline-block;
    background: var(--cream);
    color: var(--terracotta);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--warm-gray);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--terracotta);
}

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

.testimonials-zoom {
    text-align: center;
    margin-bottom: 2.5rem;
}

.testimonials-zoom-img {
    max-width: 380px;
    width: 50%;
    border-radius: 12px;
    display: inline-block;
}

.testimonials-zoom-caption {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-style: italic;
    color: var(--warm-gray);
    margin-top: 0.8rem;
}

.testimonials-carousel {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.carousel-track {
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    display: none;
}

.carousel-slide.active {
    display: block;
    animation: carouselFadeIn 0.5s ease;
}

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

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--warm-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--terracotta), var(--gold));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--warm-gray);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--terracotta-light);
    background: transparent;
    color: var(--terracotta);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--terracotta);
    color: white;
    border-color: var(--terracotta);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cream-dark);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--terracotta);
    transform: scale(1.2);
}

/* === PHOTO BREAK CAPTIONED === */
.photo-break--captioned {
    padding: 3rem 0;
}

.photo-break--captioned .container {
    max-width: var(--container-width);
    padding: 0 2rem;
}

.photo-break--captioned .photo-break-img--rounded {
    border-radius: 16px;
    max-width: 420px;
    width: 60%;
    margin: 0 auto;
    display: block;
    filter: none;
}

.photo-break-caption {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--warm-gray);
    margin-top: 1.2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* === INSTAGRAM SECTION === */
.instagram-section {
    padding: var(--section-padding);
    background: var(--warm-white);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.insta-item {
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    transition: var(--transition);
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.insta-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

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

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

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

.faq-list:not(.faq-list--expanded) .faq-item:nth-child(n+4) {
    display: none !important;
}

.faq-show-all {
    display: block;
    margin: 2rem auto 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--terracotta);
    background: none;
    padding: 0.7rem 2rem;
    border: 1px solid var(--terracotta);
    border-radius: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-show-all:hover {
    background: var(--terracotta);
    color: white;
}

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

.faq-item {
    border-bottom: 1px solid var(--cream-dark);
    margin-bottom: 0;
}

.faq-question {
    padding: 1.5rem 0;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--warm-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--terracotta);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

details[open] .faq-question::after {
    content: '-';
}

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

.faq-answer {
    padding: 0 0 1.5rem 0;
}

.faq-answer p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--warm-gray);
}

.faq-read-more {
    color: var(--terracotta);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.faq-read-more:hover {
    opacity: 0.7;
}

/* === WHATSAPP FLOATING === */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* === CONTACT === */
.contact {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--warm-darker) 0%, var(--terracotta-dark) 50%, var(--deep-red) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    top: -200px;
    right: -200px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.contact-desc {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

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

.whatsapp-btn:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.email-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.email-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--warm-darker);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--cream-dark);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--warm-dark);
    background: var(--warm-white);
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--warm-gray-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(200, 85, 61, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238B7E74' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn-primary {
    margin-top: 0.5rem;
    padding: 1rem;
    font-size: 1.05rem;
}

/* === FOOTER === */
.footer {
    background: var(--warm-darker);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

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

.footer-social a:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.2rem;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* === SCROLL ANIMATIONS === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* === SERVICES ALTERNATING BLOCKS === */
.services-alt {
    padding: var(--section-padding);
    background: #fff;
    position: relative;
    overflow: hidden;
}

.services-alt .section-header {
    margin-bottom: 4rem;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.service-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-block--reverse {
    direction: rtl;
}

.service-block--reverse > * {
    direction: ltr;
}

.service-block-image {
    overflow: hidden;
    border-radius: 12px;
}

.service-block-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    filter: grayscale(15%);
    transition: filter 0.4s ease;
}

.service-block-image img:hover {
    filter: grayscale(0%);
}

.service-block-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--warm-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-block-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-block-text .btn {
    display: inline-block;
}

/* === EBOOKS SECTION === */
.ebooks-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.ebooks-subtitle {
    font-size: 1.05rem;
    color: var(--warm-gray);
    max-width: 550px;
    line-height: 1.7;
}

.ebooks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.ebook-card {
    background: var(--warm-white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--cream-dark);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.ebook-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(61, 48, 40, 0.08);
    border-color: transparent;
}

.ebook-card-image {
    width: 100%;
    overflow: hidden;
    background: var(--cream-dark);
}

.ebook-card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

.ebook-card:hover .ebook-card-image img {
    transform: scale(1.02);
}

.ebook-card-content {
    padding: 1.5rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ebook-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--warm-darker);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.ebook-card-desc {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.25rem;
}

.ebook-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
}

.ebook-card-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--warm-darker);
}

.ebook-card-footer .btn {
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
    white-space: nowrap;
}

/* Ebook Bundle */
.ebook-bundle {
    border: 2px solid var(--terracotta);
    border-radius: 12px;
    padding: 1.75rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--warm-white);
    position: relative;
}

.ebook-bundle-label {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--warm-darker);
    flex: 1;
}

.ebook-price-bundle {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--terracotta);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.ebook-bundle .btn {
    flex-shrink: 0;
    font-size: 1.1rem;
    padding: 0.85rem 2.5rem;
}

/* === PHOTO BREAK === */
.photo-break {
    padding: 0;
    overflow: hidden;
}

.photo-break .container {
    max-width: 100%;
    padding: 0;
}

.photo-break-img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%);
}

.photo-break-img.photo-compact {
    width: 50%;
    margin: 0 auto;
    border-radius: 16px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-proof {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-visual-mobile {
        display: flex;
        justify-content: center;
        margin: 1.5rem 0;
    }

    .hero-image-frame {
        width: 280px;
        height: 340px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-frame {
        max-width: 400px;
        margin: 0 auto;
    }

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

    .service-card--featured {
        grid-template-columns: 1fr;
    }

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

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

    .ebook-bundle {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2rem;
    }

    .service-block,
    .service-block--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 1.5rem;
        margin-bottom: 3rem;
        padding-bottom: 3rem;
    }

    .service-block-image img {
        height: 250px;
    }

    .service-block-text h3 {
        font-size: 1.6rem;
    }

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

    .ebook-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-proof {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-proof-divider {
        width: 40px;
        height: 1px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

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

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .about-accent-card {
        right: 10px;
        bottom: -10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.8rem;
    }

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

    .faq-question {
        font-size: 1.1rem;
        padding: 1.2rem 0;
    }

    .whatsapp-float {
        bottom: 1.2rem;
        right: 1.2rem;
        width: 52px;
        height: 52px;
    }

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

/* === LEAD MAGNET BANNER === */
.lead-magnet {
    background: linear-gradient(135deg, #3D3028 0%, #5A4035 50%, #3D3028 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.lead-magnet::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.lead-magnet-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.lead-magnet-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--warm-darker);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.2rem;
}

.lead-magnet-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.lead-magnet-title .highlight {
    color: var(--gold-light);
}

.lead-magnet-desc {
    font-size: 1.05rem;
    color: rgba(255, 248, 240, 0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.lead-magnet-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.lead-magnet-list li {
    color: rgba(255, 248, 240, 0.9);
    font-size: 0.95rem;
    padding: 0.4rem 0;
    padding-left: 1.6rem;
    position: relative;
}

.lead-magnet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.lead-magnet-btn {
    font-size: 1.05rem;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--warm-darker);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
}

.lead-magnet-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 83, 0.3);
}

.lead-magnet-trust {
    font-size: 0.8rem;
    color: rgba(255, 248, 240, 0.5);
    margin-top: 0.8rem;
}

/* Ebook mockup visual */
.lead-magnet-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lead-magnet-ebook-frame {
    perspective: 800px;
}

.lead-magnet-cover {
    width: 260px;
    height: 370px;
    border-radius: 4px 10px 10px 4px;
    overflow: hidden;
    position: relative;
    box-shadow:
        -8px 8px 30px rgba(0, 0, 0, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.25);
    transform: rotateY(-6deg);
    transition: transform 0.4s ease;
    border-left: 5px solid var(--terracotta);
}

.lead-magnet-cover:hover {
    transform: rotateY(0deg);
}

.lead-magnet-cover-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lead-magnet-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(58, 46, 40, 0.55) 0%,
        rgba(58, 46, 40, 0.15) 40%,
        rgba(58, 46, 40, 0.15) 60%,
        rgba(58, 46, 40, 0.65) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.8rem 1.2rem;
    text-align: center;
}

.lead-magnet-cover-title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.lead-magnet-cover-sub {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.03em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.lead-magnet-cover-ornament {
    font-size: 0.8rem;
    color: var(--gold-light);
    letter-spacing: 0.3em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.lead-magnet-cover-author {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Footer ebook link highlight */
.footer-ebook-link {
    color: var(--gold-light) !important;
    font-weight: 500;
}

/* Lead magnet responsive */
@media (max-width: 768px) {
    .lead-magnet {
        padding: 3.5rem 0;
    }

    .lead-magnet-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .lead-magnet-title {
        font-size: 2.2rem;
    }

    .lead-magnet-list {
        text-align: left;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
    }

    .lead-magnet-btn {
        width: 100%;
        text-align: center;
    }

    .lead-magnet-cover {
        width: 200px;
        height: 285px;
        transform: rotateY(0);
    }

    .lead-magnet-cover-title {
        font-size: 1.2rem;
    }
}
