/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* --primary-color: #D4B5A0; */
    --secondary-color: #8B6F47;
    --whatsapp-color: #25D366;
    --text-dark: #6e5955;
    --text-light: #666666;
    --white: #ffffff;
    --off-white: #fafafa;
    /* --shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    --border-radius: 30px;
    --border: 1.5px solid #fff;
    --gradient-hero: linear-gradient(90deg,rgba(204, 175, 165, 1) 0%, rgba(230, 206, 198, 1) 100%);
    --gradient-bt-hero-agenda: linear-gradient(90deg,rgba(159, 130, 124, 1) 0%, rgba(177, 151, 146, 1) 100%);
    --off-white: #E9E9E9;
    --gradient-brown: linear-gradient(90deg,rgba(138, 112, 107, 1) 0%, rgba(112, 89, 85, 1) 100%);
    --gradient-dep: linear-gradient(180deg, rgb(179 154 146) 0%, rgba(230, 206, 198, 1) 100%);
    --border-dep: 1.5px solid #fff;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    background-color: #cfb4ac;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url(M.svg);
    background-position: center;
    background-size: cover;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.logo img {width:100%}

.logo-mn {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

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

.logo-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 1px;
    opacity: 0.9;
}
.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}


.social-icon {
    width: 50px;
    height: 50px;
    /* background: rgba(255, 255, 255, 0.2); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 2.5rem;
    transition: all 0.3s ease;
    /* border: 2px solid rgba(255, 255, 255, 0.3); */
}

.social-icon:hover {
    /* background: var(--white); */
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 2rem;
}

.hero-title .highlight {
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-bt-hero-agenda);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

.btn-whatsapp {
    background: var(--whatsapp-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.hero-image {
    position: relative;
}

.hero-image img {
    width: 500px;
    height: 600px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: var(--border);
}

/* Diferenciais Section */
.diferenciais {
    padding: 80px 0;
    background: var(--off-white);
    background-image: url(M.svg);
    background-position: center;
    background-size: cover;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.diferencial-card {
    /* background: var(--white); */
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.diferencial-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); */
}

.card-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: var(--border-radius);
    border: var(--border);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.card-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Sobre Section */
.sobre {
    padding: 80px 0;
    background-color: #7b6460;
    background-image: url(M.svg);
    background-position: center;
    background-size: cover;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-image img {
    width: 100%;
    max-width: 600px;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: var(--border);
}

.sobre-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.sobre-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Tratamentos Section */
.tratamentos {
    padding: 80px 0;
    background: var(--off-white);
}
.tratamentos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.tratamentos-image img {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.tratamentos-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgb(110 89 86);
    margin-bottom: 1.5rem;
}

.tratamentos-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgb(110 89 86);
    margin-top: 15px;
}
.tratamentos-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.tratamentos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.tratamento-card {
    /* background: var(--white); */
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.tratamento-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); */
}

.tratamento-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.tratamento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: var(--border);
}

.tratamento-content {
    padding: 1.5rem;
}

.tratamento-content h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tratamento-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Consultório Section */
.consultorio {
    padding: 80px 0;
    background-color: #7b6460;
    background-image: url(M.svg);
    background-position: center;
    background-size: cover;
}

.consultorio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.consultorio-image img {
    width: 100%;
    max-width: 600px;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: var(--border);
}

.consultorio-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.consultorio-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Depoimentos Section */
.depoimentos {
    padding: 80px 0;
    background-color: #c7aea6;
    /* background: var(--gradient-dep); */
}

.depoimentos .section-title {
    color: var(--white);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.depoimento-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.stars {
    /* display: flex; */
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #ffcc00;
    font-size: 2.2rem;
    /* border: var(--border-dep); */
}

.depoimento-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.depoimento-author {
    font-weight: 600;
    color: var(--white);
}

/* Contato Section */
.contato {
    padding: 80px 0;
    background: var(--off-white);
}

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

.contato-left h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: initial;
}

.contato-left p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contato-form input,
.contato-form textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-whatsapp-large {
    background: var(--whatsapp-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    width: fit-content;
}

.btn-whatsapp-large:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.contato-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.endereco h3,
.contato-info h3 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.endereco p,
.contato-info p {
    color: var(--text-light);
    line-height: 1.6;
}

.mapa-placeholder {
    width: 100%;
    height: 200px;
    background: #f0f0f0;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 2px dashed #ddd;
}
.mapa-placeholder iframe{
    width: 100%;
    height: 200px;
    background: #f0f0f0;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 2px dashed #ddd;
}

.mapa-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.contato .social-icon{
    color: var(--text-dark);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-image img {
        width: 100%;
        height: auto;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .tratamentos-content {
        grid-template-columns: 1fr;
        text-align: center;
    }   
    
    .tratamentos-grid {
        grid-template-columns: 1fr;
    }
    
    .consultorio-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
    }
    
    .logo-mn {
        font-size: 3rem;
    }
    
    .logo-name {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        text-align: left;
    }
    
    .hero-image img {
        width: 100%;
        height: auto;
    }
    
    .btn-primary,
    .btn-whatsapp {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .logo-mn {
        font-size: 2.5rem;
    }
    
    .logo-name {
        font-size: 1rem;
    }
    
    .logo-subtitle {
        font-size: 0.8rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.diferencial-card,
.tratamento-card,
.depoimento-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

