/* Estilos para o site da Dra. Taissa Oliveira - Estética & Bem Estar */

/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #c83b8c; /* Rosa/magenta */
    --secondary-color: #6a1b9a; /* Roxo */
    --accent-color: #4caf50; /* Verde */
    --light-bg: #f8f0f8; /* Fundo claro com tom rosado */
    --dark-text: #333333;
    --light-text: #ffffff;
    --section-padding: 3rem 1rem;
}

body {
    background-color: #ffffff;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

/* Cabeçalho */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.menu-toggle {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--dark-text);
    transition: all 0.3s;
}

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

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

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

.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
    
    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        box-shadow: none;
        padding: 0;
        background-color: transparent;
    }
    
    .nav-item {
        margin: 0 0 0 20px;
        text-align: left;
    }
    
    .nav-link {
        padding: 0;
    }
    
    .header-cta {
        display: inline-block;
    }
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-text);
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

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

.logo-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: none;
    list-style: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.nav-menu.active {
    display: flex;
}

.nav-item {
    margin: 10px 0;
    text-align: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.3s;
    display: block;
    padding: 10px 20px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

/* Hero Section */
.hero {
    padding-top: 80px;
    background-color: var(--light-bg);
    padding-bottom: 3rem;
}

.hero-container {
    display: flex;
    flex-direction: column;
    padding: var(--section-padding);
}

.hero-content {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-title span {
    color: var(--primary-color);
    display: block;
}

.hero-description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.secondary-button {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

.secondary-button:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.hero-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

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

/* Seções */
.section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Cards de benefícios */
.benefits {
    background-color: #ffffff;
}

.benefits-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.benefit-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.benefit-description {
    color: #666;
}

/* Serviços */
.services {
    background-color: var(--light-bg);
}

.services-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--secondary-color);
}

.service-link span {
    margin-left: 5px;
}

/* Seção CTA */
.cta-section {
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
}

.cta-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.cta-description {
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-white {
    background-color: var(--light-text);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.cta-button-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* Depoimentos */
.testimonials {
    background-color: #ffffff;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Sobre */
.about {
    background-color: var(--light-bg);
}

.about-container {
    display: flex;
    flex-direction: column;
}

.about-image {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

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

.about-content {
    flex: 1;
}

.about-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.about-description {
    margin-bottom: 1.5rem;
}

.about-credentials {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

.credentials-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.credentials-list {
    list-style: none;
}

.credentials-item {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.credentials-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Horário de atendimento */
.schedule {
    background-color: #ffffff;
}

.schedule-container {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.schedule-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-align: center;
}

.schedule-list {
    list-style: none;
    margin-bottom: 2rem;
}

.schedule-item {
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed #ddd;
}

.schedule-day {
    font-weight: 600;
}

/* Localização */
.location {
    background-color: var(--light-bg);
}

.location-container {
    display: flex;
    flex-direction: column;
}

.location-info {
    margin-bottom: 2rem;
}

.location-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.location-address {
    margin-bottom: 1.5rem;
}

.location-map {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Rodapé */
footer {
    background-color: #333;
    color: #fff;
    padding: 3rem 0 1.5rem;
}

.footer-container {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-logo-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-info {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-contact {
    list-style: none;
}

.footer-contact-item {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact-icon {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Botão de WhatsApp fixo */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Media Queries */
@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-container {
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }
    
    .hero-content {
        flex: 1;
        margin-bottom: 0;
    }
    
    .hero-image {
        flex: 1;
    }
    
    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container {
        flex-direction: row;
        gap: 30px;
    }
    
    .about-image {
        flex: 1;
        margin-bottom: 0;
    }
    
    .about-content {
        flex: 1;
    }
    
    .location-container {
        flex-direction: row;
        gap: 30px;
    }
    
    .location-info {
        flex: 1;
        margin-bottom: 0;
    }
    
    .location-map {
        flex: 1;
        height: auto;
    }
    
    .footer-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .footer-logo {
        flex: 0 0 100%;
    }
    
    .footer-info {
        flex: 0 0 48%;
    }
}

@media (min-width: 992px) {
    .benefits-container {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .services-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-logo {
        flex: 0 0 30%;
    }
    
    .footer-info {
        flex: 0 0 30%;
    }
}
