/* 
* CSS personalizado para o site da Dra. Roberta Olivero 
* Designer by i9Andrades
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    /* Paleta de cores principal */
    --cor-principal: #f8c8dc; /* Rosa claro */
    --cor-secundaria: #e091b9; /* Rosa médio */
    --cor-terciaria: #d46ba8; /* Rosa escuro */
    --cor-destaque: #8a2be2; /* Roxo */
    --cor-dourado: #d4af37; /* Dourado */
    
    /* Cores neutras */
    --cor-texto: #333333;
    --cor-clara: #ffffff;
    --cor-escura: #222222;
    --cor-fundo-claro: #f9f9f9;
    
    /* Fontes */
    --fonte-titulos: 'Playfair Display', serif;
    --fonte-corpo: 'Poppins', sans-serif;
    
    /* Gradientes */
    --gradiente-principal: linear-gradient(135deg, var(--cor-principal) 0%, var(--cor-secundaria) 100%);
    --gradiente-destaque: linear-gradient(135deg, var(--cor-secundaria) 0%, var(--cor-terciaria) 100%);
    --gradiente-dourado: linear-gradient(135deg, var(--cor-dourado) 0%, var(--cor-terciaria) 100%);
    
    /* Sombras */
    --sombra-suave: 0 10px 30px rgba(0, 0, 0, 0.05);
    --sombra-media: 0 15px 35px rgba(0, 0, 0, 0.1);
    --sombra-forte: 0 20px 40px rgba(0, 0, 0, 0.15);
    
    /* Bordas */
    --borda-radius-pequeno: 8px;
    --borda-radius-medio: 15px;
    --borda-radius-grande: 30px;
    --borda-radius-completo: 50%;
}

/* Estilos gerais */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fonte-corpo);
    color: var(--cor-texto);
    overflow-x: hidden;
    background-color: var(--cor-clara);
    line-height: 1.8;
    font-weight: 300;
}

/* Estrutura de seções */
section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: var(--borda-radius-completo);
    background: var(--gradiente-principal);
    opacity: 0.05;
    z-index: -1;
}

section:nth-child(odd)::before {
    top: -150px;
    left: -150px;
}

section:nth-child(even)::before {
    bottom: -150px;
    right: -150px;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--fonte-titulos);
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

h5 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}

h6 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Títulos de seção */
.section-title {
    position: relative;
    margin-bottom: 70px;
    text-align: center;
}

.section-title h2 {
    font-size: 3rem;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    color: var(--cor-escura);
    z-index: 1;
}

.section-title h2::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--cor-principal);
    border-radius: var(--borda-radius-completo);
    top: -10px;
    left: -20px;
    z-index: -1;
    opacity: 0.5;
}

.section-title p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    font-weight: 300;
}

/* Botões personalizados */
.btn-custom {
    background: var(--gradiente-principal);
    color: var(--cor-escura);
    border: none;
    border-radius: var(--borda-radius-grande);
    padding: 12px 35px;
    font-weight: 500;
    font-family: var(--fonte-corpo);
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradiente-destaque);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: -1;
}

.btn-custom:hover::before {
    width: 100%;
}

.btn-custom:hover {
    color: var(--cor-clara);
    transform: translateY(-5px);
    box-shadow: var(--sombra-media);
}

.btn-outline {
    background: transparent;
    color: var(--cor-terciaria);
    border: 2px solid var(--cor-terciaria);
    border-radius: var(--borda-radius-grande);
    padding: 12px 35px;
    font-weight: 500;
    font-family: var(--fonte-corpo);
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--cor-terciaria);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: -1;
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-outline:hover {
    color: var(--cor-clara);
    transform: translateY(-5px);
    box-shadow: var(--sombra-media);
}

/* Menu de navegação lateral */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 80px;
    background: var(--cor-clara);
    box-shadow: var(--sombra-suave);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    overflow: hidden;
}

.navbar:hover {
    width: 250px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.navbar:hover .navbar-brand {
    height: 120px;
    justify-content: center;
    width: 100%;
}

.navbar-brand img {
    height: 60px;
    transition: all 0.4s ease;
}

.navbar:hover .navbar-brand img {
    height: 90px;
    margin: 0 auto;
}

.navbar-nav {
    margin-top: 30px;
    width: 100%;
}

.navbar-nav .nav-item {
    width: 100%;
    margin: 8px 0;
}

.navbar-nav .nav-link {
    display: flex;
    align-items: center;
    color: var(--cor-escura);
    font-weight: 500;
    padding: 12px 20px;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link i {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
    margin-right: 15px;
}

.navbar-nav .nav-link span {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar:hover .navbar-nav .nav-link span {
    opacity: 1;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 3px;
    background: var(--gradiente-principal);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--cor-terciaria);
    background: rgba(248, 200, 220, 0.1);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    transform: scaleY(1);
}

/* Ajuste para o conteúdo com menu lateral */
.content-wrapper {
    margin-left: 80px;
    width: calc(100% - 80px);
    transition: all 0.4s ease;
}

/* Botão do menu mobile */
.menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradiente-principal);
    border-radius: var(--borda-radius-completo);
    z-index: 1001;
    cursor: pointer;
    box-shadow: var(--sombra-suave);
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 25px;
    background: var(--cor-escura);
    border-radius: 9px;
    opacity: 1;
    left: 12px;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
    top: 18px;
}

.menu-toggle span:nth-child(2),
.menu-toggle span:nth-child(3) {
    top: 24px;
}

.menu-toggle span:nth-child(4) {
    top: 30px;
}

.menu-toggle.open span:nth-child(1) {
    top: 24px;
    width: 0;
    left: 50%;
}

.menu-toggle.open span:nth-child(2) {
    transform: rotate(45deg);
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.menu-toggle.open span:nth-child(4) {
    top: 24px;
    width: 0;
    left: 50%;
}

@media (max-width: 991px) {
    .navbar {
        left: -100%;
        width: 250px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .navbar.open {
        left: 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .content-wrapper {
        margin-left: 0;
        width: 100%;
    }
    
    .navbar-nav .nav-link span {
        opacity: 1;
    }
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    color: var(--cor-clara);
}

.hero-split {
    display: flex;
    height: 100%;
}

.hero-left {
    width: 50%;
    height: 100%;
    background: var(--cor-escura);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

.hero-left::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: var(--cor-escura);
    transform: skewX(-10deg);
    transform-origin: top right;
    z-index: -1;
}

.hero-right {
    width: 50%;
    height: 100%;
    background: url('../imagens/banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 200, 220, 0.3) 0%, rgba(212, 107, 168, 0.3) 100%);
}

.hero-content {
    max-width: 600px;
    position: relative;
}

.hero-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: var(--borda-radius-completo);
    background: var(--gradiente-principal);
    opacity: 0.1;
    top: -100px;
    left: -100px;
    z-index: -1;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.hero-content h1 span {
    color: var(--cor-principal);
    position: relative;
    display: inline-block;
}

.hero-content h1 span::after {
    /* Sublinhado removido conforme solicitado */
    content: '';
    position: absolute;
    width: 0; /* Alterado de 100% para 0 para remover o sublinhado */
    height: 8px;
    background: var(--gradiente-principal);
    bottom: 5px;
    left: 0;
    z-index: -1;
    opacity: 0.5;
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 400;
    color: var(--cor-principal);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.hero-btn-group {
    display: flex;
    gap: 20px;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--cor-clara);
    font-size: 0.9rem;
    z-index: 5;
}

.scroll-down i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 991px) {
    #hero {
        height: auto;
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .hero-split {
        flex-direction: column;
    }
    
    .hero-left, .hero-right {
        width: 100%;
    }
    
    .hero-left {
        height: auto;
        padding: 60px 30px;
        order: 2;
    }
    
    .hero-right {
        height: 40vh;
        order: 1;
    }
    
    .hero-left::before {
        display: none;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-btn-group {
        justify-content: center;
    }
    
    .scroll-down {
        bottom: 20px;
    }
}

/* Sobre Section */
.section-padding {
    padding: 100px 0;
    position: relative;
}

.title-shape {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(147, 112, 219, 0.2));
    transform: rotate(45deg);
    top: -30px;
    left: 50%;
    margin-left: -30px;
    z-index: -1;
    border-radius: 10px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: rotate(45deg) translate(0, 0); }
    50% { transform: rotate(45deg) translate(0, 15px); }
    100% { transform: rotate(45deg) translate(0, 0); }
}

.gradient-text {
    background: linear-gradient(135deg, var(--cor-principal), var(--cor-terciaria));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

#sobre {
    background-color: #f9f9f9;
}

.sobre-container {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.sobre-img-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.sobre-img-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.3), rgba(147, 112, 219, 0.3));
    border-radius: 50%;
    top: -100px;
    left: -100px;
    z-index: 1;
}

.sobre-img {
    position: relative;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.sobre-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.sobre-img:hover img {
    transform: scale(1.05);
}

.sobre-badges {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.badge-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, var(--cor-principal), var(--cor-destaque));
    color: white;
}

.badge-item i {
    font-size: 18px;
    color: var(--accent-color);
}

.badge-item:hover i {
    color: white;
}

.badge-item span {
    font-weight: 600;
    font-size: 14px;
}

.sobre-content {
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sobre-header {
    margin-bottom: 30px;
}

.sobre-header h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.sobre-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--cor-principal), var(--cor-destaque));
    border-radius: 2px;
}

.sobre-text {
    flex: 1;
}

.sobre-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
    color: #555;
}

.sobre-text strong {
    color: #333;
    font-weight: 600;
}

.sobre-cta {
    margin-top: 30px;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 16px;
}

.btn-custom span {
    margin-right: 10px;
}

/* Responsividade para a seção Sobre */
@media (max-width: 991px) {
    .sobre-img-container {
        height: auto;
        min-height: 400px;
    }
    
    .sobre-img img {
        height: auto;
        min-height: 400px;
    }
    
    .sobre-content {
        padding: 30px;
    }
    
    .sobre-header h3 {
        font-size: 28px;
    }
    
    .sobre-badges {
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .sobre-img-container {
        height: auto;
        min-height: 300px;
    }
    
    .sobre-img img {
        height: auto;
        min-height: 300px;
        object-position: center top;
    }
    
    .sobre-badges {
        position: relative;
        bottom: auto;
        left: auto;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        padding: 20px;
        background-color: rgba(255, 255, 255, 0.9);
    }
    
    .badge-item {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .sobre-content {
        padding: 25px 20px;
    }
    
    .sobre-header h3 {
        font-size: 24px;
        text-align: center;
    }
    
    .sobre-divider {
        margin: 0 auto;
    }
}

.sobre-content {
    padding: 20px;
}

.sobre-content h3 {
    margin-bottom: 20px;
    color: var(--cor-terciaria);
}

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

/* Serviços Section */
#servicos {
    background-color: var(--cor-fundo-claro);
    position: relative;
    overflow: hidden;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
    gap: 20px;
}

.service-hex {
    position: relative;
    width: 300px;
    height: 350px;
    margin: 10px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--cor-clara);
    box-shadow: var(--sombra-suave);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: 1;
}

.service-hex::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradiente-principal);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: -1;
}

.service-hex:hover::before {
    opacity: 1;
}

.service-hex:hover {
    transform: translateY(-15px);
    box-shadow: var(--sombra-media);
}

.service-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    text-align: center;
    clip-path: polygon(50% 5%, 95% 27.5%, 95% 72.5%, 50% 95%, 5% 72.5%, 5% 27.5%);
    background: var(--cor-clara);
    transition: all 0.4s ease;
}

.service-hex:hover .service-content {
    background: transparent;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradiente-principal);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-hex:hover .service-icon {
    background: var(--cor-clara);
    transform: rotate(30deg) scale(0.9);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--cor-escura);
    transition: all 0.4s ease;
}

.service-hex:hover .service-icon i {
    color: var(--cor-principal);
    transform: rotate(-30deg);
}

.service-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--cor-terciaria);
    transition: all 0.4s ease;
}

.service-hex:hover .service-title {
    color: var(--cor-clara);
}

.service-desc {
    color: #666;
    font-size: 0.95rem;
    transition: all 0.4s ease;
}

.service-hex:hover .service-desc {
    color: var(--cor-clara);
}

.service-highlight {
    position: relative;
    padding: 50px 30px;
    border-radius: var(--borda-radius-medio);
    background: var(--cor-clara);
    box-shadow: var(--sombra-suave);
    overflow: hidden;
    z-index: 1;
}

.service-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradiente-destaque);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.service-highlight:hover::before {
    opacity: 1;
}

.service-highlight:hover * {
    color: var(--cor-clara) !important;
}

.service-highlight:hover .btn-custom {
    background: var(--cor-clara);
    color: var(--cor-terciaria) !important;
    border: 2px solid var(--cor-clara);
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-highlight:hover .btn-custom:hover {
    background: transparent;
    color: var(--cor-clara) !important;
    border: 2px solid var(--cor-clara);
    transform: translateY(-3px);
}

@media (max-width: 767px) {
    .services-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 30px;
    }
    
    .service-hex {
        width: 100%;
        max-width: 260px;
        height: 300px;
        margin: 0 auto;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    }
    
    .service-content {
        padding: 20px 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    
    .service-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
        text-align: center;
    }
    
    .service-desc {
        font-size: 0.85rem;
        line-height: 1.4;
        text-align: center;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .service-highlight {
        padding: 30px 20px;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .service-highlight h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
        color: var(--cor-terciaria);
    }
    
    .service-highlight p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .service-highlight .row .col-md-4 {
        margin-bottom: 10px;
    }
    
    .service-highlight .d-flex {
        justify-content: center;
    }
    
    .service-highlight .btn-custom,
    .service-highlight .btn-outline {
        width: 100%;
        margin-top: 10px;
        justify-content: center;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .service-hex {
        max-width: 260px;
        height: 300px;
    }
    
    .service-content {
        padding: 25px 15px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
    
    .service-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .service-desc {
        font-size: 0.85rem;
    }
    
    .service-highlight h3 {
        font-size: 1.5rem;
    }
}

/* Botão WhatsApp flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: white;
}

.whatsapp-float:focus,
.whatsapp-float:active {
    text-decoration: none;
    color: white;
}

.whatsapp-float i {
    color: white;
}

@media (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

/* Seção Localização */
.location-section {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.location-container {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.location-map-col {
    position: relative;
    min-height: 600px;
}

.row.g-0 {
    margin: 0;
    height: 100%;
}

.location-map-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
    display: block;
    line-height: 0;
}



.location-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(147,112,219,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.map-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 78%; /* Aumentado para eliminar completamente o espaço em branco */
    overflow: hidden;
    margin-bottom: -2px; /* Elimina qualquer espaço residual */
    font-size: 0; /* Elimina espaços causados por whitespace */
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    pointer-events: auto;
    min-height: 100%;
}

.location-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-pin i {
    font-size: 32px;
    color: var(--primary-color);
    z-index: 2;
    animation: bounce 2s infinite;
}

.pin-pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 182, 193, 0.4);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

@keyframes pulse {
    0% {transform: scale(0.8); opacity: 1;}
    70% {transform: scale(1.5); opacity: 0;}
    100% {transform: scale(0.8); opacity: 0;}
}

.location-info-wrapper {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
}

@media (min-width: 992px) {
    .location-info-wrapper {
        padding: 50px;
    }
    
    .location-map-col {
        min-height: 700px;
    }
}

.location-header {
    margin-bottom: 30px;
}

.location-header h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.location-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.location-address {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.address-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.address-icon i {
    color: white;
    font-size: 18px;
}

.address-text p {
    margin-bottom: 5px;
    font-size: 16px;
    color: #333;
}

.location-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.info-card {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 15px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.info-card.highlight {
    background: linear-gradient(135deg, rgba(255,182,193,0.2), rgba(147,112,219,0.2));
}

.info-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-icon i {
    font-size: 20px;
    color: var(--accent-color);
}

.info-content h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.info-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.info-content p.price {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
}

.location-cta {
    display: flex;
    gap: 15px;
    margin-top: auto;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-maps {
    background: white;
    color: var(--cor-terciaria);
    border: 2px solid var(--cor-principal);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-maps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cor-principal), var(--cor-terciaria));
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease;
}

.btn-maps:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.btn-maps:hover::before {
    opacity: 1;
}

.btn-outline i, .btn-custom i, .btn-maps i {
    margin-right: 8px;
}

.btn-maps i {
    color: var(--cor-principal);
    font-size: 1.1rem;
}

.btn-maps:hover i {
    color: white;
}

/* Responsividade para a seção Localização */
@media (max-width: 991px) {
    .location-map-col {
        min-height: 300px;
    }
    
    .location-info-wrapper {
        padding: 30px;
    }
    
    .location-cta {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .location-cta a {
        width: 100%;
        justify-content: center;
    }
    
    .btn-maps {
        border-width: 3px;
        padding: 14px 20px;
    }
    
    .location-header h3 {
        font-size: 28px;
    }
    
    .location-info-grid {
        grid-template-columns: 1fr;
    }
    
    .location-cta {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .location-map-col {
        min-height: 300px;
    }
    
    .info-card {
        padding: 10px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .info-icon i {
        font-size: 16px;
    }
}

/* Localização Section */
.location-card {
    background-color: var(--cor-clara);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.location-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.location-info {
    padding: 20px;
}

.location-info h4 {
    color: var(--cor-terciaria);
    margin-bottom: 15px;
}

.location-info p {
    margin-bottom: 10px;
}

.location-info i {
    color: var(--cor-terciaria);
    margin-right: 10px;
}

.map-container {
    height: 300px;
    width: 100%;
}

/* FAQ Section */
.faq-section {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.faq-section .section-title {
    margin-bottom: 50px;
}

.faq-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.faq-image-col {
    position: relative;
}

.faq-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-image {
    position: relative;
    width: 90%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

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

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

.faq-image-shape {
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    top: 10%;
    left: 5%;
    z-index: 1;
    opacity: 0.5;
}

.faq-badge {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: white;
    border-radius: 50px 0 0 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.faq-badge i {
    font-size: 24px;
    color: var(--accent-color);
    margin-right: 10px;
}

.faq-badge span {
    font-weight: 600;
    color: #333;
}

.faq-content-col {
    position: relative;
}

.custom-accordion {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
}

.accordion-button {
    padding: 20px 25px;
    background-color: white;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.faq-question {
    display: flex;
    align-items: center;
    width: 100%;
}

.faq-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(147, 112, 219, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.faq-icon i {
    color: var(--accent-color);
    font-size: 18px;
}

.faq-question span {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.accordion-button:not(.collapsed) .faq-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.accordion-button:not(.collapsed) .faq-icon i {
    color: white;
}

.accordion-button:not(.collapsed) .faq-question span {
    color: var(--primary-color);
    font-weight: 700;
}

.accordion-button::after {
    background-size: 14px;
    transition: all 0.3s ease;
    color: #888;
}

.accordion-body {
    padding: 5px 25px 25px 80px;
    color: #555;
}

.accordion-body p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.faq-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.faq-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.faq-list li i {
    color: var(--accent-color);
    margin-right: 10px;
    margin-top: 4px;
}

.faq-highlight {
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.1), rgba(147, 112, 219, 0.1));
    border-left: 3px solid var(--accent-color);
    border-radius: 0 10px 10px 0;
    font-weight: 500;
    color: #333;
}

.faq-age-groups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.age-group {
    background: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.age-group:hover {
    transform: translateY(-5px);
}

.age-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.age-icon i {
    font-size: 20px;
    color: var(--accent-color);
}

.age-group h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.age-group p {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}

.reimbursement-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
}

.step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.step-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}

.faq-tip {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.1), rgba(147, 112, 219, 0.1));
    border-radius: 10px;
    margin-top: 20px;
}

.faq-tip i {
    font-size: 20px;
    color: var(--accent-color);
    margin-right: 15px;
    margin-top: 2px;
}

.faq-tip p {
    margin-bottom: 0;
    font-size: 14px;
    color: #333;
}

.derm-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.derm-type {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.derm-type:hover {
    transform: translateY(-5px);
}

.derm-type.clinical {
    border-top: 3px solid var(--primary-color);
}

.derm-type.cosmiatry {
    border-top: 3px solid var(--accent-color);
}

.derm-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.clinical .derm-icon {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(147, 112, 219, 0.2));
}

.cosmiatry .derm-icon {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 182, 193, 0.2));
}

.clinical .derm-icon i {
    color: var(--primary-color);
}

.cosmiatry .derm-icon i {
    color: var(--accent-color);
}

.derm-icon i {
    font-size: 24px;
}

.derm-type h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.derm-type p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.derm-list {
    list-style: none;
    padding-left: 0;
}

.derm-list li {
    font-size: 14px;
    color: #555;
    padding: 5px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.derm-list li:last-child {
    border-bottom: none;
}

.derm-note {
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.1), rgba(147, 112, 219, 0.1));
    border-radius: 10px;
    margin-top: 20px;
}

.derm-note p {
    margin-bottom: 0;
    font-size: 15px;
    color: #333;
    text-align: center;
}

.faq-cta {
    text-align: center;
    margin-top: 30px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-cta p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #333;
}

/* Responsividade para a seção FAQ */
@media (max-width: 991px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
    
    .faq-image-col {
        display: none;
    }
    
    .faq-age-groups {
        grid-template-columns: 1fr;
    }
    
    .derm-comparison {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .accordion-body {
        padding: 5px 15px 15px 60px;
    }
    
    .faq-question span {
        font-size: 14px;
    }
    
    .faq-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }
    
    .faq-icon i {
        font-size: 14px;
    }
    
    .faq-cta p {
        font-size: 16px;
    }
}

/* Contato Section */
.contact-info {
    margin-bottom: 30px;
}

.contact-info i {
    width: 50px;
    height: 50px;
    background-color: var(--cor-principal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--cor-escura);
    font-size: 1.2rem;
    float: left;
}

.contact-info-content {
    overflow: hidden;
}

.contact-info-content h5 {
    margin-bottom: 5px;
    color: var(--cor-terciaria);
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--cor-principal);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--cor-escura);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--cor-terciaria);
    color: var(--cor-clara);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--cor-escura);
    color: var(--cor-clara);
    padding: 60px 0 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
}

.footer-text {
    margin-bottom: 20px;
    color: #aaa;
}

.footer-links h5 {
    color: var(--cor-principal);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-links ul li a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--cor-principal);
    padding-left: 5px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--cor-clara);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--cor-principal);
    color: var(--cor-escura);
    transform: translateY(-3px);
}

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

.footer-bottom a {
    color: var(--cor-principal);
    text-decoration: none;
}

/* Footer Estilizado */
footer {
    background-color: #1a1a1a;
    padding: 40px 0 20px;
    color: #fff;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.footer-slogan {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0;
    font-style: italic;
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-copyright p {
    margin: 5px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-copyright a {
    color: var(--cor-terciaria);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #fff;
}

@media (max-width: 767px) {
    footer {
        padding: 30px 0 15px;
    }
    
    .footer-logo {
        max-width: 150px;
    }
    
    .footer-slogan {
        font-size: 14px;
    }
}

/* WhatsApp flutuante */
#whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

#whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

#whatsapp-float:active {
    transform: scale(0.95);
}

#whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    z-index: -1;
    transition: all 0.3s ease;
}

#whatsapp-float:hover::before {
    opacity: 1;
    transform: scale(1.2);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Modal */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: none;
    padding: 20px 20px 0;
}

.modal-body {
    padding: 20px 30px 30px;
}

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

/* Seção de Contatos */
.contact-info-card, .appointment-card {
    background-color: var(--cor-clara);
    border-radius: var(--borda-radius-medio);
    box-shadow: var(--sombra-suave);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover, .appointment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-media);
}

.card-header {
    background: var(--gradiente-principal);
    padding: 20px;
    position: relative;
}

.card-header h4 {
    color: var(--cor-escura);
    margin: 0;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
}

.card-body {
    padding: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cor-principal), var(--cor-secundaria));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.icon-box i {
    color: var(--cor-escura);
    font-size: 20px;
}

.info-content h5 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--cor-escura);
}

.info-content p {
    margin-bottom: 10px;
    color: #666;
}

.btn-link {
    color: var(--cor-terciaria);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.btn-link i {
    margin-right: 5px;
}

.btn-link:hover {
    color: var(--cor-destaque);
}

.contact-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.btn-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background: #f5f5f5;
    border-radius: var(--borda-radius-pequeno);
    text-decoration: none;
    color: var(--cor-escura);
    transition: all 0.3s ease;
    text-align: center;
}

.btn-contact i {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--cor-terciaria);
}

.btn-contact span {
    font-size: 14px;
    font-weight: 500;
}

.btn-contact:hover {
    background: var(--cor-fundo-claro);
    transform: translateY(-3px);
    box-shadow: var(--sombra-suave);
}

.btn-contact.whatsapp i {
    color: #25D366;
}

.btn-contact.instagram i {
    color: #E1306C;
}

.doctor-profile {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: var(--sombra-suave);
}

.profile-image img {
    max-width: 80%;
    max-height: 80%;
}

.profile-info h5 {
    margin-bottom: 5px;
    font-size: 1.3rem;
    color: var(--cor-escura);
}

.profile-info p {
    margin-bottom: 5px;
    color: #666;
    font-size: 0.9rem;
}

.appointment-info {
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-item i {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--cor-principal), var(--cor-secundaria));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--cor-escura);
    font-size: 14px;
}

.info-item p {
    margin: 0;
    font-size: 0.95rem;
}

.appointment-cta {
    margin-top: 30px;
}

.btn-lg {
    padding: 15px 25px;
    font-size: 1.1rem;
}

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

/* Media Queries */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--cor-clara);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }
    
    .navbar-nav .nav-link {
        margin: 10px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .contact-buttons {
        grid-template-columns: 1fr;
    }
    
    .appointment-card {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .sobre-img {
        margin-bottom: 30px;
    }
}

/* Botão flutuante de WhatsApp */
#btn-whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    animation: pulse 1.5s infinite;
    text-decoration: none;
}

#btn-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.2);
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 575px) {
    #btn-whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-btn-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-btn-group .btn {
        width: 100%;
        text-align: center;
    }
    
    .menu-toggle {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .menu-toggle span {
        width: 20px;
        left: 10px;
    }
    
    .menu-toggle span:nth-child(1) {
        top: 14px;
    }
    
    .menu-toggle span:nth-child(2),
    .menu-toggle span:nth-child(3) {
        top: 20px;
    }
    
    .menu-toggle span:nth-child(4) {
        top: 26px;
    }
}
