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

:root {
    --primary-color: #d4847c;
    --secondary-color: #b8696f;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --border-radius: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
}

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.header-text h1 {
    font-size: 24px;
    margin: 0;
}

.header-text p {
    font-size: 12px;
    margin: 0;
    opacity: 0.9;
}

.nav {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav a:hover {
    opacity: 0.8;
}

.btn-consulta {
    background: var(--white);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.btn-consulta:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* Campanhas */
.campanhas {
    padding: 60px 0;
    background: var(--white);
}

.campanhas h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

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

.campanha-card {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s;
}

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

.campanha-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.campanha-card h3 {
    color: var(--primary-color);
    padding: 20px 20px 10px;
    font-size: 20px;
}

.campanha-card .preco {
    padding: 0 20px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.campanha-card .descricao {
    padding: 0 20px 20px;
    color: #999;
    font-size: 14px;
}

/* Preços */
.precos {
    padding: 60px 0;
    background: var(--light-bg);
}

.precos h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.models-section {
    margin-bottom: 60px;
}

.models-section h3 {
    text-align: center;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.models-container {
    display: flex;
    justify-content: center;
}

.model-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.model-image {
    width: 100%;
    height: auto;
    display: block;
}

.points-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.point {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: transparent;
    font-size: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.point-female {
    background: #d4847c;
    border: 2px solid var(--white);
}

.point-male {
    background: #2196F3;
    border: 2px solid var(--white);
}

.point:hover {
    transform: scale(1.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.tooltip {
    position: fixed;
    background: rgba(0,0,0,0.95);
    color: var(--white);
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 11px;
    pointer-events: none;
    z-index: 1001;
    white-space: nowrap;
    border: 1px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    display: none;
}

/* Tratamentos */
.tratamentos {
    padding: 60px 0;
    background: var(--white);
}

.tratamentos h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

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

.tratamento-card {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
    cursor: pointer;
}

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

.tratamento-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tratamento-card h3 {
    color: var(--primary-color);
    padding: 20px 20px 10px;
    font-size: 18px;
}

.tratamento-card p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 14px;
}

/* Máquina */
.maquina {
    padding: 60px 0;
    background: var(--light-bg);
}

.maquina h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.maquina-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.maquina-content video {
    width: 100%;
    border-radius: var(--border-radius);
}

.maquina-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.maquina-text ul {
    list-style: none;
}

.maquina-text li {
    padding: 8px 0;
    color: var(--primary-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .maquina-content {
        grid-template-columns: 1fr;
    }
}

/* Sobre */
.sobre {
    padding: 60px 0;
    background: var(--white);
}

.sobre h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

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

.sobre-img {
    width: 100%;
    border-radius: var(--border-radius);
}

.sobre-text h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
}

.sobre-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .sobre-content {
        grid-template-columns: 1fr;
    }
}

/* Contacto */
.contacto {
    padding: 60px 0;
    background: var(--light-bg);
}

.contacto h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contacto-info h3,
.contacto-form h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 20px;
}

.contacto-info p {
    margin-bottom: 15px;
}

.contacto-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contacto-info a:hover {
    text-decoration: underline;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(212, 132, 124, 0.3);
}

.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

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

@media (max-width: 768px) {
    .contacto-content {
        grid-template-columns: 1fr;
    }
    
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
}

/* Tratamento Detail Page */
.tratamento-detail {
    padding: 40px 0;
    background: var(--white);
}

.btn-voltar {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 30px;
    transition: color 0.3s;
}

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

.tratamento-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.tratamento-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tratamento-info h1 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 20px;
}

.tratamento-info h2 {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.descricao-principal {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

.tratamento-info ul {
    list-style: none;
    margin-bottom: 20px;
}

.tratamento-info li {
    padding: 8px 0;
    color: #666;
}

@media (max-width: 768px) {
    .tratamento-content {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 60px 0 30px 0;
    margin-top: 60px;
}

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

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-contact p {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-contact a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-treatments {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-treatments li {
    margin-bottom: 10px;
}

.footer-treatments a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-treatments a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-whatsapp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: #1fa857;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0 0 10px 0;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-bottom a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section h3 {
        text-align: center;
    }
    
    .footer-logo,
    .footer-whatsapp {
        text-align: center;
    }
}


/* CTA WhatsApp Section */
.cta-whatsapp {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
    margin: 40px 0;
}

.cta-whatsapp .container {
    max-width: 800px;
}

.cta-whatsapp h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-whatsapp p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-whatsapp-large {
    background: #25D366;
    color: var(--white);
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large:hover {
    background: #1fa857;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Tratamentos Intro */
.tratamentos-intro {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tratamentos-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.tratamentos-intro strong {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .cta-whatsapp h2 {
        font-size: 24px;
    }

    .cta-whatsapp p {
        font-size: 16px;
    }

    .btn-whatsapp-large {
        font-size: 16px;
        padding: 14px 30px;
    }

    .tratamentos-intro {
        padding: 20px;
    }

    .tratamentos-intro p {
        font-size: 14px;
    }
}


/* Menu Hambúrguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 6px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Media Queries para Mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .header .container {
        gap: 15px;
    }

    .logo-section {
        gap: 10px;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    .header-text h1 {
        font-size: 18px;
    }

    .header-text p {
        font-size: 10px;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        display: none;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .btn-consulta {
        display: none;
    }

    .header .container {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .header-text h1 {
        font-size: 16px;
    }

    .header-text p {
        font-size: 9px;
    }

    .logo {
        width: 35px;
        height: 35px;
    }

    .nav {
        padding: 15px;
    }

    .nav a {
        padding: 10px 0;
        font-size: 14px;
    }
}
