/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Paleta de cores */
:root {
    --primary-color: #5CBDBD; /* Turquesa/Azul-esverdeado */
    --secondary-color: #F4A6A6; /* Rosa/Coral */
    --accent-color: #4A9B9B; /* Turquesa mais escuro */
    --text-color: #333333;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #5CBDBD 0%, #4A9B9B 100%);
}

/* Header */
.header {
    background: var(--gradient);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.95rem;
}

.nav-link:hover {
    opacity: 0.8;
    background: rgba(255,255,255,0.1);
}

.contact-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #E89595;
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: var(--light-gray);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(92, 189, 189, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(92, 189, 189, 0.4);
}

.hero-image {
    text-align: center;
}

.hero-image img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    object-position: 50% 10%;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 100%;
}

/* Especialidades Section */
.especialidades {
    padding: 80px 0;
    background: var(--white);
}

.especialidades h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.especialidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.especialidade-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.especialidade-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.especialidade-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.especialidade-card p {
    color: #666;
    line-height: 1.6;
}

/* Sobre Section */
.sobre {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.sobre-text h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.sobre-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Credenciais Médicas */
.credenciais-medicas {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
}

.credenciais-medicas p {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.credenciais-medicas ul {
    list-style: none;
    padding-left: 1rem;
}

.credenciais-medicas li {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.experiencia {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.experiencia-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.experiencia-text {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}

.sobre-image img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 100%;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .cta-button {
    background: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(244, 166, 166, 0.3);
}

.cta-section .cta-button:hover {
    box-shadow: 0 6px 20px rgba(244, 166, 166, 0.4);
}

/* Planos Section */
.planos {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.planos h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.planos p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.plano-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.plano-card:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.plano-logo {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    width: auto;
    height: auto;
}

/* Localização Section */
.localizacao {
    padding: 80px 0;
    background: var(--light-gray);
}

.localizacao h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
}

.localizacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.endereco-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.endereco-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.endereco-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

/* Google Maps Button */
.maps-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(92, 189, 189, 0.3);
}

.maps-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(92, 189, 189, 0.4);
    background: var(--accent-color);
}

.localizacao-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 100%;
}

/* Depoimentos Section */
.depoimentos {
    padding: 80px 0;
    background: var(--white);
}

.depoimentos h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.depoimento-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.depoimento-card p {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.paciente {
    font-weight: 600;
    color: var(--primary-color);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.faq-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--gradient);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

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

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

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-legal {
    background: rgba(0,0,0,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.95;
}

.footer-legal p {
    margin: 0;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.9;
}

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

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

/* Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-image img {
        width: 360px;
        height: 360px;
        max-width: 100%;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .sobre-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sobre-image {
        display: flex;
        justify-content: center;
    }

    .sobre-image img {
        width: 300px;
        height: 300px;
        max-width: 100%;
    }

    .localizacao-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .endereco-card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .localizacao-image {
        display: flex;
        justify-content: center;
    }

    .cta-section .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        margin-left: auto;
        margin-right: auto;
    }

    .especialidades h2,
    .planos h2,
    .depoimentos h2,
    .faq h2,
    .localizacao h2 {
        font-size: 2rem;
    }

    .especialidades-grid,
    .planos-grid,
    .depoimentos-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .plano-card {
        min-height: 120px;
    }

    .maps-button {
        display: block;
        text-align: center;
        width: 100%;
    }

    .credenciais-medicas {
        padding: 1rem;
        margin: 1rem 0;
    }

    .experiencia {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-image img {
        width: 280px;
        height: 280px;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .sobre-image img {
        width: 250px;
        height: 250px;
        max-width: 100%;
    }

    .especialidades h2,
    .planos h2,
    .depoimentos h2,
    .faq h2,
    .localizacao h2 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .especialidade-card,
    .faq-card {
        padding: 1.5rem;
    }

    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .credenciais-medicas {
        padding: 1rem;
        margin: 1rem 0;
    }

    .maps-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }

    .footer-legal {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.especialidade-card,
.depoimento-card,
.plano-card,
.faq-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

.header-logo {
    height: 50px;
    width: auto;
}

/* Centralização de indicadores e elementos mobile */
.indicators,
.slider-dots,
.carousel-dots,
.swiper-pagination,
.image-dots,
.dots,
.pagination-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (max-width: 480px) {
  .indicators,
  .slider-dots,
  .carousel-dots,
  .swiper-pagination,
  .image-dots,
  .dots,
  .pagination-dots {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
