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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #fff;
}

/* ================= HEADER ================= */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #000(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 70px;
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #d4af37;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #fff;
}

/* ================= HERO ================= */

.hero {
    padding: 160px 8% 100px;
    background: linear-gradient(to right,
            #000 0%,
            #000 35%,
            #000 35%,
            #000 100%);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

/* FOTO DO DOUTOR */

.doctor-side img {
    width: 300px;
    height: 520px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 25px 60px #000(0, 0, 0, 0.7);
    margin-top: 160px;
    gap: 20px;
    position: relative;
    top: -240px;
    left: 20px;
}

/* LADO DIREITO */

.content-side {

    width: 200%;

    display: flex;
    justify-content: center;
    /* centraliza horizontal */
    align-items: center;
    position: relative;
    top: -120px;

}

/* TEXTO */

.hero-text {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.hero-text h1 {
    color: #d4af37;
    font-family: 'Playfair Display';
    text-align: center;
    width: 100%;
}

.hero-text p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

/* BOTÃO PREMIUM */

.btn {
    padding: 12px 32px;
    background: linear-gradient(45deg, #d4af37, #b8962e);
    color: #000;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    display: inline-block;
    text-align: center;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
}

.btn-phone {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
}

.btn-phone:hover {
    background: #d4af37;
    color: #000;
}

.btn-cta-sm {
    display: inline-block;
    padding: 8px 20px;
    font-size: 14px;
    color: #d4af37;
    border: 1px solid #d4af37;
    text-decoration: none;
    border-radius: 20px;
    margin-top: 15px;
    transition: 0.3s;
}

.btn-cta-sm:hover {
    background: #d4af37;
    color: #000;
}

/* CARROSSEL */

.slider {

    width: 800px;
    height: 900px;

    position: relative;

    overflow: hidden;
    border-radius: 20px;

    margin: 0 auto;
    /* CENTRALIZA */
}

.slide {

    position: absolute;

    width: 100%;
    height: 100%;

    object-fit: contain;

    opacity: 0;
    animation: fade 15s infinite;
}

.slide:nth-child(1) {
    animation-delay: 0s;
}

.slide:nth-child(2) {
    animation-delay: 6s;
}

.slide:nth-child(3) {
    animation-delay: 12s;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    38% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* ================= SOBRE ================= */

.sobre {
    padding: 120px 8%;
    background: #000;
    text-align: center;
}

.sobre h2 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.sobre p {
    max-width: 800px;
    margin: auto;
    line-height: 1.7;
    opacity: 0.9;
}

/* ================= PROCEDIMENTOS ================= */

.procedimentos {
    padding: 120px 8%;
    text-align: center;
}

.procedimentos h2 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    margin-bottom: 50px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: #1c1c1c;
    padding: 35px;
    border-radius: 20px;
    transition: 0.4s;
    box-shadow: 0 15px 35px #000(0, 0, 0, 0.4);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px #000(0, 0, 0, 0.7);
}

.card h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.card i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

/* ================= RESULTADOS ================= */

.resultados {
    padding: 100px 8%;
    background: #0a0a0a;
    text-align: center;
}

.resultados h2 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
}

.carousel-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.carousel-slide:hover img {
    transform: scale(1.1);
}

.carousel-slide span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #d4af37;
    font-weight: 600;
    text-align: left;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.8);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.carousel-prev:hover, .carousel-next:hover {
    background: #fff;
}

.cta-section {
    margin-top: 50px;
}

/* ================= DIFERENCIAIS ================= */

.diferenciais {
    padding: 100px 8%;
    background: #000;
    text-align: center;
}

.diferenciais h2 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.differential-card {
    padding: 30px;
    background: #111;
    border-radius: 20px;
    transition: 0.4s;
    border-bottom: 3px solid transparent;
}

.differential-card:hover {
    border-bottom-color: #d4af37;
    transform: translateY(-10px);
}

.differential-card i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.differential-card h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 15px;
}

/* ================= DEPOIMENTOS ================= */

.depoimentos {
    padding: 100px 8%;
    background: #0a0a0a;
    text-align: center;
}

.depoimentos h2 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #111;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.stars {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    color: #d4af37;
    font-weight: 600;
    font-size: 18px;
}

/* ================= CONTATO ================= */

.contato {
    padding: 100px 8%;
    background: #000;
    text-align: center;
}

.contato h2 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    margin-bottom: 30px;
}

.redes a {
    margin: 0 15px;
    font-size: 1.1rem;
    color: #d4af37;
    text-decoration: none;
    transition: 0.3s;
}

.redes a:hover {
    color: #fff;
}

/* ================= PRIVACY POLICY ================= */
.privacy-policy {
    padding: 180px 8% 100px;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-policy h2 {
    font-size: 3rem;
    margin-bottom: 40px;
}

.privacy-policy h3 {
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin: 40px 0 20px;
}

.privacy-policy p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.8;
}

.privacy-policy ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.privacy-policy li {
    color: #ccc;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* ================= FOOTER ================= */

footer {
    text-align: center;
    padding: 20px;
    background: #000;
    font-size: 0.9rem;
    color: #aaa;
}

/* ================= WHATSAPP FLUTUANTE ================= */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px #000(0, 0, 0, 0.5);
    z-index: 1000;
    transition: 0.3s;
}

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

.doctor-box {
    background: linear-gradient(45deg, #d4af37, #b8962e);
    color: #000;
    padding: 20px;
    border-radius: 15px;
    max-width: 250px;
    text-align: center;

    position: relative;
    top: 120px;
    /* desce a caixa */
    left: -30px;
    /* joga pra cima da foto */
    z-index: 5;
    /* fica na frente da imagem */
    position: relative;
    top: -140px;
}

.doctor-box h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    position: relative;
    top: -10px;
}

.doctor-box p {
    font-size: 14px;
    line-height: 2;
    position: relative;
    top: -10px;
}

.localizacao {

    margin-top: 80px;
    padding: 40px;

    text-align: center;

    background: #000;
}

.localizacao h2 {

    font-size: 32px;
    margin-bottom: 20px;
}

.localizacao p {

    font-size: 18px;
    margin-bottom: 30px;
}

.map-container {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.btn-maps {

    display: inline-block;

    padding: 15px 35px;

    background: #d4af37;
    color: #000;

    text-decoration: none;

    border-radius: 50px;

    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-maps:hover {

    background: #fff;
}

/* ================= RESPONSIVO ================= */

@media (max-width: 1200px) {

    .slider {
        width: 100%;
        height: 600px;
    }

    .doctor-side img {
        width: 250px;
        height: 420px;
        top: -150px;
    }

    .content-side {
        width: 100%;
        top: -80px;
    }

}


@media (max-width: 900px) {

    header {
        flex-direction: column;
        gap: 10px;
    }

    nav a {
        margin: 0 10px;
    }

    .hero-container {
        flex-direction: column;
        gap: 20px;
    }

    .doctor-side img {
        position: static;
        width: 220px;
        height: auto;
        margin-top: 40px;
    }

    .doctor-box {
        position: static;
        max-width: 300px;
        margin: 0 auto;
        top: 0;
        left: 0;
    }

    .content-side {
        position: static;
        width: 100%;
    }

    .hero {
        padding: 140px 5% 60px;
    }

    .slider {
        width: 100%;
        height: 450px;
    }

}


@media (max-width: 600px) {

    .logo img {
        height: 50px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        margin: 5px 8px;
        font-size: 14px;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        padding: 12px 25px;
        font-size: 15px;
    }

    .slider {
        height: 250px;
    }

    .carousel-slide {
        flex: 0 0 calc(100% - 20px);
    }

    .sobre,
    .procedimentos,
    .resultados,
    .diferenciais,
    .depoimentos,
    .contato,
    .localizacao {
        padding: 60px 8%;
    }

    h2 {
        font-size: 2rem !important;
    }
}