.elementor-64 .elementor-element.elementor-element-de7c89e{--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;}.elementor-64 .elementor-element.elementor-element-7bcc3267{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-64 .elementor-element.elementor-element-3a32111{--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;}.elementor-64 .elementor-element.elementor-element-281428c8{--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;}.elementor-64 .elementor-element.elementor-element-1e35beb8{--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;}.elementor-64 .elementor-element.elementor-element-22d7daa9{--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;}.elementor-64 .elementor-element.elementor-element-18f2dbd8{--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;}.elementor-64 .elementor-element.elementor-element-702c229a{--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;}.elementor-64 .elementor-element.elementor-element-5d81fb8c{--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-27e40b5 *//* =====================================
   HEADER
===================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header.is-scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo */
.header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header__logo img {
    height: 38px;
    width: auto;
}

/* Navegação Desktop - Oculta no mobile */
.header__nav {
    display: none;
}

.header__menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.header__link {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #4a6d70;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.header__link:hover {
    background: #f0f7f8;
    color: #4fb3d9;
}

/* Botão CTA Desktop - Oculto no mobile */
.header__cta {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #25d366;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.header__cta i {
    font-size: 18px;
}

/* =====================================
   BOTÃO HAMBURGUER
===================================== */
.header__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.header__toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #4a6d70;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animação X quando ativo */
.header__toggle.is-active .header__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__toggle.is-active .header__toggle-bar:nth-child(2) {
    opacity: 0;
}

.header__toggle.is-active .header__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =====================================
   MENU MOBILE
===================================== */
.header__mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 999;
}

.header__mobile-nav.is-open {
    transform: translateX(0);
}

.header__mobile-menu {
    list-style: none;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.header__mobile-link {
    display: block;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #4a6d70;
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.2s ease;
}

.header__mobile-link:hover,
.header__mobile-link:active {
    background: #f0f7f8;
}

/* CTA Mobile */
.header__mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    padding: 18px 24px;
    background: #25d366;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
}

.header__mobile-cta i {
    font-size: 20px;
}

/* =====================================
   TABLET (768px+)
===================================== */
@media (min-width: 768px) {
    .header__container {
        height: 80px;
    }

    .header__logo img {
        height: 42px;
    }

    .header__mobile-nav {
        top: 80px;
        height: calc(100vh - 80px);
    }
}

/* =====================================
   DESKTOP (992px+)
===================================== */
@media (min-width: 992px) {
    .header__container {
        height: 85px;
    }

    .header__logo img {
        height: 45px;
    }

    /* Mostrar navegação desktop */
    .header__nav {
        display: block;
    }

    /* Mostrar CTA desktop */
    .header__cta {
        display: flex;
    }

    /* Ocultar hamburguer */
    .header__toggle {
        display: none;
    }

    /* Ocultar menu mobile */
    .header__mobile-nav {
        display: none;
    }
}

/* =====================================
   DESKTOP XL (1200px+)
===================================== */
@media (min-width: 1200px) {
    .header__menu {
        gap: 12px;
    }

    .header__link {
        padding: 10px 18px;
        font-size: 15px;
    }

    .header__cta {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* =====================================
   COMPENSAR HEADER FIXO
===================================== */
body {
    padding-top: 70px;
}

@media (min-width: 768px) {
    body {
        padding-top: 80px;
    }
}

@media (min-width: 992px) {
    body {
        padding-top: 85px;
    }
}

/* =====================================
   SCROLL SUAVE + OFFSET PARA ÂNCORAS
===================================== */
html {
    scroll-behavior: smooth;
}

/* Compensar altura do header fixo nas âncoras */
section[id] {
    scroll-margin-top: 90px;
}

@media (min-width: 992px) {
    section[id] {
        scroll-margin-top: 100px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-39b8fd01 *//* =====================================
   RESET
===================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #4a6d70;
    background: #fff;
    line-height: 1.6;
}

/* =====================================
   CONTAINER
===================================== */
.container {
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
}

/* =====================================
   HERO - MOBILE FIRST
===================================== */
#hero {
    position: relative;
    padding: 30px 0 40px;
    background: linear-gradient(180deg, #4a6d70 180px, #fff 180px);
}

.hero__container {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
}

.hero__content {
    position: relative;
    z-index: 2;
    background: #fff;
    width: 100%;
    padding: 26px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(74,109,112,0.18);
    text-align: center;
}

.hero__subtitle {
    font-size: 14px;
    margin-bottom: 12px;
    color: #4a6d70;
    font-weight: 400;
}

.hero__title {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #4a6d70;
    font-weight: 700;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: #4fb3d9;
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79,179,217,0.35);
}

/* Hero Image - Mobile */
.hero__image {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero__image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
    object-fit: cover;
}

/* =====================================
   WHATSAPP FLOAT
===================================== */
.whatsapp-float {
    position: fixed;
    bottom: 18px;
    right: 18px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* =====================================
   TABLET (768px+)
===================================== */
@media (min-width: 768px) {

    .container {
        max-width: 720px;
        padding: 0 24px;
    }

    #hero {
        background: linear-gradient(180deg, #4a6d70 220px, #fff 220px);
        padding: 40px 0 50px;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .hero__cta {
        width: auto;
        padding: 16px 36px;
    }

    .hero__image img {
        max-width: 480px;
    }
}

/* =====================================
   DESKTOP (992px+)
===================================== */
@media (min-width: 992px) {

    .container {
        max-width: 1140px;
        padding: 0 30px;
    }

    /* ========== HERO DESKTOP - ALTURA FIXA ========== */
    #hero {
        height: 580px;
        padding: 0;
        background: none;
        overflow: hidden;
    }

    /* Background Shape - Fixo */
    #hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 48%;
        height: 100%;
        background: #4a6d70;
        clip-path: polygon(0 0, 100% 0, 82% 100%, 0% 100%);
        z-index: 1;
    }

    .hero__container {
        position: relative;
        z-index: 2;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        height: 100%;
        gap: 30px;
    }

    /* Card de texto - Posição fixa */
    .hero__content {
        flex: 0 0 420px;
        width: 420px;
        padding: 40px;
        text-align: left;
        margin-top: 0;
    }

    .hero__subtitle {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .hero__title {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 28px;
    }

    .hero__cta {
        width: auto;
        padding: 16px 32px;
    }

    /* Imagem - Expandida até a margem */
    .hero__image {
        flex: 1;
        height: 420px;
        max-width: none;
    }

    .hero__image img {
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: cover;
        border-radius: 16px;
    }
}

/* =====================================
   DESKTOP GRANDE (1200px+)
===================================== */
@media (min-width: 1200px) {

    .container {
        max-width: 1200px;
    }

    #hero {
        height: 620px;
    }

    #hero::before {
        width: 45%;
    }

    .hero__content {
        flex: 0 0 460px;
        width: 460px;
        padding: 45px;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__image {
        height: 450px;
    }
}

/* =====================================
   DESKTOP XL (1400px+)
===================================== */
@media (min-width: 1400px) {

    .container {
        max-width: 1320px;
    }

    #hero {
        height: 660px;
    }

    #hero::before {
        width: 42%;
    }

    .hero__content {
        flex: 0 0 500px;
        width: 500px;
        padding: 50px;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__image {
        height: 480px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-74b86acd *//* =====================================
   SEÇÃO: POR QUE A CIOR
===================================== */
.why-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafa 0%, #eef3f4 100%);
    position: relative;
    overflow: hidden;
}

/* Detalhe decorativo sutil */
.why-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79,179,217,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why__container {
    position: relative;
    z-index: 2;
}

/* Header */
.why__header {
    text-align: center;
    margin-bottom: 50px;
}

.why__tag {
    display: inline-block;
    background: #4fb3d9;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.why__title {
    font-size: 1.75rem;
    color: #4a6d70;
    font-weight: 700;
    line-height: 1.3;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de Cards */
.why__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Card Individual */
.why__card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(74, 109, 112, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why__card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4fb3d9, #4a6d70);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.why__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(74, 109, 112, 0.15);
}

.why__card:hover::after {
    transform: scaleX(1);
}

/* Ícone */
.why__icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    color: #4fb3d9;
}

.why__icon svg {
    width: 100%;
    height: 100%;
}

/* Número em destaque */
.why__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a6d70;
    line-height: 1;
    margin-bottom: 8px;
}

/* Título do Card */
.why__card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a6d70;
    margin-bottom: 10px;
}

/* Texto do Card */
.why__card-text {
    font-size: 0.9rem;
    color: #6b8a8d;
    line-height: 1.5;
    margin: 0;
}

/* =====================================
   TABLET (768px+)
===================================== */
@media (min-width: 768px) {
    .why-section {
        padding: 80px 0;
    }

    .why__title {
        font-size: 2rem;
    }

    .why__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .why__card {
        padding: 40px 30px;
    }

    .why__number {
        font-size: 2.75rem;
    }
}

/* =====================================
   DESKTOP (992px+)
===================================== */
@media (min-width: 992px) {
    .why-section {
        padding: 100px 0;
    }

    .why__header {
        margin-bottom: 60px;
    }

    .why__title {
        font-size: 2.25rem;
    }

    .why__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .why__card {
        padding: 45px 25px;
    }

    .why__number {
        font-size: 3rem;
    }

    .why__card-title {
        font-size: 1.15rem;
    }
}

/* =====================================
   DESKTOP XL (1400px+)
===================================== */
@media (min-width: 1400px) {
    .why__grid {
        gap: 35px;
    }

    .why__card {
        padding: 50px 30px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7a8e3a89 *//* ================================
   SEÇÃO DE CASOS – FUNDO AZUL ESCURO
================================ */

.cases-section {
    padding: 80px 20px;
    background-color: #1f2d36; /* Azul escuro elegante (não preto) */
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

/* HEADER */
.header-cases h2 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 2.2rem;
    font-weight: 700;
}

.header-cases p {
    color: #c2d1d6; /* Azul acinzentado claro */
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* GRID */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* CARD */
.case-item {
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    transition: transform 0.3s ease;
}

.case-item:hover {
    transform: translateY(-8px);
}

/* IMAGEM */
.image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #000;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

/* ANTES / DEPOIS */
.img-before {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.case-item:hover .img-before {
    opacity: 1;
}

/* LABEL */
.status-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(83, 113, 114, 0.95);
    color: #ffffff;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 10;
}

.status-label::before {
    content: "Resultado Final";
}

.case-item:hover .status-label {
    background: rgba(15, 32, 41, 0.95);
}

.case-item:hover .status-label::before {
    content: "Antes";
}

/* INFO */
.case-info {
    padding: 20px;
    background: #ffffff;
    font-weight: 700;
    color: #537172;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* BOTÃO */
.btn-outline-cases {
    display: inline-block;
    margin-top: 50px;
    padding: 16px 40px;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-cases:hover {
    background: #537172;
    border-color: #537172;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .cases-section {
        padding: 60px 15px;
    }
    
    .header-cases h2 {
        font-size: 1.8rem;
    }

    .image-wrapper {
        height: 250px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6baa0dd8 *//* Seção Sobre */
.about-section {
    padding: 100px 20px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.about-container {
    max-width: 1140px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Coluna da Imagem */
.about-image {
    position: relative;
}

.logo-wrapper {
    background: #f8fcfc;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.logo-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--color-primary);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(83, 113, 114, 0.3);
}

/* Coluna de Texto */
.subtitle {
    color: var(--color-primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 2.2rem;
    color: var(--color-text-title);
    margin-bottom: 25px;
    line-height: 1.2;
}

.description {
    font-size: 1.05rem;
    color: var(--color-text-body);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Lista de Serviços */
.services-list h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-text-title);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    list-style: none;
    margin-bottom: 40px;
}

.services-grid li {
    font-size: 0.9rem;
    color: var(--color-text-body);
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-grid li span {
    color: var(--color-primary);
    font-weight: bold;
}

/* Responsividade */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        order: 2;
    }

    .services-grid {
        justify-items: center;
        text-align: left;
    }

    .experience-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d6a73e7 *//* ================================
   SEÇÃO SERVIÇOS – CLÍNICA CIOR
================================ */

.services-section {
  padding: 90px 20px;
  background-color: #1f2d36; /* Azul escuro elegante (não preto) */
  font-family: "Montserrat", sans-serif;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.services-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #8fb2bb; /* Azul claro */
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.services-header h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #ffffff; /* Branco para contraste */
  margin-bottom: 15px;
  line-height: 1.3;
}

.services-header p {
  font-size: 1.05rem;
  color: #c2d1d6; /* Cinza azulado claro */
  line-height: 1.6;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.service-card {
  background: #ffffff;
  border: 2px solid #dfe8ea;
  border-radius: 14px;
  padding: 35px 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card h3 {
  font-size: 1.2rem;
  color: #2c3e40;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: #66787a;
  line-height: 1.6;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-6px);
  border-color: #537172;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

/* CTA */
.services-cta {
  margin-top: 60px;
  text-align: center;
}

.services-button {
  display: inline-block;
  background-color: #25D366;
  color: #ffffff;
  font-weight: 700;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

.services-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45);
}

/* ================================
   RESPONSIVIDADE
================================ */

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 650px) {
  .services-section {
    padding: 70px 15px;
  }

  .services-header {
    margin-bottom: 45px;
  }

  .services-header h2 {
    font-size: 1.7rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 28px 24px;
  }

  .services-button {
    width: 100%;
    padding: 18px;
  }
}
/* =====================================
   FORÇA BOTÃO CTA – AZUL CLARO
===================================== */

.services-button {
  background-color: #4fb3d9 !important; /* Azul claro */
  color: #ffffff !important;
}

.services-button:hover {
  background-color: #3aa0c6 !important;
  box-shadow: 0 16px 35px rgba(79, 179, 217, 0.45) !important;
}
/* =====================================
   ÍCONES NOS CARDS – SERVIÇOS
===================================== */

.service-card {
  position: relative;
  padding-top: 75px; /* espaço para o ícone */
}

/* ÍCONE BASE */
.service-card::before {
  content: "✔";
  position: absolute;
  top: 25px;
  left: 30px;
  width: 42px;
  height: 42px;
  background-color: #4fb3d9; /* Azul claro */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 8px 18px rgba(79, 179, 217, 0.45);
}

/* ÍCONES DIFERENTES POR CARD */
.service-card:nth-child(1)::before {
  content: "🦷";
}

.service-card:nth-child(2)::before {
  content: "😁";
}

.service-card:nth-child(3)::before {
  content: "🔬";
}

.service-card:nth-child(4)::before {
  content: "✨";
}

.service-card:nth-child(5)::before {
  content: "🛡";
}

.service-card:nth-child(6)::before {
  content: "💙";
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6c16cc76 *//* =========================================
   SEÇÃO ESPECIALISTAS
========================================= */

.expert-section {
    width: 100%;
    min-height: 100vh;
    padding: 100px 60px;
    background-color: #f2f2f2;
    display: flex;
    align-items: center;
}

.expert-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* =========================================
   IMAGEM
========================================= */

.expert-image-area {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.image-frame {
    max-width: 420px; /* 🔥 imagem menor de verdade */
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 16px 16px 0 #e1e8e8;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.expert-image-area:hover img {
    transform: scale(1.015);
}

/* CARD FLUTUANTE */
.floating-experience {
    position: absolute;
    bottom: 22px;
    left: 22px;
    background: #4fb3d9;
    color: #fff;
    padding: 16px 20px;
    border-radius: 14px;
    box-shadow: 0 15px 30px rgba(79,179,217,0.35);
}

.floating-experience strong {
    font-size: 1.7rem;
    line-height: 1;
}

.floating-experience span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   TEXTO
========================================= */

.tagline {
    color: #4fb3d9;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}

.expert-text-area h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 26px;
    color: #2c3e50;
}

.expert-text-area h2 strong {
    color: #4fb3d9;
}

.copy-body p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 18px;
    color: #555;
}

/* BENEFÍCIOS */
.benefits-list {
    margin: 28px 0;
}

.benefit-item {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.check {
    color: #4fb3d9;
    font-weight: bold;
}

/* =========================================
   CTA
========================================= */

.cta-expert {
    display: inline-block;
    background: #4fb3d9;
    color: #fff;
    padding: 18px 42px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 12px 28px rgba(79,179,217,0.35);
}

.cta-expert:hover {
    background: #3aa0c6;
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(79,179,217,0.55);
}

.cta-subtext {
    font-size: 0.85rem;
    color: #888;
    margin-top: 14px;
}

/* =========================================
   RESPONSIVO
========================================= */

@media (max-width: 992px) {
    .expert-section {
        padding: 80px 30px;
        min-height: auto;
    }

    .expert-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .expert-image-area {
        justify-content: center;
    }

    .image-frame {
        max-width: 360px;
    }

    .floating-experience {
        left: 50%;
        transform: translateX(-50%);
        bottom: -18px;
    }
}

@media (max-width: 480px) {
    .expert-section {
        padding: 60px 20px;
    }

    .expert-text-area h2 {
        font-size: 2rem;
    }

    .cta-expert {
        width: 100%;
        padding: 18px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-355e1763 *//* Seção de Depoimentos */
.testimonials-section {
    padding: 80px 20px;
    background-color: #f8fafb;
    text-align: center;
}

.testimonials-header {
    margin-bottom: 50px;
}

.testimonials-header h2 {
    font-size: 2.2rem;
    color: var(--color-text-title);
    margin-top: 10px;
}

/* Grid de Depoimentos */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas fixas no desktop */
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilo do Card Individual */
.testimonial-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    border: 1px solid #edf2f2;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.rating {
    color: #f1c40f; /* Cor dourada para estrelas */
    margin-bottom: 15px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--color-text-body);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.client-info strong {
    color: var(--color-text-title);
    font-size: 1rem;
    display: block;
}

/* Responsividade */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas para tablets */
    }
}

@media (max-width: 650px) {
    .testimonials-grid {
        grid-template-columns: 1fr; /* 1 coluna para celulares */
    }
    
    .testimonial-card {
        padding: 25px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6772c422 *//* =====================================
   FOOTER
===================================== */
.footer {
    background: #0c111b;
    color: #ffffff;
    padding: 60px 0 0;
    font-family: 'Montserrat', sans-serif;
}

.footer__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* Colunas */
.footer__col {
    min-width: 0;
}

/* Logo */
.footer__logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

/* Texto institucional */
.footer__text {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 25px;
}

/* Contato */
.footer__contact {
    font-style: normal;
}

.footer__contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer__contact i {
    font-size: 18px;
    color: #4fb3d9;
    width: 20px;
    text-align: center;
}

.footer__contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__contact a:hover {
    color: #4fb3d9;
}

/* Títulos das colunas */
.footer__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4fb3d9;
    margin-bottom: 20px;
}

.footer__title i {
    font-size: 16px;
}

.footer__title--filiais {
    margin-top: 30px;
}

/* Mapa */
.footer__map {
    margin-bottom: 15px;
}

.footer__map iframe {
    width: 100%;
    height: 180px;
    border: none;
    border-radius: 12px;
}

/* Endereço */
.footer__address {
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
}

.footer__address strong {
    color: #fff;
    opacity: 1;
}

/* Horário */
.footer__hours {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
    margin: 0;
}

.footer__hours strong {
    color: #fff;
    opacity: 1;
}

/* Lista de Filiais */
.footer__filiais {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.footer__filiais li {
    font-size: 0.9rem;
    opacity: 0.85;
    position: relative;
    padding-left: 15px;
}

.footer__filiais li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4fb3d9;
    font-weight: bold;
}

/* Copyright */
.footer__bottom {
    margin-top: 50px;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
    margin: 0;
}

/* =====================================
   TABLET (768px+)
===================================== */
@media (min-width: 768px) {
    .footer {
        padding: 70px 0 0;
    }

    .footer__container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .footer__map iframe {
        height: 200px;
    }
}

/* =====================================
   DESKTOP (992px+)
===================================== */
@media (min-width: 992px) {
    .footer {
        padding: 80px 0 0;
    }

    .footer__container {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 60px;
    }

    .footer__logo {
        width: 160px;
    }

    .footer__map iframe {
        height: 180px;
    }

    .footer__filiais {
        grid-template-columns: 1fr;
    }
}

/* =====================================
   DESKTOP XL (1400px+)
===================================== */
@media (min-width: 1400px) {
    .footer__container {
        gap: 80px;
    }
}/* End custom CSS */
/* Start custom CSS *//* ===== RESET DE EMERGÊNCIA ===== */
html, body {
    width: 100% !important;
    overflow-x: hidden !important;
}

.hero,
.hero * {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* ===== HERO MOBILE FORÇADO ===== */
@media (max-width: 768px) {

    .hero {
        background: #4a6d70 !important;
        padding: 32px 0 !important;
    }

    .hero-bg-shape {
        display: none !important;
    }

    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 20px !important;
    }

    .hero-text-card {
        width: 92% !important;
        padding: 24px !important;
        background: #fff !important;
        border-radius: 18px !important;
    }

    .hero-image img {
        width: 92% !important;
        height: auto !important;
        display: block !important;
    }

    .btn-hero {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }
}/* End custom CSS */