/* ===== VARIÁVEIS E RESET ===== */
:root {
    --color-gold: #C9A962;
    --color-gold-light: #D4B978;
    --color-gold-dark: #A88B3D;
    --color-beige: #F5F0E8;
    --color-beige-light: #FAF7F2;
    --color-white: #FFFFFF;
    --color-dark: #2D2D2D;
    --color-text: #4A4A4A;
    --color-text-light: #7A7A7A;
    --color-whatsapp: #25D366;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-beige-light);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

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

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

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

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 169, 98, 0.5);
}

.btn-gold:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-whatsapp-large {
    background: var(--color-whatsapp);
    color: var(--color-white);
    font-size: 1.1rem;
    padding: 18px 40px;
    text-decoration: none;
}

.btn-whatsapp-large:hover {
    background: #20BD5A;
    transform: translateY(-3px);
}

.tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-white);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.decoration {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    margin: 20px auto 30px;
    border-radius: 2px;
}

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

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

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2D2D2D 0%, #1a1a1a 100%);
    position: relative;
    text-align: center;
    color: var(--color-white);
    padding: 40px 20px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(201, 169, 98, 0.15) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.logo-circle {
    width: 120px;
    height: 120px;
    border: 3px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    background: rgba(201, 169, 98, 0.1);
}

.logo-circle span {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-gold);
}

.logo-circle.small {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.logo-circle.small span {
    font-size: 1.2rem;
}

.logo-hero {
    margin: 0 auto 20px;
}

.logo-hero img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(201, 169, 98, 0.3));
}

.logo-footer {
    margin-bottom: 15px;
}

.logo-footer img {
    width: 80px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--color-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero .slogan {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto 20px;
}

.hero .location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SEÇÕES ===== */
section {
    padding: 80px 0;
    text-align: center;
}

section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 0;
}

section .info {
    color: var(--color-text-light);
    max-width: 500px;
    margin: 0 auto 40px;
}

/* ===== CATÁLOGO ===== */
.catalog-section {
    background: var(--color-white);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.catalog-item {
    background: var(--color-beige-light);
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.catalog-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.catalog-item.selected {
    border-color: var(--color-gold);
    background: rgba(201, 169, 98, 0.08);
}

.catalog-item .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.catalog-item h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.catalog-item p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.catalog-item .checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-gold);
    font-weight: 500;
}

.catalog-item .checkbox i {
    font-size: 1.2rem;
}

.catalog-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 25px;
    background: var(--color-beige);
    border-radius: 15px;
}

.categoria-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.categoria-badge.facial {
    background: linear-gradient(135deg, #E8B4D9, #D4A4C9);
    color: #6B3A5C;
}

.categoria-badge.corporal {
    background: linear-gradient(135deg, #A4D4AE, #8BC49A);
    color: #2D5A3D;
}

.catalog-item {
    position: relative;
}

/* ===== AGENDAMENTO ===== */
.scheduling-section {
    background: var(--color-beige);
}

.scheduling-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 30px;
}

.scheduling-container.centered {
    grid-template-columns: 1fr;
    max-width: 450px;
}

.calendar-wrapper,
.time-slots-wrapper {
    background: var(--color-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.calendar-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-dark);
}

.calendar-header button {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-text);
}

.calendar-header button:hover {
    background: var(--color-beige);
    color: var(--color-gold);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.calendar-weekdays span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    padding: 10px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.calendar-day:hover:not(.disabled):not(.empty) {
    background: var(--color-beige);
}

.calendar-day.today {
    border: 2px solid var(--color-gold);
}

.calendar-day.selected {
    background: var(--color-gold);
    color: white;
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.empty {
    cursor: default;
}

.time-slots-wrapper h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.time-slots-wrapper>p {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.time-slot {
    padding: 12px;
    background: var(--color-beige);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    border: 2px solid transparent;
}

.time-slot:hover {
    border-color: var(--color-gold);
}

.time-slot.selected {
    background: var(--color-gold);
    color: white;
    border-color: var(--color-gold);
}

.scheduling-summary {
    background: var(--color-white);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-soft);
}

.scheduling-summary p {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.scheduling-summary i {
    color: var(--color-gold);
    font-size: 1.5rem;
}

/* ===== RESULTADOS (ANTES E DEPOIS) ===== */
.results-section {
    background: var(--color-beige);
    overflow: hidden;
}

.results-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.results-container {
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.results-track {
    display: flex;
    transition: transform 0.4s ease;
}

.results-item {
    min-width: 100%;
    position: relative;
}

.results-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

.results-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.results-nav {
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
    flex-shrink: 0;
}

.results-nav:hover {
    background: var(--color-gold-dark);
    transform: scale(1.1);
}

.results-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.results-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-gold);
    cursor: pointer;
    transition: var(--transition);
}

.results-dot.active {
    background: var(--color-gold);
    transform: scale(1.2);
}

.results-dot:hover:not(.active) {
    background: rgba(201, 169, 98, 0.3);
}

/* ===== DEPOIMENTOS ===== */
.testimonials-section {
    background: var(--color-white);
    overflow: hidden;
}

.testimonials-intro {
    color: var(--color-text-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.testimonials-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.gallery-container {
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    background: var(--color-beige-light);
}

.gallery-track {
    display: flex;
    transition: transform 0.4s ease;
    align-items: stretch;
}

.gallery-item {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    background: var(--color-beige-light);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    display: block;
    border-radius: 20px;
    object-fit: contain;
    object-position: center;
}

.gallery-nav {
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
    flex-shrink: 0;
}

.gallery-nav:hover {
    background: var(--color-gold-dark);
    transform: scale(1.1);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-beige);
    border: 2px solid var(--color-gold);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-dot.active {
    background: var(--color-gold);
    transform: scale(1.2);
}

.gallery-dot:hover:not(.active) {
    background: rgba(201, 169, 98, 0.3);
}

/* ===== CONTATO ===== */
.contact-section {
    background: linear-gradient(135deg, #2D2D2D, #1a1a1a);
    color: var(--color-white);
}

.contact-section h2 {
    color: var(--color-white);
}

.contact-section .tag {
    background: rgba(201, 169, 98, 0.2);
    color: var(--color-gold);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--color-gold);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-links a {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.3rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 20px;
    text-align: center;
}

.footer p {
    margin: 5px 0;
    font-size: 0.9rem;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    section h2 {
        font-size: 2rem;
    }

    /* Hero compacto no mobile */
    .hero {
        min-height: auto;
        padding: 60px 20px;
    }

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

    .hero .slogan {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .hero .subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .logo-hero img {
        width: 100px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .scheduling-container {
        grid-template-columns: 1fr;
    }

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

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .catalog-actions {
        flex-direction: column;
        text-align: center;
    }

    /* Galeria responsiva */
    .testimonials-gallery {
        gap: 10px;
        padding: 0 10px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .gallery-container {
        max-width: 300px;
    }

    .gallery-item {
        min-height: 400px;
    }

    .gallery-dots {
        margin-top: 20px;
    }

    .gallery-dot {
        width: 10px;
        height: 10px;
    }

    /* Resultados responsivo */
    .results-gallery {
        gap: 10px;
        padding: 0 10px;
    }

    .results-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .results-container {
        max-width: 350px;
    }

    .results-dots {
        margin-top: 20px;
    }

    .results-dot {
        width: 10px;
        height: 10px;
    }

    .results-label {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    .logo-hero img {
        width: 120px;
    }
}