:root {
    --primary: #00818a; /* O azul-petróleo do logo */
    --dark: #333333;    /* O cinza do fundo */
    --light: #ffffff;
    --accent: #f4f4f4;
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body { color: var(--dark); line-height: 1.6; }

header {
    background: var(--dark);
    padding: 1rem 5%;
    position: fixed; width: 100%; top: 0; z-index: 1000;
}

nav { display: flex; justify-content: space-between; align-items: center; }

.logo { color: var(--light); font-weight: bold; letter-spacing: 2px; }
.logo span { font-weight: 300; }

nav ul { display: flex; list-style: none; }
nav ul li a { color: var(--light); text-decoration: none; margin-left: 20px; font-size: 0.9rem; }

.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0.0)), 
                url('/img/Faixada-remold.png') center/cover;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: white;
    background: url('/img/Faixada-remold.png') center/100% 100% no-repeat;
}




.hero h1 { font-size: 3rem; margin-bottom: 1rem; }

.btn {
    background: var(--primary);
    color: white; padding: 12px 30px;
    text-decoration: none; border-radius: 5px;
    display: inline-block; transition: 0.3s;
    border: none; cursor: pointer;
}

.btn:hover { background: #005f66; }

.services { padding: 80px 5%; background: var(--accent); text-align: center; }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px; margin-top: 40px;
}

.card {
    background: white; padding: 30px;
    border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 5px solid var(--primary);
}

.contact { padding: 80px 5%; display: flex; justify-content: center; }
.form-container { width: 100%; max-width: 500px; text-align: center; }
form input {
    width: 100%; padding: 12px; margin: 10px 0;
    border: 1px solid #ddd; border-radius: 5px;
}

.hidden { display: none; color: var(--primary); margin-top: 20px; font-weight: bold; }

/* --- Galeria Antes e Depois --- */
.gallery { padding: 80px 5%; text-align: center; background: white; }
.gallery-container { 
    display: flex; 
    justify-content: center; 
    gap: 10px; 
    flex-wrap: wrap; /* Garante que quebre linha no celular */
}
.gallery-item { position: relative; flex: 1; max-width: 400px; min-width: 300px; }
.gallery-item img { width: 100%; border-radius: 8px; filter: grayscale(20%); }
.label { 
    position: absolute; top: 10px; left: 10px; 
    background: var(--primary); color: white; 
    padding: 5px 15px; font-size: 0.7rem; border-radius: 4px; 
}

/* --- Botão WhatsApp --- */
.whatsapp-float {
    position: fixed; width: 60px; height: 60px;
    bottom: 20px; right: 20px;
    background-color: #25d366; border-radius: 50px;
    text-align: center; box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1001; display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float img { width: 35px; }

/* --- RESPONSIVIDADE (Media Queries) --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    nav ul { display: none; } /* Esconde menu tradicional no mobile para simplicidade */
    .grid { grid-template-columns: 1fr; }
    .hero-content { padding: 0 20px; }
}

nav img {
    height: 50px; /* Ajuste este valor conforme desejar */
    width: auto;  /* Mantém a proporção da imagem */
    display: block;
}

/* Estilo para encolher tudo */
header {
    background-color: #00818a; /* Apenas para visualização */
    padding: 5px 20px;         /* Reduz a altura da barra */
    border-bottom: 1px solid #0c0c0c;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav img {
    height: 40px;              /* Define o tamanho pequeno do logo */
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

/* Estilização da Galeria de Fotos */
.photo-gallery {
    padding: 60px 5%;
    background-color: #fff;
    text-align: center;
}

.photo-gallery h2 {
    margin-bottom: 10px;
    font-size: 2rem;
    color: #333;
}

.subtitle {
    margin-bottom: 30px;
    color: #777;
}

.gallery-grid {
    display: grid;
    /* Cria 3 colunas no PC, e ajusta sozinho em telas menores */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 15px; /* Espaço entre as fotos */
}

.photo-item {
    overflow: hidden; /* Corta o excesso da imagem no zoom */
    border-radius: 12px;
    height: 250px; /* Altura fixa para manter o padrão */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a foto preencher o quadrado sem achatar */
    transition: transform 0.5s ease; /* Efeito suave */
    cursor: pointer;
}

/* Efeito de Zoom ao passar o mouse */
.photo-item img:hover {
    transform: scale(1.1);
}

/* Ajuste para Celular */
@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    .photo-item {
        height: 180px;
    }
}

/* Configurações do Rodapé */
.main-footer {
    background-color: #1a2a3a; /* COR DA CLÍNICA - Altere aqui */
    color: #ffffff;
    padding: 60px 10% 20px;
    font-family: sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-box {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Deixa o logo branco se for escuro */
}

.footer-box h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

/* Linha embaixo do título */
.footer-box h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: #00d2ff; /* Cor de destaque */
    left: 0;
    bottom: -5px;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Redes Sociais Estilosas */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.social-btn:hover {
    background: #ffffff;
    color: #1a2a3a;
    transform: translateY(-5px); /* Efeito de flutuar */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #a0aec0;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-box h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-icons {
        justify-content: center;
    }
}

/* Estilização Quem Somos */
.about-section {
    padding: 80px 5%;
    background-color: #fdfdfd;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px; /* Bordas arredondadas para um ar moderno */
    box-shadow: 20px 20px 0px #1a2a3a; /* Detalhe na cor da clínica */
}

.about-text {
    flex: 1;
}

.about-text span {
    color: #00d2ff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 2px;
}

.about-text h2 {
    font-size: 36px;
    color: #1a2a3a;
    margin: 10px 0 20px;
}

.about-text p {
    color: #555;
    margin-bottom: 15px;
    font-size: 16px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about-list li {
    margin-bottom: 10px;
    color: #1a2a3a;
    font-weight: bold;
}

.about-list i {
    color: #00d2ff;
    margin-right: 10px;
}

/* Responsividade para Celular */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    
    .about-image img {
        box-shadow: 10px 10px 0px #1a2a3a;
    }
    
    .about-list li {
        text-align: left;
    }
}

@media (max-width: 768px) {
    /* O botão de barras (hamburguer) */
    .menu-toggle {
        display: block;
        color: #1a2a3a; /* Cor da sua clínica para o ícone */
        font-size: 28px;
        background: none;
        border: none;
        cursor: pointer;
    }

    /* A lista que desce */
    .nav-list {
        display: none; /* Escondido por padrão */
        flex-direction: column;
        position: absolute;
        top: 60px; /* Ajuste conforme a altura do seu header */
        left: 0;
        width: 100%;
        background-color: #1a2a3a; /* Fundo escuro para dar contraste */
        padding: 20px 0;
        z-index: 999;
    }

    /* Quando o menu está ativo (aberto) */
    .nav-list.active {
        display: flex;
    }

    /* Os links dentro do menu mobile */
    .nav-list li {
        text-align: center;
        margin: 10px 0;
        width: 100%;
    }

    .nav-list li a {
        color: #ffffff !important; /* Força o texto a ficar branco no fundo escuro */
        font-size: 18px;
        display: block;
        padding: 10px;
        text-decoration: none;
    }

    /* Efeito ao tocar no link */
    .nav-list li a:hover {
        background-color: #00d2ff;
        color: #1a2a3a !important;
    }
}

/* Container do Rodapé White Shark */
.footer-white-shark {
    background-color: #0a0f18; /* Azul quase preto, muito elegante */
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid #00d2ff; /* Linha neon no topo */
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.1); /* Logo aumenta levemente ao passar o mouse */
}

.footer-info p {
    margin: 5px 0;
    font-size: 0.95rem;
    color: #e0e0e0;
}

/* Container dos Links */
.links-container {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Estilo Base dos Links */
.links-container a {
    text-decoration: none;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 30px;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

/* Link do WhatsApp (Verde Esmeralda Vibrante) */
.link-whatsapp {
    color: #25d366;
    border: 1px solid #25d366;
    background: rgba(37, 211, 102, 0.05);
}

.link-whatsapp:hover {
    background: #25d366;
    color: #fff;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-3px);
}

/* Link do Site Animado (Ciano Tecnológico) */
.link-site-animado {
    color: #00d2ff;
    border: 1px solid #00d2ff;
    background: rgba(0, 210, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.link-site-animado:hover {
    background: #00d2ff;
    color: #0a0f18;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
    transform: translateY(-3px);
}

/* Texto de Rodapé (CNPJ e Direitos) */
.footer-bottom-text {
    margin-top: 30px !important;
    font-size: 0.8rem !important;
    color: #666666 !important;
    border-top: 1px solid #63f12b;
    padding-top: 15px;
    width: 100%;
    max-width: 600px;
}

/* Responsividade */
@media (max-width: 600px) {
    .links-container a {
        width: 90%;
        justify-content: center;
    }
}

/* Container da Onda */
.wave-container {
    width: 100%;
    line-height: 0;
    background-color: transparent;
    margin-top: 50px; /* Espaço entre a última seção e a onda */
}

.wave-container svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Ajuste no Footer para conectar com a onda */
.footer-white-shark {
    background-color: #0a0f18; /* Mesma cor do 'fill' do SVG acima */
    color: #ffffff;
    padding: 20px 20px 40px;
    text-align: center;
    position: relative;
    border-top: none; /* Removemos a borda reta anterior */
}

/* Efeito extra: Animação suave na onda ao carregar */
@keyframes wave-float {
    0% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
    100% { transform: translateX(0); }
}

.wave-container svg path {
    animation: wave-float 5s ease-in-out infinite;
    
}

/* --- ESTILO PARA COMPUTADOR (Telas Grandes) --- */

.menu-toggle {
    display: none; /* FORÇA o botão a sumir no computador */
    background: none;
    border: none;
    cursor: pointer;
}

.nav-list {
    display: flex; /* Garante que os links apareçam lado a lado no PC */
    list-style: none;
    gap: 20px;
}

/* --- ESTILO PARA CELULAR (Telas até 768px) --- */

@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* O botão hambúrguer SÓ aparece aqui */
        color: #1a2a3a;
        font-size: 25px;
        z-index: 1001;
    }

    .nav-list {
        display: none; /* Esconde a lista para virar o menu que abre/fecha */
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #1a2a3a;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .nav-list.active {
        display: flex; /* Mostra o menu quando clicado no celular */
    }
}

/* Estilo para reduzir o logo no rodapé */
.logo {
    height: 90px; /* Altere este valor para diminuir (ex: 30px) ou aumentar (ex: 50px) */
    width: auto;  /* Mantém a proporção da imagem para não achatar */
    display: inline-block; /* Garante que o alinhamento funcione corretamente */
    margin-bottom: 10px; /* Adiciona um espacinho entre o logo e o texto abaixo */
}

.footer-info {
    text-align: center; /* Centraliza o logo e os textos */
    display: flex;
    flex-direction: column;
    align-items: center; /* Garante centralização vertical se necessário */
    gap: 5px; /* Espaço uniforme entre os parágrafos */
}

.footer-links a {
    display: inline-block;
    color: #ffffff;
    background-color: #00d2ff; /* Cor principal da clínica */
    padding: 10px 20px;
    border-radius: 25px; /* Deixa o botão arredondado */
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    border: 2px solid #00d2ff;
}

.footer-links a:hover {
    background-color: transparent;
    color: #4400ff; /* Inverte as cores ao passar o mouse */
}

/* Container Principal */
.about-section {
    padding: 80px 5%;
    background-color: #ffffff;
}

/* O "Experiência e Confiança" acima do título */
.about-text span {
    display: block;
    color: #00d2ff; /* Ciano de Destaque */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Título Quem Somos */
.about-text h2 {
    color: #1a2a3a; /* Azul Marinho Profundo */
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
}

/* Parágrafos */
.about-text p {
    color: #555555; /* Cinza escuro para melhor leitura */
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Destaque no nome da clínica */
.about-text strong {
    color: #1a2a3a;
    font-weight: 700;
}

/* Lista de diferenciais (Checkmarks) */
.about-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #333333;
    font-weight: 600;
    font-size: 16px;
}

/* Ícone de check */
.about-list i {
    color: #00d2ff; /* Ciano nos ícones */
    font-size: 18px;
}

/* Efeito na Imagem (Opcional - Borda estilizada) */
.about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 15px 15px 0px #00d2ff; /* Sombra sólida ciano */
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* No celular, um embaixo do outro */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .about-list li {
        justify-content: center;
    }
}

/* Seção da Galeria */
.gallery {
    padding: 80px 5%;
    background-color: #f9f9f9; /* Fundo leve para destacar as fotos */
    text-align: center;
}

.gallery h2 {
    color: #1a2a3a; /* Azul da clínica */
    margin-bottom: 40px;
    font-size: 32px;
}

/* Container que cria as fileiras horizontais */
.gallery-container {
    display: grid;
    /* Cria 3 colunas iguais no computador */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 25px; /* Espaço entre as fotos */
    max-width: 1200px;
    margin: 0 auto;
}

/* Cada item da galeria */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: #fff;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px); /* Efeito de flutuar ao passar o mouse */
}

/* Estilização da imagem */
.gallery-item img {
    width: 100%;
    height: 250px; /* Altura fixa para manter a fileira alinhada */
    object-fit: cover; /* Não deixa a foto esticar */
    display: block;
}

/* Selo Antes & Depois */
.gallery-item .label {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #00d2ff; /* Ciano da clínica */
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-btn {
    font-size: 20px;
    color: #3a1a36; /* Azul da sua clínica */
    transition: 0.3s;
}

.social-btn.instagram:hover { color: #E1306C; }
.social-btn.facebook:hover { color: #4267B2; }
.social-btn.whatsapp:hover { color: #25D366; }
.social-btn.youtube:hover { color: #FF0000; }

.btn {
    background-color: #00d2ff; /* Ciano da clínica */
    color: white;
    border: none;
    padding: 12px 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background-color: #1a2a3a; /* Azul Marinho ao passar o mouse */
}

/* Botão Flutuante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #00d2ff; /* Ciano da Clínica */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 3000; /* Garante que fique acima de tudo */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    
    /* Ativa a animação */
    animation: pulse-redes 2s infinite;
}

/* Efeito de passar o mouse */
.whatsapp-float:hover {
    background-color: #1a2a3a; /* Muda para o Azul Marinho da Clínica */
    color: #00d2ff;
    transform: scale(1.1);
    transition: 0.3s;
}

/* Animação de Pulso (Movimento) */
@keyframes pulse-redes {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 210, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0);
    }
}

/* Ajuste para ícone não ficar torto */
.whatsapp-float i {
    margin-top: 0;
}

/* Container Principal */
.footer-box {
    text-align: center; /* Centraliza o título e os ícones */
    font-family: Arial, sans-serif;
    padding: 20px;
}

.footer-box h4 {
    margin-bottom: 15px;
    color: #f3eeee;
    font-size: 1.2rem;
}

/* Flexbox para alinhar os botões lado a lado */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px; /* Espaço entre os botões */
    flex-wrap: wrap;
}

/* Estilo Base dos Botões */
.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

/* Efeito de Hover Geral */
.social-btn:hover {
    transform: translateY(-5px); /* Sobe levemente o botão */
    filter: brightness(1.1);     /* Dá um brilho extra */
}

/* Cores Específicas das Redes */
.whatsapp {
    background-color: #25D366;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.instagram {
    /* Gradiente oficial do Instagram */
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 4px 10px rgba(214, 36, 159, 0.3);
}

.facebook {
    background-color: #1877F2;
    box-shadow: 0 4px 10px rgba(24, 119, 242, 0.3);
}

.youtube {
    background-color: #FF0000;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
}

/* Container de Informações */
.info-box {
    max-width: 350px; /* Ajuste conforme necessário */
    text-align: left; /* Alinhamento à esquerda para leitura fácil */
    margin: 20px auto;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 12px; /* Espaço entre ícone e texto */
    color: #444;
    font-size: 15px;
    line-height: 1.4;
}

/* Estilo dos Ícones de Informação */
.info-item i {
    color: #1877F2; /* Cor azul suave (ou use a cor da sua marca) */
    font-size: 18px;
    width: 20px; /* Garante que os textos comecem na mesma linha vertical */
    text-align: center;
}

/* Link do Telefone */
.info-item a {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #25D366; /* Cor de destaque ao passar o mouse */
}

/* Seção de Equipamentos */
.equipamentos-section {
    padding: 60px 20px;
    background-color: #f5eded;
    text-align: center;
    font-family: sans-serif;
}

.titulo-sessao {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.subtitulo {
    color: #7f8c8d;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid de Equipamentos */
.equipamentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Card Individual */
.equipamento-card {
    background: #fdfdfd;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.equipamento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #1877F2; /* Cor azul do seu rodapé */
}

/* Estilo do Ícone ou Imagem */
.equipamento-img {
    font-size: 40px;
    color: #1088a3;
    margin-bottom: 20px;
}

.equipamento-card h3 {
    font-size: 1.3rem;
    color: #502c40;
    margin-bottom: 15px;
}

.equipamento-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 768px) {
    .titulo-sessao { font-size: 1.8rem; }
}

/* Estilo dos Botões Sociais */
.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Cores de Marca com Efeito Glow */
.whatsapp { background-color: #25d366; }
.whatsapp:hover { box-shadow: 0 0 20px rgba(37, 211, 102, 0.6); transform: scale(1.15); }

.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.instagram:hover { box-shadow: 0 0 20px rgba(214, 36, 159, 0.6); transform: scale(1.15); }

.facebook { background-color: #1877f2; }
.facebook:hover { box-shadow: 0 0 20px rgba(24, 119, 242, 0.6); transform: scale(1.15); }

.youtube { background-color: #ff0000; }
.youtube:hover { box-shadow: 0 0 20px rgba(255, 0, 0, 0.6); transform: scale(1.15); }

/* Mensagem de Feedback */
.hidden { display: none; }
#message {
    color: #00d2ff;
    font-size: 0.9rem;
    margin-left: 10px;
}

/* Ajustes da Clínica Studio no Rodapé */
.main-footer {
    background-color: #0a0f18;
    color: white;
    padding: 60px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.nav-logo {
    max-width: 180px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.footer-box h5 {
    font-weight: 300;
    color: #cbd5e0;
    line-height: 1.5;
    max-width: 250px;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li a {
    color: #0e6cd1;
    text-decoration: none;
    line-height: 2;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #7700ff;
    padding-left: 5px;
}

.social-section h4 {
    color: #00d2ff; /* Azul Ciano Vibrante */
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
    /* Adiciona um leve brilho no texto */
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
}

.social-section h4 {
    color: #94a3b8; /* Cinza azulado discreto */
    font-size: 1rem;
    text-transform: uppercase;
    border-bottom: 2px solid #1a202c;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

/* Layout Principal do Rodapé */
.footer-container {
    display: flex;
    justify-content: space-around; /* Espalha os blocos igualmente */
    align-items: flex-start;
    flex-wrap: wrap; /* Faz quebrar linha no celular */
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    gap: 30px;
}

/* Ajuste das caixas individuais */
.footer-box {
    flex: 1; /* Faz as caixas crescerem por igual */
    min-width: 250px; /* Evita que fiquem muito apertadas */
}

/* Reaplicando a animação de pulsação nos botões */
.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

/* O efeito de pulsação (Ondas) */
.social-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Cores específicas */
.whatsapp { background-color: #25d366; }
.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.facebook { background-color: #1877f2; }
.youtube { background-color: #ff0000; }

/* Estilo para telas pequenas */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
}