/* ============================================================
   LONGEVITÁ - CSS ATUALIZADO 2026
   Desenvolvido por CRV Soluções em TI
============================================================ */

/* ============================================================
   RESET & BASE
============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --laranja: #EB7217;
    --dourado: #C1A336;
    --verde: #96B74B;
    --branco: #ffffff;
    --marrom: #523a34;
    --font-titulo: 'Playfair Display', serif;
    --font-texto: 'Inter', sans-serif;
    --sombra-card: 0 4px 20px rgba(0,0,0,0.08);
    --sombra-hover: 0 8px 30px rgba(150, 183, 75, 0.25);
}

body {
    font-family: var(--font-texto);
    background: #f8f9fa;
    color: var(--marrom);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ============================================================
   TIPOGRAFIA
============================================================ */
h1, h2, h3 {
    font-family: var(--font-titulo);
    color: var(--marrom);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
}

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

h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.subtitulo {
    font-family: var(--font-texto);
    color: var(--verde);
    font-weight: 600;
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 45px;
}

p, li, input, textarea, button {
    font-family: var(--font-texto);
}

/* ============================================================
   CONTAINER
============================================================ */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ============================================================
   HEADER
============================================================ */
.header {
    background: rgba(255, 255, 255, 0.98);
    padding: 16px 0;
    border-bottom: 2px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.header-shadow {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo {
    height: 65px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.titulo-clinica {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    font-family: var(--font-titulo);
    color: var(--marrom);
    text-align: left;
}

.menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.menu a {
    text-decoration: none;
    color: var(--marrom);
    font-weight: 500;
    transition: color 0.2s ease;
    font-size: 1rem;
}

.menu a:hover {
    color: var(--verde);
}

/* ============================================================
   MENU HAMBURGUER
============================================================ */
.menu-toggle {
    display: none;
    background: var(--verde);
    border: none;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(150, 183, 75, 0.3);
    position: relative;
    z-index: 1001;
}

.menu-toggle i {
    font-size: 1.6rem;
    color: var(--branco);
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    background: var(--laranja);
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(235, 114, 23, 0.4);
}

.menu-toggle.active {
    background: var(--laranja);
}

.menu-toggle.active i {
    transform: rotate(90deg);
}

/* ============================================================
   BUTTON PRIMARY
============================================================ */
.button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--verde);
    border: 2px solid var(--verde);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all .35s ease;
    cursor: pointer;
    font-family: var(--font-texto);
    font-size: 1rem;
}

.button-primary:hover {
    color: var(--branco);
    background: var(--verde);
    border-color: var(--verde);
    box-shadow: 0 0 20px rgba(150, 183, 75, 0.6),
                0 0 35px rgba(150, 183, 75, 0.4);
    transform: translateY(-2px);
    animation: neonPulse 1.5s infinite;
}

.button-primary:hover i {
    color: var(--branco);
}

.menu a.button-primary:hover {
    color: var(--branco) !important;
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(150, 183, 75, 0.6),
                    0 0 35px rgba(150, 183, 75, 0.4);
    }
    50% {
        box-shadow: 0 0 25px rgba(150, 183, 75, 0.8),
                    0 0 45px rgba(150, 183, 75, 0.6);
    }
}

/* ============================================================
   FUNDOS
============================================================ */
.fundo1 {
    background: url("../imagens/fundo1.png") center center / cover no-repeat;
    padding: 90px 0;
    position: relative;
    min-height: 500px;
}

.fundo2 {
    background: url("../imagens/fundo2.png") center center / cover no-repeat;
    padding: 90px 0;
    position: relative;
    min-height: 500px;
}

.fundo1::before,
.fundo2::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.01);
    pointer-events: none;
}

.fundo1 .container,
.fundo2 .container {
    position: relative;
    z-index: 1;
}

/* ============================================================
   HERO
============================================================ */
.hero {
    background: linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.30)),
                url("../imagens/img1.png") center center / cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(248, 249, 250, 0.4);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-card {
    background: rgba(255, 255, 255, 0.40);
    padding: 70px 60px;
    border-radius: 24px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    backdrop-filter: blur(10px);
}

.hero-card h1 {
    font-size: 3.2rem;
    color: var(--marrom);
    margin-bottom: 25px;
    line-height: 1.3;
}

.hero-card p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   QUEM SOMOS
============================================================ */
.quem-somos {
    text-align: center;
}

.quem-somos-content {
    width: 90%;
    max-width: 900px;
    margin: auto;
}

.logo-grande {
    width: 200px;
    margin: 30px auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.quem-somos p {
    margin-bottom: 22px;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
    text-align: justify;
}

.quem-somos .subtitulo {
    text-align: center !important;
}

.pilares-mvv {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

@property --angle-pilar {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotatePilar {
    to { --angle-pilar: 360deg; }
}

.pilar-card {
    background: var(--branco);
    padding: 40px 35px;
    border-radius: 18px;
    border: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: var(--sombra-card);
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.pilar-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: conic-gradient(
        from var(--angle-pilar),
        transparent 0deg,
        transparent 240deg,
        #96B74B,
        transparent 360deg
    );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotatePilar 3s linear infinite;
    z-index: 0;
}

.pilar-card::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: conic-gradient(
        from var(--angle-pilar),
        transparent 0deg,
        transparent 240deg,
        #96B74B,
        transparent 360deg
    );
    filter: blur(25px);
    opacity: 0.15;
    animation: rotatePilar 3s linear infinite;
    z-index: 0;
}

.pilar-card > * {
    position: relative;
    z-index: 1;
}

.pilar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra-hover);
}

.pilar-icon {
    font-size: 3.5rem;
    color: var(--laranja);
}

.pilar-card h3 {
    color: var(--marrom);
    font-size: 1.6rem;
}

.pilar-card p {
    color: #555;
    line-height: 1.8;
    text-align: center;
    font-size: 1rem;
}

.valores-lista {
    list-style: none;
    margin-top: 8px;
    width: 100%;
    padding: 0 10px;
}

.valores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    width: 100%;
}

.valores-grid li:last-child {
    grid-column: 1 / -1;
    text-align: center;
}

.valores-lista li {
    margin-bottom: 10px;
    color: #444;
    font-size: 1rem;
    text-align: left;
}

.valores-lista i {
    color: var(--verde);
    margin-right: 10px;
}

/* ============================================================
   SERVIÇOS
============================================================ */
.servicos {
    text-align: center;
}

.servicos-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

@property --angle-servico {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotateServico {
    to { --angle-servico: 360deg; }
}

.servico-card {
    background: var(--branco);
    width: 500px;
    padding: 40px;
    border-radius: 18px;
    border: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
    box-shadow: var(--sombra-card);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: conic-gradient(
        from var(--angle-servico),
        transparent 0deg,
        transparent 240deg,
        #96B74B,
        transparent 360deg
    );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateServico 3s linear infinite;
    z-index: 0;
}

.servico-card::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: conic-gradient(
        from var(--angle-servico),
        transparent 0deg,
        transparent 240deg,
        #96B74B,
        transparent 360deg
    );
    filter: blur(25px);
    opacity: 0.15;
    animation: rotateServico 3s linear infinite;
    z-index: 0;
}

.servico-card > * {
    position: relative;
    z-index: 1;
}

.servico-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra-hover);
}

.servico-conteudo {
    flex: 1;
}

.icon-servico {
    font-size: 4.5rem;
    color: var(--laranja);
    margin-bottom: 25px;
}

.servico-card h3 {
    color: var(--marrom);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.servico-card p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.servico-card .button-primary {
    margin-top: 20px;
}

/* ============================================================
   DESTAQUES & ATIVIDADES — CARROSSEL CSS INFINITO
============================================================ */
.atividades {
    text-align: center;
}

.features-panel {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(150, 183, 75, 0.25);
    border-radius: 24px;
    padding: clamp(18px, 3vw, 28px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    margin-top: 50px;
    overflow: hidden;
}

.features-carousel {
    overflow: hidden;
    width: 100%;
}

@keyframes scrollFeatures {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.features-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollFeatures 40s linear infinite;
}

.features-track:hover {
    animation-play-state: paused;
}

/* CARD */
.feature-card {
    flex: 0 0 220px;
    background: var(--branco);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--sombra-card);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.feature-card::before {
    content: '';
    display: block;
    width: 100%;
    height: 180px;
    background-image: var(--thumb);
    background-size: cover;
    background-position: center 25%;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scale(1.08);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--dourado);
    box-shadow: var(--sombra-hover);
}

.feature-card i {
    font-size: 1.8rem;
    color: var(--verde);
    margin: 16px 0 8px;
    display: block;
    transition: color 0.4s ease;
}

.feature-card h3 {
    color: var(--marrom);
    font-size: 1rem;
    margin: 0 16px 8px;
    transition: color 0.4s ease;
}

.feature-card p {
    color: #555;
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0 16px 16px;
    transition: color 0.4s ease;
}

.feature-card:hover i,
.feature-card:hover h3,
.feature-card:hover p {
    color: var(--verde);
}


/* ============================================================
   PROFISSIONAIS
============================================================ */
.profissionais {
    text-align: center;
}

.profissionais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.profissional-card {
    background: var(--branco);
    padding: 30px 20px;
    border-radius: 18px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    box-shadow: var(--sombra-card);
    text-align: center;
}

.profissional-card:hover {
    transform: translateY(-8px);
    border-color: var(--laranja);
    box-shadow: var(--sombra-hover);
}

.profissional-foto {
    width: 120px;
    height: 120px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: 4px solid var(--verde);
}

.profissional-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profissional-placeholder {
    background: linear-gradient(135deg, var(--verde), var(--dourado));
    display: flex;
    align-items: center;
    justify-content: center;
}

.iniciais {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--branco);
    font-family: var(--font-titulo);
}

.profissional-card h3 {
    color: var(--marrom);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cargo {
    color: var(--verde);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.profissional-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.85rem;
}

/* ============================================================
   EQUIPE MULTIDISCIPLINAR
============================================================ */
.equipe-multi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.multi-item {
    background: var(--branco);
    padding: 30px 20px;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    box-shadow: var(--sombra-card);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    height: 200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.multi-item:hover {
    transform: translateY(-5px);
    border-color: var(--verde);
    box-shadow: var(--sombra-hover);
}

.multi-foto {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.multi-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.multi-item:hover .multi-foto {
    opacity: 1;
}

.multi-info {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 100%;
}

.multi-info i {
    font-size: 3rem;
    color: var(--laranja);
    transition: color 0.4s ease;
}

.multi-item:hover .multi-info i {
    color: var(--branco);
}

.multi-info h4 {
    color: var(--marrom);
    font-size: 1.2rem;
    margin: 0;
    font-family: var(--font-titulo);
    transition: color 0.4s ease;
    text-align: center;
}

.multi-item:hover .multi-info h4 {
    color: var(--branco);
}

.multi-info p {
    color: var(--verde);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    transition: color 0.4s ease;
    text-align: center;
}

.multi-item:hover .multi-info p {
    color: var(--branco);
}

/* ============================================================
   NOSSO ESPAÇO — ABAS
============================================================ */
.espacos {
    text-align: center;
}

.espacos-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 35px;
    background: var(--branco);
    color: var(--marrom);
    border: 2px solid var(--verde);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-texto);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--verde);
    color: var(--branco);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: inline-block;
}

.video-wrapper iframe {
    display: block;
    width: 400px;
    max-width: 100%;
    height: 480px;
}

.video-wrapper video {
    display: block;
}

/* Wrapper maior para vídeo local */
.video-wrapper--local {
    width: 400px;
    height: 560px;
    border-radius: 12px;
    background: #000;
    display: flex;
    flex-direction: column;
}

.video-wrapper--local video {
    flex: 1;
    width: 100%;
    object-fit: cover;
}

/* Cabeçalho estilo Instagram */
.video-insta-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #fff;
    text-decoration: none;
    flex-shrink: 0;
    border-bottom: 1px solid #eee;
    transition: background 0.2s ease;
}

.video-insta-header:hover {
    background: #f5f5f5;
}

.video-insta-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--verde);
}

.video-insta-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.video-insta-user {
    font-weight: 700;
    font-size: 0.9rem;
    color: #000;
}

.video-insta-sub {
    font-size: 0.75rem;
    color: #888;
}

.video-insta-btn {
    background: transparent;
    border: 1.5px solid #0095f6;
    color: #0095f6;
    border-radius: 8px;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.video-insta-header:hover .video-insta-btn {
    background: #0095f6;
    color: #fff;
}

/* Controles play/mute */
.video-controls {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.video-ctrl-btn {
    background: rgba(0,0,0,0.55);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.video-ctrl-btn:hover {
    background: rgba(0,0,0,0.8);
    border-color: #fff;
    transform: scale(1.1);
}

/* Remove o play-btn antigo */
.video-play-btn { display: none; }

/* ============================================================
   LOCALIZAÇÃO
============================================================ */
.localizacao {
    text-align: center;
}

.localizacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.local-card {
    background: var(--branco);
    padding: 35px;
    border-radius: 18px;
    box-shadow: var(--sombra-card);
    transition: all 0.3s ease;
}

.local-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-hover);
}

.local-card h3 {
    color: var(--marrom);
    margin-bottom: 18px;
    font-size: 1.6rem;
}

.local-card h3 i {
    color: var(--laranja);
    margin-right: 8px;
}

.local-card p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: left;
}

/* ============================================================
   CONTATO
============================================================ */
.contato {
    text-align: center;
}

.contato-texto {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.form-contato {
    width: 100%;
    max-width: 650px;
    margin: 40px auto 0;
    padding: 45px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: .3s ease;
}

.form-contato:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.campo {
    margin-bottom: 25px;
    text-align: left;
}

.campo label {
    display: block;
    margin-bottom: 10px;
    color: var(--marrom);
    font-weight: 600;
    font-size: 1rem;
}

.campo label i {
    color: var(--verde);
    margin-right: 8px;
}

.campo input,
.campo textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background: var(--branco);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: var(--font-texto);
}

.campo input:focus,
.campo textarea:focus {
    outline: none;
    border-color: var(--verde);
    box-shadow: 0 0 15px rgba(150, 183, 75, 0.3);
}

.campo textarea {
    height: 140px;
    resize: none;
}

.btn-enviar {
    margin-top: 15px;
    width: 100%;
}

.contato-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.info-contato-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--marrom);
}

.info-contato-item i {
    color: var(--verde);
    font-size: 1.5rem;
}

.info-contato-item a {
    color: var(--marrom);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-contato-item a:hover {
    color: var(--verde);
}

/* ============================================================
   ANIMAÇÕES DE ENTRADA
============================================================ */
.animar {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.mostrar {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    background: var(--marrom);
    text-align: center;
    padding: 35px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-social a {
    color: var(--verde);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--branco);
    transform: translateY(-5px);
}

.footer p {
    color: var(--branco);
    margin: 0;
    font-size: 0.95rem;
}

.footer a {
    color: var(--verde);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--dourado);
}

/* ============================================================
   BOTÕES FLUTUANTES
============================================================ */
.floating-buttons {
    position: fixed;
    right: 26px;
    bottom: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

.floating-whatsapp {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.floating-top {
    width: 48px;
    height: 48px;
    background: var(--verde);
    color: #fff;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.floating-top:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 26px rgba(0,0,0,0.4);
}

.espacos-videos {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    padding: 30px 0;
}

/* ============================================================
   RESPONSIVO — 1024px (TABLET)
============================================================ */
@media (max-width: 1024px) {
    .profissionais-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .equipe-multi-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================================
   RESPONSIVO — 768px (MOBILE)
============================================================ */
@media (max-width: 768px) {

    /* Fundos */
    .fundo1,
    .fundo2 {
        background-attachment: scroll;
    }

    /* Header */
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0;
    }

    .logo {
        height: 55px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 1000;
    }

    .menu.active {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
        padding: 20px 0;
    }

    /* Tipografia */
    h2 {
        font-size: 2.2rem;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        padding: 40px 0;
    }

    .hero-card {
        padding: 45px 30px;
    }

    .hero-card h1 {
        font-size: 2.2rem;
    }

    /* Quem Somos */
    .pilares-mvv {
        grid-template-columns: 1fr;
    }

    /* Serviços */
    .servicos-grid {
        flex-direction: column;
    }

    .servico-card {
        width: 100%;
        max-width: 500px;
    }

    /* Carrossel CSS — feature-card mobile */
    .feature-card {
        flex: 0 0 170px;
    }

    .feature-card::before {
        height: 140px;
    }

    .features-track {
        animation-duration: 30s;
    }

    /* Profissionais — carrossel horizontal */
    .profissionais-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 20px !important;
        padding: 10px 15px 30px !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .profissionais-grid::-webkit-scrollbar {
        display: none;
    }

    .profissional-card {
        min-width: 260px;
        flex-shrink: 0;
        scroll-snap-align: center;
    }

    /* Equipe Multidisciplinar — carrossel horizontal */
    .equipe-multi-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 20px !important;
        padding: 10px 15px 30px !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .equipe-multi-grid::-webkit-scrollbar {
        display: none;
    }

    .multi-item {
        min-width: 260px;
        height: 200px;
        flex-shrink: 0;
        scroll-snap-align: center;
    }

    /* Equipe Multidisciplinar — active (simula hover no touch) */
    .multi-item::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.45);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 2;
    }

    .multi-item .multi-info {
        position: relative;
        z-index: 3;
    }

    .multi-item.active .multi-foto {
        opacity: 1;
    }

    .multi-item.active::before {
        opacity: 1;
    }

    .multi-item.active .multi-info i,
    .multi-item.active .multi-info h4,
    .multi-item.active .multi-info p {
        color: #ffffff !important;
    }

    .multi-item.active {
        border-color: var(--verde);
        box-shadow: var(--sombra-hover);
    }

    /* Nosso Espaço */
    .espacos-tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }

    .espacos-videos {
        flex-direction: column;
        align-items: center;
    }

    /* Localização */
    .localizacao-grid {
        grid-template-columns: 1fr;
    }

    /* Contato */
    .contato-info {
        flex-direction: column;
        align-items: center;
    }

    /* Footer */
    .footer p {
        font-size: 0.85rem;
    }
}

/* ============================================================
   RESPONSIVO — 480px (MOBILE PEQUENO)
============================================================ */
@media (max-width: 480px) {

    h2 {
        font-size: 1.8rem;
    }

    .hero-card h1 {
        font-size: 1.8rem;
    }

    /* Carrossel CSS — feature-card mobile pequeno */
    .feature-card {
        flex: 0 0 145px;
    }

    .feature-card::before {
        height: 120px;
    }
}