/* Satin & Skin - Component Styles */

/* ==========================================
   Navigation Header
   ========================================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background: rgba(242, 237, 228, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(45, 45, 45, 0.04);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.8s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease, border-color 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.nav-hidden {
    transform: translateY(-100%);
}

[data-theme="dark"] nav {
    background: rgba(18, 18, 18, 0.85);
    border-bottom: 1px solid rgba(230, 230, 230, 0.04);
}

nav.scrolled {
    padding: 15px 0;
    background: rgba(242, 237, 228, 0.95);
}

[data-theme="dark"] nav.scrolled {
    background: rgba(18, 18, 18, 0.95);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
}

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

.nav-links {
    display: flex;
    gap: 35px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.nav-links a {
    color: var(--text);
    position: relative;
    padding: 6px 0;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--text);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Nav Control Buttons */
.nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-beige);
    border: 1px solid var(--border);
    transition: var(--transition-fast);
}

.nav-btn:hover {
    background-color: var(--accent-pink);
    transform: scale(1.05);
}

.nav-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.5s ease;
}

.theme-toggle:hover svg {
    transform: rotate(45deg);
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
}

@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
        transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1001;
        visibility: hidden;
    }

    .nav-links.active {
        right: 0;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.1rem;
    }
}

/* ==========================================
   Custom Cursor
   ========================================== */
.custom-cursor {
    width: 8px;
    height: 8px;
    background-color: var(--cursor-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

.custom-cursor-circle {
    width: 40px;
    height: 40px;
    border: 1px solid var(--cursor-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.08s cubic-bezier(0.25, 1, 0.5, 1), width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Hover States */
.custom-cursor-circle.hovered {
    width: 70px;
    height: 70px;
    background-color: rgba(45, 45, 45, 0.04);
    border-color: transparent;
}

[data-theme="dark"] .custom-cursor-circle.hovered {
    background-color: rgba(230, 230, 230, 0.06);
}

.custom-cursor-circle.hovered-view::after {
    content: 'VER';
    font-size: 10px;
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.15em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom-cursor.hidden,
.custom-cursor-circle.hidden {
    opacity: 0;
}

/* Disable Custom Cursor on Touch Devices */
@media (hover: none) and (pointer: coarse) {

    .custom-cursor,
    .custom-cursor-circle {
        display: none !important;
    }
}

/* ==========================================
   Portfolio Items
   ========================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-item {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--accent-beige);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: default;
    box-shadow: var(--plaster-shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.portfolio-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    filter: sepia(10%) contrast(92%);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.portfolio-item:hover img {
    transform: scale(1.04);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
    color: white;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.portfolio-overlay span {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .gallery-filters {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 30px;
    }
}

.filter-btn {
    background: none;
    border: 1px solid var(--border);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    color: var(--text);
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

/* ==========================================
   Lightbox Detail Modal
   ========================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(253, 251, 247, 0.98);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

[data-theme="dark"] .lightbox {
    background: rgba(18, 18, 18, 0.98);
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    width: 90%;
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    transform: translateY(30px);
    transition: var(--transition);
}

.lightbox.active .lightbox-content {
    transform: translateY(0);
}

.lightbox-image {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4/5;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--plaster-shadow);
    border: 1px solid var(--border);
}

.lightbox-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.lightbox-info h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.lightbox-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-pink);
    border-radius: 30px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.lightbox-desc {
    color: var(--muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.lightbox-meta {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.lightbox-meta-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.lightbox-meta-item span:first-child {
    font-weight: 500;
}

.lightbox-meta-item span:last-child {
    color: var(--muted);
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text);
    opacity: 0.6;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .lightbox-content {
        grid-template-columns: 1fr;
        gap: 30px;
        max-height: 85vh;
        overflow-y: auto;
        padding-top: 40px;
    }

    .lightbox-image {
        aspect-ratio: 16/9;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
    }
}

/* ==========================================
   Multi-Step Booking Wizard
   ========================================== */
.booking-wizard {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--plaster-shadow);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-beige);
    z-index: 1;
}

.progress-bar-fill {
    position: absolute;
    top: 15px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--text);
    z-index: 2;
    transition: width 0.4s ease;
}

.progress-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    position: relative;
    z-index: 3;
    transition: var(--transition-fast);
}

.progress-step.active {
    border-color: var(--text);
    background: var(--text);
    color: var(--bg);
}

.progress-step.completed {
    border-color: var(--text);
    background: var(--accent-beige);
    color: var(--text);
}

.wizard-step {
    display: none;
    animation: fadeInStep 0.5s ease forwards;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.wizard-step h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.wizard-step p.step-desc {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 30px;
}

/* Inputs & Form Groups */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    color: var(--text);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--text);
    background: var(--card-bg);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.02);
}

/* Visual Placement Selector Grid */
.placement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.placement-option {
    border: 1px solid var(--border);
    background: var(--bg);
    padding: 16px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.placement-option:hover {
    border-color: var(--text);
}

.placement-option.selected {
    background-color: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

/* Size Slider */
.size-slider-container {
    padding: 20px 0;
}

.size-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: var(--accent-beige);
    outline: none;
    margin-bottom: 20px;
}

.size-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--text);
    cursor: pointer;
    transition: var(--transition-fast);
}

.size-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.size-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.size-label {
    text-align: center;
    width: 25%;
    opacity: 0.5;
    cursor: pointer;
    transition: var(--transition-fast);
}

.size-label.active {
    opacity: 1;
    font-weight: 600;
}

/* Wizard Navigation Buttons */
.wizard-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    border-top: 1px solid var(--border);
    padding-top: 30px;
}

.wizard-success {
    text-align: center;
    padding: 40px 0;
    display: none;
}

.wizard-success.active {
    display: block;
}

.wizard-success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--muted);
    animation: scaleCheckmark 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scaleCheckmark {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .booking-wizard {
        padding: 30px 20px;
    }

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

    .studio-slider-wrapper {
        width: 100%;
        aspect-ratio: 1 / 1;
        height: auto;
        padding-bottom: 0;
        margin-top: 30px;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
    }

    .slider-arrow svg {
        width: 18px;
        height: 18px;
    }
}



/* ==========================================
   FAQ Accordions
   ========================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    transition: var(--transition-fast);
}

.accordion-header span {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.5rem;
    transition: transform 0.4s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.accordion-item.active .accordion-header {
    margin-bottom: 15px;
}

.accordion-item.active .accordion-header span {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    /* high enough for standard text paragraphs */
}

/* ==========================================
   Footer
   ========================================== */
footer {
    background-color: var(--accent-pink);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
    transition: background-color 0.8s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-desc {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-links h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: var(--text);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--text);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.8rem;
    color: var(--muted);
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.footer-socials a:hover {
    color: var(--text);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ==========================================
   Timeline Section
   ========================================== */
.timeline-section {
    padding: 100px 0;
    background: var(--bg);
}

.timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 0;
}

/* Linha central */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--border);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 120px;
    align-items: center;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Ponto no centro da linha */
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    background-color: var(--text);
    border: 3px solid var(--bg);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: var(--transition-fast);
    box-shadow: 0 0 0 5px var(--accent-pink);
}

.timeline-item:hover .timeline-dot {
    transform: translate(-50%, -50%) scale(1.4);
    background-color: var(--muted);
    box-shadow: 0 0 0 8px var(--accent-beige);
}

/* Alinhamento alternado de conteúdo e imagem */
.timeline-left .timeline-content {
    order: 1;
    text-align: right;
    padding-right: 20px;
}

.timeline-left .timeline-image {
    order: 2;
    padding-left: 20px;
}

.timeline-right .timeline-image {
    order: 1;
    padding-right: 20px;
}

.timeline-right .timeline-content {
    order: 2;
    text-align: left;
    padding-left: 20px;
}

/* Estilização do Texto */
.timeline-meta {
    margin-bottom: 15px;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--text);
    opacity: 0.15;
    font-style: italic;
    display: block;
    margin-bottom: 5px;
    transition: var(--transition);
}

.timeline-item:hover .timeline-year {
    opacity: 0.7;
    transform: translateY(-2px);
}

.timeline-title {
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.timeline-text {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Estilização da Imagem */
.timeline-image {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--border);
    box-shadow: var(--plaster-shadow);
    transition: var(--transition);
    background-color: var(--accent-beige);
}

.timeline-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: sepia(8%) contrast(95%);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.timeline-item:hover .timeline-image {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px var(--shadow-color);
    border-color: var(--border-hover);
}

.timeline-item:hover .timeline-image img {
    transform: scale(1.03);
    filter: sepia(0%) contrast(100%);
}

/* Responsividade */
@media (max-width: 968px) {
    .timeline-line {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
        top: 30px;
        transform: translate(-50%, 0);
    }

    .timeline-item:hover .timeline-dot {
        transform: translate(-50%, 0) scale(1.2);
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 70px;
        padding-left: 50px;
    }

    .timeline-left .timeline-content,
    .timeline-right .timeline-content {
        order: 1 !important;
        text-align: left;
        padding-right: 0;
        padding-left: 0;
    }

    .timeline-left .timeline-image,
    .timeline-right .timeline-image {
        order: 2 !important;
        padding-left: 0;
        padding-right: 0;
        aspect-ratio: 16/10;
    }

    .timeline-year {
        font-size: 2.8rem;
    }

    .timeline-title {
        font-size: 1.5rem;
    }
}

/* ==========================================
   Studio Image Slider
   ========================================== */
.studio-slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--plaster-shadow);
    border: 1px solid var(--border);
}

.studio-slider-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.studio-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
    scrollbar-width: none; /* Firefox */
}

.studio-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.slider-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}

.slider-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
}


.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
    color: var(--text);
    box-shadow: var(--plaster-shadow);
}

[data-theme="dark"] .slider-arrow {
    background: rgba(18, 18, 18, 0.85);
}

.slider-arrow:hover {
    background: var(--accent-pink);
    transform: translateY(-50%) scale(1.08);
}

.slider-arrow svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(253, 251, 247, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(45, 45, 45, 0.05);
}

[data-theme="dark"] .slider-dots {
    background: rgba(18, 18, 18, 0.5);
    border: 1px solid rgba(230, 230, 230, 0.05);
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text);
    opacity: 0.3;
    transition: var(--transition-fast);
    cursor: pointer;
}

.slider-dot.active {
    opacity: 1;
    transform: scale(1.2);
}

/* ==========================================
   Visual Style Selector Grid
   ========================================== */
.style-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.style-option {
    border: 1px solid var(--border);
    background: var(--bg);
    padding: 24px 20px;
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.style-option h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    font-family: var(--font-heading);
    color: var(--text);
}

.style-option p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
    text-transform: none;
    letter-spacing: normal;
}

.style-option:hover {
    border-color: var(--text);
    transform: translateY(-2px);
}

.style-option.selected {
    background-color: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.style-option.selected h4 {
    color: var(--bg);
}

.style-option.selected p {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .style-grid {
        grid-template-columns: 1fr;
    }
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border-color: #20BA5A;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    color: white;
    border-color: #128C7E;
}

/* ==========================================
   Hero Navigation Shortcuts Grid
   ========================================== */
.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
    max-width: 550px;
}

.hero-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
    box-shadow: var(--plaster-shadow);
}

.hero-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text);
    font-family: var(--font-heading);
}

.hero-card p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.4;
    margin: 0;
}

.hero-card:hover {
    border-color: var(--text);
    background: var(--accent-pink);
    transform: translateY(-3px);
}

.hero-card.highlight {
    grid-column: span 2;
    background: var(--accent-beige);
    border-color: var(--border-hover);
}

.hero-card.highlight:hover {
    background: var(--accent-pink);
    border-color: var(--text);
}

@media (max-width: 576px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-card.highlight {
        grid-column: span 1;
    }
}