/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #4a4a4a;
    background-color: #fefefe;
    padding-top: 80px; /* ajuste conforme a altura real do seu navbar */
}

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

/* Color Palette - Soft Pastels */
:root {
    --primary-color: #e8b4cb; /* Soft pink */
    --secondary-color: #b8d4e3; /* Soft blue */
    --accent-color: #f4d1ae; /* Soft peach */
    --text-color: #4a4a4a;
    --light-text: #6b6b6b;
    --white: #ffffff;
    --light-bg: #fafafa;
    --border-color: #e8e8e8;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: background 0.3s;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
}

/* Adicione ao seu style.css */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-logo .logo {
    width: 60px;
    height: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: color 0.3s ease;
    font-family: SF Pro Text,SF Pro Icons,Helvetica Neue,Helvetica,Arial,sans-serif;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

.banner {
    width: 100%;
    height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsivo para mobile */
@media (max-width: 600px) {
    .banner {
        height: 186px; /* aumenta a altura no mobile */
        min-height: 100px;
    }
    .banner-content {
        height: 100%;
    }
    .banner svg {
        height: 220px !important;
        width: 100% !important;
    }
}

/* Hero Section */
.hero {
    padding: 0;
    /* min-height: 100vh; */
    display: flex;
    align-items: stretch;
    position: relative;
}
.hero-container {
    position: relative;
    width: 100vw;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 570px;
}
.hero-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.38);
    z-index: 1;
    pointer-events: none;
    transition: background 0.5s;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    padding: 48px 32px 48px 64px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero-title {
    color: #f6b5cb;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.hero-subtitle {
    color: #b8d4e3;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.hero-description {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.hero-subtitle2 {
    color: #e3b8df;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
@media (max-width: 900px) {
    .hero-content {
        padding: 32px 16px;
        /* text-align: center; */
        /* align-items: center; */
    }
    .hero-title {
        font-size: 2.2rem;
    }
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.beauty-icon {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.container-gallery {
    display: flex;
    flex-direction: column;      /* Alinha em coluna */
    justify-content: center;     /* Centraliza verticalmente */
    align-items: center;         /* Centraliza horizontalmente */
    margin-top: 20px;
    height: 500px;
    position: relative;
    text-align: center;          /* Centraliza textos */
    gap: 1.2rem;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #f6b5b5;
    text-align: left;
    margin-bottom: 3rem;
    font-family: SF Pro Text, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
    position: relative;
    transform: none;
    left: 11px;
    top: 0;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    word-break: break-word;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .gallery-title {
        font-size: 2rem;
        margin-bottom: 0.2rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 600px) {
    .gallery-title {
        font-size: 2rem;
        margin-bottom: 0.2rem;
        padding: 0 0.2rem;
    }
}

.gallery-caption {
    font-size: 1.2rem;
    color: #6b6b6b;
    text-align: center;
    margin-top: 10px;
}

.beauty-icon i {
    font-size: 4rem;
    color: var(--white);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-gallery {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: var(--shadow);
}

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

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

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

.btn-gallery {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: var(--shadow);
}

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

/*Local Section*/
.local-section {
    padding: 80px 0;
    background: var(--light-bg);
}
.local-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.local-carousel-inner {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
}
.local-carousel-item {
    flex: 0 0 auto;
    width: 300px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 1.5rem;
    text-align: center;
    scroll-snap-align: start;
}
.local-carousel-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.hero-carousel-inner {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
}
.hero-carousel-item {
    flex: 0 0 auto;
    width: 300px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 1.5rem;
    text-align: center;
    scroll-snap-align: start;
}
.hero-carousel-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}


/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #f6b5b5;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: SF Pro Text,SF Pro Icons,Helvetica Neue,Helvetica,Arial,sans-serif;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--light-text);
}

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

/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    border-radius: 20px;
    background: var(--light-bg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.beauty-decoration {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.beauty-decoration i {
    font-size: 3rem;
    color: var(--white);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.contact-item h3 {
    color: rgb(20, 214, 20);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: rgb(11, 161, 11);
    font-size: 1rem;
}

/* Contact Form */
.contact-form {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* Footer */
.footer {
    background: var(--text-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    background: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: var(--shadow-hover);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close {
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
    border: none;
    background: none;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 2rem;
}

.services-list {
     margin-bottom: 2rem;
    max-height: 350px;      /* Limita a altura da lista */
    overflow-y: auto;       /* Adiciona scroll vertical se necessário */
    padding-right: 8px;    /* Espaço para a barra de rolagem */
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.service-item:last-child {
    border-bottom: none;
}

.service-info h3 {
    color: var(--text-color);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.service-info p {
    color: var(--light-text);
    font-size: 0.9rem;
}

.service-price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.service-note {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.service-note p {
    margin: 0;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .service-price {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
        font-family: SF Pro Text,SF Pro Icons,Helvetica Neue,Helvetica,Arial,sans-serif;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
} 
/* Before-After Styles */
.before-after {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}
.before-after img {
    width: 50%;
    display: block;
}
.before-after .before,
.before-after .after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}
.before-after .after {
    transform: translateX(100%);
}
.before-after:hover .after {
    transform: translateX(0);
}

/* Carousel styles */
.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.carousel-slide {
    display: none;
    width: 100%;
    transition: opacity 0.5s;
}
.carousel-slide.active {
    display: block;
}
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    padding: 0 10px;
    border-radius: 50%;
}
.carousel-control.prev {
    left: 10px;
}
.carousel-control.next {
    right: 10px;
}

.local-carousel-slide {
    width: 1095px;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    /* transition: box-shadow 0.3s; */
    display: none;
    transition: opacity 0.5s;
}
.local-carousel-slide.active {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: block;
}

.hero-carousel-slide {
    width: 1095px;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    transition: box-shadow 0.3s;
}
.hero-carousel-slide.active {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Gallery Modal Styles */
.gallery-modal {
    max-width: 90vw;
    width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

/* Image Viewer Modal */
.image-viewer-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    margin: 9.5vh auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-viewer-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.image-viewer-close:hover {
    background: rgba(0,0,0,0.8);
}

.expanded-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.image-caption {
    color: white;
    background: rgba(0,0,0,0.7);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

@media (max-width: 768px) {
    .image-viewer-close {
        top: -50px;
        right: 10px;
        font-size: 2rem;
        width: 35px;
        height: 35px;
    }
    
    .expanded-image {
        max-height: 80vh;
    }
}

/* Gallery Section */
.gallery {
    padding: 0px 0;
    background: var(--light-bg);
}

.section-subtitle {
    text-align: left;
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
    word-break: break-word;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 900px) {
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        padding: 0 1.2rem;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        padding: 0 1.2rem;
        text-align: left;
    }
}


@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-modal {
        max-width: 95vw;
        width: 95vw;
    }
}

.banners-carousel-slide {
    /* display: none; */
    transition: opacity 0.5s;
}
.banners-carousel-slide.active {
    display: block;
    opacity: 1;
}
.banner-image {
    width: auto;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
    transition: box-shadow 0.3s;
}
.banners-carousel-slide.active {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.banner-image:hover {
    transform: scale(1.01);
}

.banners-promotions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--light-bg);
}


@media (max-width: 900px) {
    .banners-carousel-inner {
        justify-content: center;
        align-items: center;
    }
    .banners-carousel-slides {
        display: flex;
        flex-direction: row;
        width: 100vw;
        overflow: hidden;
        gap: 0;
        justify-content: flex-start;
        align-items: center;
    }
    .banners-carousel-slide {
        display: none;
        width: 100vw !important;
        min-width: 100vw !important;
        max-width: 100vw !important;
        height: 55vw !important; /* altura proporcional à largura */
        min-height: 220px !important;
        max-height: 400px !important;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
    }
    .banners-carousel-slide.active {
        display: flex !important;
    }
    .banner-image,
    .banners-carousel-slide svg {
        width: 100vw !important;
        min-width: 100vw !important;
        max-width: 100vw !important;
        height: 55vw !important;
        min-height: 220px !important;
        max-height: 400px !important;
        object-fit: cover;
        border-radius: 0;
        margin: 0 auto;
        display: block;
    }
}