﻿:root {
    /* Colors - Apple Inspired */
    --bg-white: #ffffff;
    --bg-light: #fbfbfd;
    --bg-dark: #000000;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --accent-brand: #3A5A40;
    /* Verde Lima Key Sofisticado */
    --accent-gray: #f5f5f7;

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Spacing */
    --section-padding: 140px 20px;
    --container-max-width: 1100px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    background-color: var(--bg-white);
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utilities */
h1 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.005em;
    margin-bottom: 20px;
}

h2 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.003em;
    margin-bottom: 24px;
}

p {
    font-size: 21px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-brand);
    color: white;
}

.btn-primary:hover {
    background-color: #344e41;
}

.btn-secondary {
    color: var(--accent-brand);
    background-color: transparent;
    padding: 12px 24px;
}

.btn-secondary:hover {
    text-decoration: underline;
}

/* Header */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -1.2px;
    color: var(--accent-brand);
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo span {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    margin-left: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}

.cta-small {
    background: var(--accent-brand);
    color: white !important;
    padding: 4px 12px;
    border-radius: 980px;
    opacity: 1 !important;
}

/* Accessibility: Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-brand);
    color: white;
    padding: 8px;
    z-index: 10001;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
    padding: 10px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Mobile Fullscreen Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.mobile-menu-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-link {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
}

.mobile-cta {
    font-size: 20px !important;
    margin-top: 10px;
}

/* Mobile Menu Animation Delay Stagger */
.mobile-menu-overlay.active li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-menu-overlay.active li:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-menu-overlay.active li:nth-child(5) {
    transition-delay: 0.5s;
}

/* Hero Section */
.full-height {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#hero {
    text-align: left;
    position: relative;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 70%);
    z-index: 1;
}

.apple-tv-hero {
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
}

/* Hero Carousel Structure */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.hero-slide .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-slide .gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(245, 245, 245, 0.95) 0%, rgba(245, 245, 245, 0.7) 40%, transparent 70%);
    z-index: 2;
}

.hero-slide .hero-container {
    position: relative;
    z-index: 3;
}

/* Carousel Dots Navigation */
.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dots .dot:hover {
    background-color: rgba(0, 0, 0, 0.5);
    transform: scale(1.2);
}

.carousel-dots .dot.active {
    background-color: var(--accent-brand);
    width: 24px;
    border-radius: 4px;
}

/* Adjust text color for light backgrounds */
.hero-slide .hero-text-content {
    max-width: 550px;
    color: var(--text-primary);
}

.hero-slide .hero-text-content h1 {
    color: var(--text-primary);
}

.hero-slide .hero-text-content p {
    color: var(--text-secondary);
}

.hero-slide .badge {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

.hero-slide .meta-info {
    color: var(--text-secondary);
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-text-content {
    max-width: 550px;
    color: white;
}

.hero-text-content h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero-text-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 25px;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.brand-eyebrow {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: -1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo-img {
    height: 100px;
    width: auto;
}

.brand-eyebrow span {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 1px;
    margin-left: 4px;
}

.meta-info {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.cta-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-white {
    background-color: white;
    color: black;
    font-weight: 600;
}

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.02);
}

.btn-icon {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Sections */
.section-padding {
    padding: var(--section-padding);
}

.light-bg {
    background-color: var(--bg-light);
}

.dark-section {
    background-color: var(--bg-dark);
    color: white;
}

.dark-section p {
    color: #a1a1a6;
}

/* Grid Layouts */
.grid-essence {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.essence-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.grid-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.grid-two-columns.reverse {
    direction: rtl;
}

.grid-two-columns.reverse .text-area {
    direction: ltr;
}

.rounded-img {
    width: 100%;
    border-radius: 20px;
    display: block;
}



/* Footer */
#main-footer {
    padding: 60px 0;
    background-color: var(--bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

#main-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.logo-footer {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 32px;
    letter-spacing: -1.5px;
    color: var(--accent-brand);
    margin-bottom: 20px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-info p {
    font-size: 12px;
    margin-bottom: 0;
}

.social-links a {
    color: var(--text-primary);
    font-size: 24px;
    margin-left: 20px;
}

/* Reveal Animations */
.reveal,
.reveal-delay,
.reveal-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-delay {
    transition-delay: 0.2s;
}

.reveal-delay-2 {
    transition-delay: 0.4s;
}

.reveal.active,
.reveal-delay.active,
.reveal-delay-2.active {
    opacity: 1;
    transform: translateY(0);
}

/* Header States */
#main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

/* Final CTA specific */
#final-cta .btn {
    margin: 10px;
}

.btn-large {
    padding: 18px 36px;
    font-size: 19px;
}

.max-width-p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer {
    font-size: 14px;
    font-style: italic;
    margin-top: 40px;
}

/* Responsive Fixes */
/* Responsive Fixes */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 20px;
    }

    /* Reveal Mobile Menu Button */
    .mobile-menu-toggle {
        display: flex;
        z-index: 1002;
    }

    /* Hide Desktop Nav */
    .nav-links.desktop-only {
        display: none;
    }

    .hero-bg img {
        opacity: 0.6;
    }

    #hero .content {
        padding-top: 60px;
    }

    /* Hero adjustments */
    .apple-tv-hero {
        padding-bottom: 40px;
    }

    .hero-text-content h1 {
        font-size: 2.5rem;
    }

    .hero-text-content p {
        font-size: 1.1rem;
    }

    /* Mobile Carousel Adjustments */
    .carousel-slide {
        flex: 0 0 65vw;
        height: 450px;
    }

    .carousel-slide.current-slide {
        flex: 0 0 85vw;
        width: 85vw;
        opacity: 1;
    }

    .carousel-track-container {
        padding: 0 10px;
    }
}

/* Apple Style Carousel */
.gallery-section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 80px;
    overflow: hidden;
}

.mb-large {
    margin-bottom: 60px;
}

.apple-carousel {
    position: relative;
    width: 100%;
    margin: 0 auto;
    /* max-width: 1400px; */
}

.carousel-track-container {
    padding: 0 20px;
    /* Reduced padding for more space */
    overflow: hidden;
}

.carousel-track {
    display: flex;
    padding: 20px 0;
    /* Add vertical padding for shadows */
    margin: 0;
    list-style: none;
    /* transition will be added via JS after initial position is set to avoid jump */
    gap: 20px;
    width: max-content;
    /* Ensure track is as wide as its children */
}

.carousel-slide {
    flex: 0 0 300px;
    /* Reduced default width to contrast with active */
    height: 600px;
    /* Slightly shorter for better proportions */
    position: relative;
    border-radius: 16px;
    background: #ffffff;
    /* White background for empty space */
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.9);
    opacity: 0.4;
    cursor: pointer;
}

.carousel-slide.current-slide {
    flex: 0 0 400px;
    /* Expanded active width (approx 30% larger than default 300px) */
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.carousel-slide img,
.carousel-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    pointer-events: none;
    /* Prevent drag issues on images */
}

/* Carousel Navigation Indicators */
.carousel-nav {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    margin-top: 30px;
    gap: 12px;
}

.carousel-indicator {
    border: 0;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.current-indicator {
    background: var(--bg-white);
    transform: scale(1.3);
}

/* Carousel Buttons */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-button:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-button--left {
    left: 20px;
}

.carousel-button--right {
    right: 20px;
}

.carousel-button.is-hidden {
    opacity: 0;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 85%;
        /* Wider on mobile */
        height: 500px;
    }

    .carousel-track-container {
        padding: 0 7.5%;
    }

    .carousel-button {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* 360 Rotation Showcase */
.spin-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    perspective: 1500px;
    cursor: pointer;
}

.spin-card {
    width: 100%;
    height: 550px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.spin-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    backface-visibility: hidden;
}

.spin-image-wrapper:hover .spin-card {
    transform: rotateY(10deg);
}

.spin-image-wrapper.rotating .spin-card {
    transform: rotateY(360deg);
}

.spin-hint {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.spin-image-wrapper:hover .spin-hint {
    opacity: 1;
}

@media (max-width: 768px) {
    .spin-card {
        height: 400px;
    }
}

/* --- BLOCO 8 â€” CONTATO --- */
.small-container {
    max-width: 1000px;
    /* Increased to accommodate two columns */
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info h3 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 400px;
}

.location-details {
    margin-bottom: 40px;
}

.location-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.location-item i {
    font-size: 1.2rem;
    color: var(--accent-brand);
    margin-top: 4px;
}

.location-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.location-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: var(--text-secondary);
}

#contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fcfcfc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(106, 153, 78, 0.1);
    background: #fff;
}

.btn-full {
    width: 100%;
    cursor: pointer;
    border: none;
    font-family: inherit;
    display: block;
    text-align: center;
}

/* Feedback de Sucesso */
.form-feedback {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.5s ease forwards;
}

.feedback-content i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feedback-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.feedback-content p {
    margin-bottom: 12px;
}

.is-hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 20px;
    }

    /* Reveal Mobile Menu Button */
    .mobile-menu-toggle {
        display: flex;
        z-index: 1002;
    }

    /* Hide Desktop Nav */
    .nav-links.desktop-only {
        display: none;
    }

    .hero-bg img {
        opacity: 0.6;
    }

    #hero .content {
        padding-top: 60px;
        align-items: center;
        /* Center vertically */
    }

    /* Hero adjustments */
    .apple-tv-hero {
        padding-bottom: 40px;
    }

    .hero-text-content {
        width: 100%;
        max-width: 100%;
        padding-right: 0;
    }

    .hero-text-content h1 {
        font-size: 2rem;
        word-wrap: break-word;
        line-height: 1.2;
    }

    .hero-text-content p {
        font-size: 1rem;
    }

    /* --- CAROUSEL REFINEMENT (Centered with Stronger Peeks) --- */
    .carousel-track {
        gap: 15px;
        /* Clear separation */
    }

    .carousel-slide {
        /* Inactive slides smaller and dimmer */
        flex: 0 0 75vw;
        /* 75% width leaves 12.5% margin on each side for peeks */
        height: 480px;
        opacity: 0.3;
        /* Dimmer as requested */
        transform: scale(0.85);
        /* Smaller to emphasize active card */
        transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        filter: brightness(0.6);
        /* Extra dimming via filter */
    }

    .carousel-slide.current-slide {
        /* Active stays 75vw but scales UP visually */
        flex: 0 0 75vw;
        width: 75vw;
        opacity: 1;
        transform: scale(1.05);
        /* Pop effect */
        filter: brightness(1);
        z-index: 10;
    }

    .carousel-slide video,
    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    .carousel-track-container {
        padding: 0;
        /* Remove padding to let active card fill */
    }

    /* --- ESSENCE SECTION (2 Grid) --- */
    .grid-essence {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* Two columns for top items */
        gap: 15px;
    }

    /* Third and Fourth items (Amor-prÃ³prio & EquilÃ­brio) span full width per request 'in another div below' style */
    .essence-item:nth-child(3),
    .essence-item:nth-child(4) {
        grid-column: span 2;
        margin-top: 10px;
    }

    /* --- BRAND & EXPERIENCE (Text First order) --- */
    /* Container is display: grid typically, change to flex column */
    .grid-two-columns,
    .grid-two-columns.reverse {
        display: flex;
        flex-direction: column-reverse;
        /* Image is first in HTML, so Reverse puts Text (2nd) on top */
        gap: 40px;
    }

    .text-area {
        text-align: center;
        /* Apple style center align for mobile */
    }

    .image-area {
        width: 100%;
        max-width: 348px;
        /* Force user requested width */
        margin: 0 auto;
    }

    .image-area img {
        width: 100%;
        height: auto;
        border-radius: 20px;
    }

    /* Fix Spin Hint Overlap */
    .spin-image-wrapper {
        margin-bottom: 30px;
        /* Space for the hint */
    }

    .spin-card {
        height: auto;
        /* Let it shrink to image size */
        background: transparent;
        box-shadow: none;
    }

    .spin-hint {
        position: relative;
        /* Flow naturally below */
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 10px;
        justify-content: center;
        width: 100%;
        opacity: 1;
        /* Always visible on mobile */
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}


/* AI & Accessibility Utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

 /*AppleCards-iPadEssentialsStyle*/.apple-card-grid{
 display:grid;
 grid-template-columns:repeat(2,1fr);
 /*2columnsfordesktop*/gap:30px;
 margin-top:40px;
 
}

 .apple-card{
 background-color:var(--bg-white);
 border-radius:28px;
 padding:40px;
 box-shadow:04px24pxrgba(0,0,0,0.06);
 text-align:center;
 transition:transform0.3scubic-bezier(0.4,0,0.2,1),box-shadow0.3sease;
 display:flex;
 flex-direction:column;
 align-items:center;
 overflow:hidden;
 
}

 .apple-card:hover{
 transform:scale(1.02);
 box-shadow:08px32pxrgba(0,0,0,0.12);
 
}

 .apple-card-content{
 margin-bottom:30px;
 
}

 .apple-card-title{
 font-size:24px;
 font-weight:600;
 margin-bottom:8px;
 color:var(--text-primary);
 
}

 .apple-card-desc{
 font-size:17px;
 color:var(--text-secondary);
 line-height:1.4;
 
}

 .apple-card-image{
 width:100%;
 height:auto;
 border-radius:12px;
 object-fit:cover;
 max-height:400px;
 /*Limitheighttokeepcardsbalanced*/
}

 /*Specificadjustmentsforresponsive*/@media(max-width:768px){
 .apple-card-grid{
 grid-template-columns:1fr;
 /*Stackonmobile*/gap:20px;
 
 }

 .apple-card{
 padding:30px20px;
 
 }

 
}

 /*AnimatedCurationCard*/.animated-card-frame{
 position:relative;
 width:100%;
 /*Aspectratiomainlycontrolledbypaddingorheight,
 butforflexibilitywe'lllettheimagedefineheightorsetafixedheight*/
 height:600px;
 border-radius:28px;
 overflow:hidden;
 background-color:var(--bg-white);
 box-shadow:04px24pxrgba(0,0,0,0.06);
 
}

 .fading-image{
 position:absolute;
 top:0;
 left:0;
 width:100%;
 height:100%;
 object-fit:cover;
 opacity:0;
 transition:opacity2sease-in-out;
 border-radius:28px;
 
}

 /*SimpleCSSAnimationLoop*/@keyframesfadeCycle{
 0%{
 opacity:1;
 
 }

 45%{
 opacity:1;
 
 }

 55%{
 opacity:0;
 
 }

 95%{
 opacity:0;
 
 }

 100%{
 opacity:1;
 
 }

 
}

 @keyframesfadeCycleDelayed{
 0%{
 opacity:0;
 
 }

 45%{
 opacity:0;
 
 }

 55%{
 opacity:1;
 
 }

 95%{
 opacity:1;
 
 }

 100%{
 opacity:0;
 
 }

 
}

 .fading-image:nth-child(1){
 animation:fadeCycle10sinfinite;
 
}

 .fading-image:nth-child(2){
 animation:fadeCycleDelayed10sinfinite;
 
}

 .curation-text-content{
 display:flex;
 flex-direction:column;
 justify-content:center;
 padding:20px;
 text-align:left;
 /*AlinhadoÃesquerdaparalayoutladoalado*/
}

 /*Responsiveadjustment*/@media(max-width:768px){
 .animated-card-frame{
 height:400px;
 margin-bottom:30px;
 
 }

 .curation-text-content{
 text-align:center;
 padding:0;
 
 }

 
}

 /*UpdateAnimatedCardBackground*/.animated-card-frame{
 background-color:#f5f5f7!important;
 /*AppleLightGray*/
}

 /*CarouselIndicators(Dots)*/.carousel-indicators{
 position:absolute;
 bottom:20px;
 left:50%;
 transform:translateX(-50%);
 display:flex;
 gap:8px;
 z-index:10;
 
}

 .indicator-dot{
 width:8px;
 height:8px;
 border-radius:50%;
 background-color:rgba(0,0,0,0.2);
 transition:background-color0.3sease;
 
}

 .indicator-dot.active{
 background-color:rgba(0,0,0,0.8);
 
}

 /*AnimationsforDotstoSyncwithImages*/@keyframesdotCycle1{
 0%{
 background-color:rgba(0,0,0,0.8);
 
 }

 45%{
 background-color:rgba(0,0,0,0.8);
 
 }

 55%{
 background-color:rgba(0,0,0,0.2);
 
 }

 100%{
 background-color:rgba(0,0,0,0.2);
 
 }

 
}

 @keyframesdotCycle2{
 0%{
 background-color:rgba(0,0,0,0.2);
 
 }

 45%{
 background-color:rgba(0,0,0,0.2);
 
 }

 55%{
 background-color:rgba(0,0,0,0.8);
 
 }

 100%{
 background-color:rgba(0,0,0,0.8);
 
 }

 
}

 .indicator-dot:nth-child(1){
 animation:dotCycle110sinfinite;
 
}

 .indicator-dot:nth-child(2){
 animation:dotCycle210sinfinite;
 
}

 /*FullBleedLayoutUpdates*/.animated-card-frame{
 background-color:transparent!important;
 /*Removebackground*/padding:0!important;
 /*Removepadding*/box-shadow:none!important;
 /*Removeshadowifdesired,
 orkeepitontheframe*//*Maintainborderradiusandoverflowfortheroundedlook*/border-radius:28px;
 overflow:hidden;
 height:700px;
 /*Tallerheightforfullbleedimpact*/
}

 .fading-image{
 border-radius:28px;
 /*Ensureimagesfollowtherounding*/object-fit:cover!important;
 
}

 .carousel-indicators{
 bottom:30px;
 /*Positiondotsslightlyhigher*/
}

 .indicator-dot{
 background-color:rgba(255,255,255,0.4)!important;
 /*Lightdotsforbettercontrastonimages*/backdrop-filter:blur(4px);
 
}

 .indicator-dot.active{
 background-color:#ffffff!important;
 /*Whiteactivedot*/
}

 @media(max-width:768px){
 .animated-card-frame{
 height:500px;
 /*Adjustheightformobile*/
 }

 
}

 /*AppleWideCardLayout*/.apple-wide-card{
 background-color:#f5f5f7;
 border-radius:30px;
 padding:60px;
 display:grid;
 grid-template-columns:1fr1fr;
 /*Twoequalcolumns*/gap:50px;
 align-items:center;
 margin-top:20px;
 
}

 .wide-card-text{
 text-align:left;
 display:flex;
 flex-direction:column;
 justify-content:center;
 
}

 .wide-card-text.section-title{
 font-size:48px;
 /*Largetitlelikereference*/line-height:1.1;
 margin-bottom:20px;
 color:#1d1d1f;
 
}

 .wide-card-textp{
 font-size:19px;
 line-height:1.4;
 color:#1d1d1f;
 margin-bottom:20px;
 
}

 .wide-card-text.label{
 margin-bottom:12px;
 display:block;
 font-weight:600;
 letter-spacing:0.5px;
 font-size:14px;
 color:#6e6e73;
 
}

 .wide-card-image-container{
 display:flex;
 justify-content:center;
 align-items:center;
 
}

 .wide-card-image{
 width:100%;
 height:auto;
 border-radius:12px;
 /*Optionalslightroundingontheimageitself,
 ornone*/max-height:500px;
 object-fit:contain;
 /*Ensurewholeimageisvisiblelikeproductshot*/
}

 /*Responsiveadjustment*/@media(max-width:900px){
 .apple-wide-card{
 grid-template-columns:1fr;
 /*Stackonmobile/tablet*/padding:40px30px;
 gap:30px;
 text-align:center;
 
 }

 .wide-card-text{
 text-align:center;
 /*Centertextonmobile*/order:1;
 /*Keeptextfirst,
 orchangeto2ifimageshouldbefirst*/
 }

 .wide-card-image-container{
 order:2;
 
 }

 .wide-card-text.section-title{
 font-size:32px;
 
 }

 
}

 

/*CurationSectionSpecifics-TwoImagesSide-by-Side*/
.curation-images-wrapper{
 display:flex;
 gap:20px;
 justify-content:center;
 align-items:center;
 width:100%;
}

.curation-img{
 height:350px;
 /*Fixedheighttomatchtextproportionroughly*/
 width:auto;
 object-fit:cover;
 border-radius:18px;
 /*Slightlymorerounded*/
 box-shadow:010px30pxrgba(0,0,0,0.1);
 /*SoftshadowlikeApplecards*/
 transition:transform0.3sease;
}

.curation-img:hover{
 transform:scale(1.02);
}

@media(max-width:900px){
 .curation-images-wrapper{
 gap:15px;
 }

 .curation-img{
 height:250px;
 /*Smalleronmobile/tablets*/
 }
}

@media(max-width:480px){
 .curation-img{
 height:180px;
 /*Evensmalleronphones*/
 width:48%;
 /*Ensuretheyfitsidebyside*/
 }
}


/*NewFeatureSplitLayout(PurpleOutfitReferenceStyle)*/
.feature-split-layout{
 display:flex;
 align-items:center;
 justify-content:center;
 gap:80px;
 padding:40px0;
}

.feature-image-card{
 background-color:#ffffff;
 border-radius:40px;
 box-shadow:030px60pxrgba(0,0,0,0.12);
 /*Soft,deepshadow*/
 padding:60px;
 position:relative;
 flex:00500px;
 /*Fixedwidthforthecardlook*/
 height:600px;
 display:flex;
 flex-direction:column;
 align-items:center;
 justify-content:center;
 transition:transform0.4sease;
}

.feature-image-card:hover{
 transform:translateY(-5px);
}

.curation-images-group{
 position:relative;
 width:100%;
 height:100%;
 display:flex;
 flex-direction:column;
 align-items:center;
 justify-content:center;
 gap:20px;
}

.feature-img-item{
 border-radius:20px;
 object-fit:cover;
 box-shadow:010px20pxrgba(0,0,0,0.05);
}

.feature-img-item.main{
 width:90%;
 max-height:55%;
 z-index:2;
}

.feature-img-item.sub{
 width:80%;
 max-height:40%;
 opacity:0.9;
 z-index:1;
}

.card-interaction-hint{
 margin-top:30px;
 font-size:11px;
 font-weight:600;
 letter-spacing:1px;
 color:#86868b;
 text-transform:uppercase;
 display:flex;
 align-items:center;
 gap:8px;
 opacity:0.7;
}

.feature-text-content{
 flex:1;
 max-width:450px;
 text-align:left;
}

.feature-label{
 display:block;
 font-size:12px;
 font-weight:700;
 letter-spacing:0.5px;
 color:#86868b;
 /*Applegray*/
 margin-bottom:16px;
 text-transform:uppercase;
}

.feature-title{
 font-size:56px;
 /*Bigtitle*/
 line-height:1.05;
 font-weight:600;
 color:#1d1d1f;
 margin-bottom:24px;
 letter-spacing:-1px;
}

.feature-description{
 font-size:19px;
 line-height:1.5;
 color:#6e6e73;
 /*Secondarytext*/
 margin-bottom:30px;
 font-weight:400;
}

.feature-disclaimer{
 font-size:14px;
 color:#86868b;
 margin-top:10px;
}

/*Responsiveness*/
@media(max-width:1100px){
 .feature-split-layout{
 flex-direction:column;
 text-align:center;
 gap:50px;
 }

 .feature-text-content{
 text-align:center;
 max-width:100%;
 padding:020px;
 }

 .feature-image-card{
 width:90%;
 height:auto;
 min-height:400px;
 flex:none;
 padding:40px;
 }

 .feature-title{
 font-size:40px;
 }
}

@media(max-width:480px){
 .feature-image-card{
 padding:20px;
 border-radius:30px;
 }

 .feature-img-item.main{
 width:100%;
 }

 .feature-img-item.sub{
 width:90%;
 }
}


/*ROBUSTFIXFORCURATIONLAYOUT*/
.feature-split-layout{
 display:flex!important;
 align-items:center!important;
 justify-content:center!important;
 flex-direction:row!important;
 /*Forcerowondesktop*/
 gap:40px!important;
 width:100%!important;
 max-width:100%!important;
}

.feature-image-card{
 flex:0150%!important;
 /*Allowshrink,base50%*/
 width:auto!important;
 max-width:500px!important;
 height:auto!important;
 aspect-ratio:1/1.1;
 /*Maintainshape*/
}

.feature-text-content{
 flex:0145%!important;
 min-width:300px;
}

/*Ensuremobilestackingworks*/
@media(max-width:900px){
 .feature-split-layout{
 flex-direction:column!important;
 text-align:center!important;
 }

 .feature-text-content{
 text-align:center!important;
 }

 .feature-image-card{
 max-width:100%!important;
 aspect-ratio:auto!important;
 height:auto!important;
 padding:40px!important;
 }
}


/*CENTERTEXTWHENNOIMAGEINCURATION*/
/*CURATIONCAROUSELFADEEFFECT*/
.curation-carousel{
 position:relative;
 width:100%;
 aspect-ratio:4/5;
 /*Mantémproporçãoelegante*/
 overflow:hidden;
 border-radius:20px;
}

.curation-carouselimg{
 position:absolute;
 top:0;
 left:0;
 width:100%;
 height:100%;
 object-fit:cover;
 opacity:0;
 transition:opacity1.5sease-in-out;
}

.curation-carouselimg.active{
 opacity:1;
}

.feature-text-content.label{
 display:inline-block;
 margin-bottom:20px;
}

.feature-title{
 font-size:42px;
 font-weight:700;
 margin-bottom:25px;
 line-height:1.1;
}

.feature-description{
 font-size:18px;
 color:var(--text-secondary);
 margin-bottom:20px;
 max-width:500px;
}

.feature-disclaimer{
 font-size:14px;
 color:var(--text-secondary);
 opacity:0.7;
}

@media(max-width:768px){
 .feature-title{
 font-size:32px;
 }

 .curation-carousel{
 aspect-ratio:1/1;
 /*Quadradoemmobile*/
 max-width:400px;
 margin:0auto40px;
 }
}
