:root {
    --primary:  #FACDB7;
    --primary-dark: #FCECE6;
    --secondary:#c6a391;
    --secondary-dark: #905f49;
    --text: #FFFFFF;
    --text-inverted: #6a4636;
    --title: #905f49;
    --white: #ffffff;
    --gray: #f8fafc;
    --hero: linear-gradient(135deg, #FACDB7, #FCECE6);
    --shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

section {
    padding: 90px 0;
}

h1,
h2,
h3 {
    color: var(--title);
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--text-inverted);
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 50px;
    transition: .3s;
    font-weight: 600;
    border-color: var(--primary-dark);
    border-width: 0px;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    background: var(--primary-dark);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}


.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    height:60px;
    width:auto;
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.2;
}

.logo-text .nome{
    font-size:1.2rem;
    font-weight:700;
    color: var(--text-inverted);
}

.logo-text .especialidade{
    font-size:.8rem;
    color: var(--text-inverted);
}

.menu {
    display: flex;
    gap: 25px;
}

.menu a {
    text-decoration: none;
    color: var(--text-inverted);
    font-weight: 500;
}

.hero {
    padding-top: 160px;
    background: var(--hero);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: var(--secondary);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: .3s;
}

.card:hover {
    transform: translateY(-8px);
}

.about {
    background: var(--secondary) ;
}

.about-second {
    background: var(--primary) ;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about img {
    width: 100%;
    border-radius: 25px;
}

.credentials {
    display: grid;
    gap: 15px;
    margin-top: 25px;
}

.credential {
    background: var(--secondary);
    padding: 15px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.testimonials {
    background: var(--primary);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial {
    background: var(--secondary);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.faq details {
    background:var(--secondary);
    margin-bottom: 15px;
    border-radius: 15px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.faq summary {
    cursor: pointer;
    font-weight: 600;
}

.contact {
    background: var(--secondary-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

form {
    display: grid;
    gap: 15px;
}

input,
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: Poppins;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

footer {
    background: var(--primary-dark);
    color: var(--secondary);
    text-align: center;
    padding: 30px;
}

.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: var(--shadow);
}

.map-section {
    background: var(--secondary);
    padding: 80px 0;
}

.map-section iframe {
    box-shadow: var(--shadow);
}

.gallery-section {
    background: var(--secondary);
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.carousel-track {
    display: flex;
    transition: transform .5s ease;
}

.carousel-track img {
    width: 100%;
    flex-shrink: 0;
    height: 550px;
    object-fit: scale-down;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: var(--secondary);
    cursor: pointer;
    font-size: 22px;
    z-index: 10;
    box-shadow: var(--shadow);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.carousel-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary-dark);
    cursor: pointer;
    transition: .3s;
}

.carousel-dots span.active {
    background: var(--primary-dark);
}

@media(max-width:768px) {

    .carousel-track img {
        height: 300px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }

}

@media(max-width:900px) {

    .hero-content,
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .menu {
        display: none;
    }
}