/* Variáveis de cores */
:root {
    --primary: #000000;
    --secondary: #D4AF37;
    --tertiary: #808080;
    --light: #f5f5f5;
    --dark: #333333;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* Botões */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

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

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

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

.btn-instagram {
    background-color: #C13584;
    color: var(--white);
    border-color: #C13584;
}

.btn-instagram:hover {
    background-color: transparent;
    color: #C13584;
}

/* Seções */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.bg-light {
    background-color: var(--light);
}

/* Cabeçalho */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--primary);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.logo a {
    display: flex;
    flex-direction: column;
}

.logo-text {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.logo-crosp {
    color: var(--tertiary);
    font-size: 0.8rem;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.menu {
    display: flex;
    align-items: center;
}

.menu li {
    margin-left: 1.5rem;
}

.menu a {
    color: var(--white);
    font-weight: 500;
    position: relative;
}

.menu a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.menu a:not(.btn):hover {
    color: var(--secondary);
}

.menu a:not(.btn):hover::after {
    width: 100%;
}

/* Banner principal */
#banner {
    background-color: var(--primary);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/WhatsApp%20Image%202025-05-17%20at%2017.45.24%20%283%29.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 12rem 0 8rem;
    text-align: center;
}

#banner h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#banner p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Seção Sobre */
.sobre-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.sobre-text {
    flex: 1;
    min-width: 300px;
}

.sobre-images {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.image-container {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: translateY(-10px);
}

.img-1 {
    grid-column: 1 / 3;
}

.img-2 {
    grid-column: 1 / 3;
    margin-top: -30%;
}

.check-list {
    margin: 1.5rem 0;
}

.check-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.check-list i {
    color: var(--secondary);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

/* Cards */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.card {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    color: var(--secondary);
    font-size: 1.5rem;
}

.three-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.benefits-list {
    margin-bottom: 1.5rem;
}

.benefits-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.check {
    color: var(--secondary);
    margin-right: 0.75rem;
}

.highlight-box {
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.full-width {
    margin-top: 3rem;
    text-align: center;
}

.full-width h3 {
    margin-bottom: 1rem;
}

.full-width .text-center {
    margin-top: 1.5rem;
}

/* Galeria */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

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

/* Vídeo */
.video-container {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px var(--shadow);
    margin-bottom: 3rem;
}

.video-container h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
}

.video-wrapper video {
    width: 100%;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.video-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--secondary);
    border: none;
    color: var(--primary);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-btn:hover {
    transform: scale(1.1);
}

.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.video-caption {
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.testimonial-card {
    background-color: var(--light);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px var(--shadow);
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.testimonial-header i {
    color: rgba(212, 175, 55, 0.2);
    font-size: 2rem;
}

.stars {
    color: var(--secondary);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-author {
    margin-top: auto;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.treatment-type {
    color: var(--tertiary);
    font-size: 0.9rem;
}

.cta-box {
    background-color: var(--light);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px var(--shadow);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h3 {
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 1.5rem;
}

/* Rodapé */
#contato {
    background-color: var(--primary);
    color: var(--white);
    padding: 5rem 0 2rem;
}

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

.footer-info h3,
.footer-locations h3,
.footer-contact h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-info h3::after,
.footer-locations h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

.crosp {
    color: var(--tertiary);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary);
    color: var(--primary);
}

.location {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.location i {
    color: var(--secondary);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.location-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.location-type {
    color: var(--tertiary);
    font-size: 0.9rem;
}

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

.contact-item i {
    color: var(--secondary);
    margin-right: 1rem;
}

.contact-item a:hover {
    color: var(--secondary);
}

.contact-cta {
    margin-top: 1.5rem;
}

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

/* Botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

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

/* Media Queries */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    #banner h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    #banner {
        padding: 10rem 0 6rem;
    }
    
    #banner h1 {
        font-size: 2rem;
    }
    
    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .menu.active {
        right: 0;
    }
    
    .menu li {
        margin: 0 0 1.5rem;
        width: 100%;
    }
    
    .menu a.btn {
        width: 100%;
        text-align: center;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .video-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .control-btn {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    #banner {
        padding: 8rem 0 5rem;
    }
    
    #banner h1 {
        font-size: 1.8rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}
