* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --verde: #2ab675;
    --cinza: #555;
}

body {
    color: #222;
    background: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    max-height: 65px;
    width: auto;
}


.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #222;
    font-weight: 500;
}

.btn {
    background: var(--verde);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
}

.btn-large {
    padding: 14px 28px;
}

.hero {
    padding: 80px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero-text p {
    color: var(--cinza);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    height: 350px;
    background: #f2f2f2;
    border-radius: 12px;
}

.especialidades {
    padding: 80px 0;
    background: #f9f9f9;
}

.especialidades h2 {
    text-align: center;
    margin-bottom: 40px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

.card h3 {
    color: var(--verde);
    margin-bottom: 10px;
}

.sobre {
    padding: 80px 0;
}

.sobre-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.sobre-image {
    flex: 0 0 220px; /* controla o tamanho da foto */
    max-width: 220px;
}

.sobre-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}


.sobre-text {
    flex: 1;
}

.sobre-text p {
    margin-top: 15px;
    color: var(--cinza);
}

.diferenciais {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.diferenciais-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.cta {
    background: var(--verde);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.btn-white {
    background: #fff;
    color: var(--verde);
    margin-top: 20px;
    display: inline-block;
}

.footer {
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
    background: #fff;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero-content,
    .sobre-content {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .nav {
        display: none;
    }
}

.consultorio {
    padding: 80px 0;
    background: #f9f9f9;
}

.consultorio-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.consultorio-text {
    flex: 1;
}

.consultorio-text p {
    margin-top: 15px;
    color: var(--cinza);
}

.consultorio-image {
    flex: 1;
}

.consultorio-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Responsivo */
@media (max-width: 768px) {
    .consultorio-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .sobre-content {
        flex-direction: column;
        text-align: center;
    }

    .sobre-image {
        max-width: 160px;
    }
}

.laserterapia {
    padding: 80px 0;
    background: #fff;
}

.laser-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.laser-text {
    flex: 1;
}

.laser-text p {
    margin: 15px 0 20px;
    color: var(--cinza);
}

.laser-text ul {
    list-style: none;
}

.laser-text li {
    margin-bottom: 10px;
    font-weight: 500;
}

.laser-image {
    flex: 1;
    height: 260px;
    background: #f2f2f2;
    border-radius: 12px;
}

/* Responsivo */
@media (max-width: 768px) {
    .laser-content {
        flex-direction: column;
        text-align: center;
    }

    .laser-image {
        width: 100%;
    }
}

.laser-card {
    flex: 1;
    background: #f9f9f9;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.laser-card h3 {
    color: var(--verde);
    margin-bottom: 10px;
}

.laser-card p {
    color: var(--cinza);
    margin-bottom: 20px;
}

.laser-itens {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.laser-itens span {
    font-weight: 500;
}

/* ajuste exclusivo da foto da recepção */
.foto-recepcao {
    max-width: 420px;
    width: 100%;
    display: block;
    margin: 30px auto 0;
    border-radius: 12px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-links a {
    text-decoration: none;
    color: var(--verde);
    font-weight: 500;
    border: 1px solid var(--verde);
    padding: 8px 18px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--verde);
    color: #fff;
}

.social-links a {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--verde);
    color: var(--verde);
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--verde);
    color: #fff;
}

.whatsapp-float {
    position: fixed;
    width: 58px;
    height: 58px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

.whatsapp-float,
.whatsapp-float:hover,
.whatsapp-float:focus,
.whatsapp-float:active {
    text-decoration: none;
    color: #fff;
}

.ambientes {
    padding: 80px 0;
    background: #fff;
}

.ambientes h2 {
    text-align: center;
    margin-bottom: 40px;
}

.ambientes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ambiente-card {
    background: #f9f9f9;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.ambiente-card img {
    width: 100%;
    height: auto;
    display: block;
}

.ambiente-card span {
    display: block;
    padding: 15px;
    font-weight: 500;
    color: var(--cinza);
}

/* Responsivo */
@media (max-width: 768px) {
    .ambientes-grid {
        grid-template-columns: 1fr;
    }
}
