.elementor-12 .elementor-element.elementor-element-1bc4481{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-37190ed *//* ========================================
   FISIOTERAPIA BEM VIVER - STYLES.CSS
   Cores da Logo Oficial
   ======================================== */

:root {
    /* Paleta extraída da logo */
    --azul-acinzentado: #5E7F99;
    --azul-escuro: #4F7894;
    --verde-salvia: #8FA49C;
    --coral-principal: #E68868;
    --coral-escuro: #D97E5F;
    --pessego-claro: #F3C0AA;
    --cinza-claro: #EDF1EF;
    --cinza-neutro: #DDE5E1;
    --branco: #FFFFFF;
    --texto-escuro: #2D3E4F;
    
    /* Tipografia */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* ========================================
   RESET E BASE
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--texto-escuro);
    background-color: var(--branco);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--azul-acinzentado);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--coral-principal);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--azul-escuro);
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    text-align: center;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 0.75rem;
}

/* ========================================
   CONTAINER E LAYOUT
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 4rem 0;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--verde-escuro);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* ========================================
   HEADER
   ======================================== */

.header {
    background-color: var(--branco);
    box-shadow: 0 2px 10px rgba(94, 127, 153, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo img {
    width: 120px;
    height: auto;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--azul-acinzentado);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav a:hover {
    color: var(--coral-principal);
    border-bottom-color: var(--coral-principal);
}

.btn-header {
    background-color: var(--coral-principal);
    color: var(--branco);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-header:hover {
    background-color: var(--coral-escuro);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 136, 104, 0.3);
}

/* ========================================
   HERO
   ======================================== */

.hero {
    background: linear-gradient(135deg, var(--cinza-claro) 0%, var(--pessego-claro) 100%);
    padding: 5rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--azul-escuro);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--verde-escuro);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   BOTÕES
   ======================================== */

.btn-primary,
.btn-secondary,
.btn-link {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--coral-principal);
    color: var(--branco);
}

.btn-primary:hover {
    background-color: var(--coral-escuro);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 136, 104, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--branco);
    border: 2px solid var(--branco);
}

.btn-secondary:hover {
    background-color: var(--azul-acinzentado);
    color: var(--branco);
}

.btn-link {
    background: none;
    padding: 0.5rem 0;
    color: var(--coral-principal);
    font-weight: 600;
}

.btn-link:hover {
    color: var(--coral-escuro);
    text-decoration: underline;
}

/* ========================================
   SERVIÇOS
   ======================================== */

.servicos {
    background-color: var(--branco);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.servico-card {
    background-color: var(--cinza-claro);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(94, 127, 153, 0.08);
}

.servico-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(94, 127, 153, 0.15);
}

.servico-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.servico-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.servico-card:hover .servico-img img {
    transform: scale(1.08);
}

.servico-card h3 {
    color: var(--azul-escuro);
    padding: 1.5rem 1.5rem 0.5rem;
}

.servico-card p {
    padding: 0 1.5rem 1rem;
    color: var(--verde-escuro);
}

.servico-card .btn-link {
    padding: 0 1.5rem 1.5rem;
}

/* ========================================
   ESTRUTURA
   ======================================== */

.estrutura {
    background: linear-gradient(135deg, var(--pessego-claro) 0%, var(--cinza-neutro) 100%);
}

.estrutura-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.equipamento {
    background-color: var(--branco);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(143, 164, 156, 0.1);
    transition: all 0.3s ease;
}

.equipamento:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(143, 164, 156, 0.2);
}

.equipamento-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.equipamento h3 {
    color: var(--azul-escuro);
    margin-bottom: 0.75rem;
}

.equipamento p {
    color: var(--verde-escuro);
}

/* ========================================
   TRATAMENTOS
   ======================================== */

.tratamentos {
    background-color: var(--cinza-claro);
}

.tratamentos-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tratamento-item {
    background-color: var(--branco);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--coral-principal);
    transition: all 0.3s ease;
}

.tratamento-item:hover {
    border-left-width: 8px;
    box-shadow: 0 4px 15px rgba(230, 136, 104, 0.15);
}

.tratamento-item h3 {
    font-size: 1.125rem;
    color: var(--azul-escuro);
    margin-bottom: 0.5rem;
}

.tratamento-item p {
    color: var(--verde-escuro);
    font-size: 0.95rem;
}

/* ========================================
   DEPOIMENTOS
   ======================================== */

.depoimentos {
    background-color: var(--branco);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.depoimento-card {
    background: linear-gradient(135deg, var(--cinza-claro) 0%, var(--pessego-claro) 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(94, 127, 153, 0.08);
}

.estrelas {
    color: var(--coral-principal);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.depoimento-texto {
    font-style: italic;
    color: var(--verde-escuro);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.depoimento-autor {
    font-weight: 600;
    color: var(--azul-escuro);
    font-size: 0.95rem;
}

/* ========================================
   CONTATO
   ======================================== */

.contato {
    background: linear-gradient(135deg, var(--cinza-neutro) 0%, var(--cinza-claro) 100%);
}

.contato-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    color: var(--coral-principal);
    flex-shrink: 0;
}

.info-item h3 {
    color: var(--azul-escuro);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--verde-escuro);
}

.info-item a {
    color: var(--azul-acinzentado);
    font-weight: 500;
}

.info-item a:hover {
    color: var(--coral-principal);
}

/* ========================================
   FORMULÁRIO
   ======================================== */

.contato-form {
    background-color: var(--branco);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(94, 127, 153, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--azul-escuro);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--cinza-neutro);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--texto-escuro);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral-principal);
    box-shadow: 0 0 0 3px rgba(230, 136, 104, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    display: block;
    background-color: var(--pessego-claro);
    color: var(--verde-escuro);
    border-left: 4px solid var(--verde-salvia);
}

.form-message.error {
    display: block;
    background-color: #ffe5e5;
    color: #c33;
    border-left: 4px solid #c33;
}

/* ========================================
   MAPA
   ======================================== */

.mapa {
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(94, 127, 153, 0.15);
}

.mapa iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: var(--azul-escuro);
    color: var(--cinza-claro);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--pessego-claro);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--cinza-claro);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--coral-principal);
}

.footer-col p {
    color: var(--cinza-neutro);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-col img {
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(237, 241, 239, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--cinza-neutro);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--pessego-claro);
}

.footer-bottom a:hover {
    color: var(--coral-principal);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    section {
        padding: 3rem 0;
    }

    .servicos-grid,
    .estrutura-grid,
    .tratamentos-lista,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .contato-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 100px;
    }

    .nav a {
        font-size: 0.875rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* ========================================
   ACESSIBILIDADE
   ======================================== */

:focus-visible {
    outline: 3px solid var(--coral-principal);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Garantir contraste mínimo 4.5:1 */
.btn-primary,
.btn-header {
    color: var(--branco);
}

/* Skip link para navegação por teclado */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--coral-principal);
    color: var(--branco);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}/* End custom CSS */