/*
Theme Name: Clínica Illuminare
Theme URI: https://iluminareclinica.com.br
Description: Tema customizado para a Iluminare Clínica Multiterapias
Version: 1.0
Author: MIDIASIM
*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #101828;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #FFFFFF;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.85;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-badge {
    display: inline-block;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-badge--blue { color: #009FE3; }
.section-badge--green { color: #89E3AF; }
.section-badge--pink { color: #FEA4E3; }

.section-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.11;
    color: #101828;
    margin-bottom: 16px;
}

.section-title--center { text-align: center; }
.section-title--white { color: #FFFFFF; }

.section-subtitle {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: #4A5565;
}

.section-subtitle--center { text-align: center; }
.section-subtitle--light { color: rgba(255, 255, 255, 0.9); }

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header .section-subtitle {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    padding: 16px 32px;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn--primary {
    background: #009FE3;
    color: #FFFFFF;
    border-color: #009FE3;
}

.btn--primary:hover {
    background: #0088c4;
    border-color: #0088c4;
    opacity: 1;
}

.btn--outline {
    background: #FFFFFF;
    color: #009FE3;
    border-color: #009FE3;
}

.btn--outline:hover {
    background: rgba(0, 159, 227, 0.05);
    opacity: 1;
}

.btn--white {
    background: #FFFFFF;
    color: #009FE3;
    border-color: #FFFFFF;
}

.btn--white:hover {
    background: #F9FAFB;
    opacity: 1;
}

.btn svg,
.btn img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #009FE3;
    transition: gap 0.3s ease;
}

.link-arrow:hover {
    gap: 12px;
    opacity: 1;
}

.link-arrow svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 104px;
}

.site-branding img {
    height: 50px;
    width: auto;
}

.site-branding h1 {
    margin: 0;
    font-size: 0;
}

.site-branding a {
    display: block;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #364153;
    padding: 10px 16px;
    border-radius: 8px;
    transition: color 0.3s ease, background 0.3s ease;
}

.main-navigation a:hover {
    color: #009FE3;
    background: rgba(0, 159, 227, 0.05);
    opacity: 1;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    background: #009FE3;
    color: #FFFFFF!important;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    padding: 12px 24px;
    border-radius: 10px;
    margin-left: 8px;
    transition: background 0.3s ease;
}

.header-cta:hover {
    color: #364153!important;
    background: #0088c4;
    opacity: 1;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #101828;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: #F4F3F1;
    padding: 184px 0 80px;
}

.hero-wrapper {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.hero-content {
    flex: 0 0 608px;
    max-width: 608px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #009FE3;
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 9999px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.43;
    margin-bottom: 27px;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.hero-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.25;
    color: #101828;
    margin-bottom: 27px;
}

.hero-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.75;
    color: #4A5565;
    margin-bottom: 27px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    flex: 0 0 608px;
    max-width: 608px;
    height: 608px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   MAAIS CERTIFICATION SECTION
   ============================================ */
.maais-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.maais-wrapper {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.maais-image {
    flex: 0 0 608px;
    max-width: 608px;
    height: 608px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.maais-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.maais-content {
    flex: 0 0 608px;
    max-width: 608px;
}

.maais-description {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.625;
    color: #364153;
    margin-bottom: 24px;
}

.maais-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.maais-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.maais-feature svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #009FE3;
}

.maais-feature p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    color: #101828;
}

.maais-callout {
    background: rgba(0, 159, 227, 0.1);
    border-left: 4px solid #009FE3;
    border-radius: 14px;
    padding: 24px 24px 24px 28px;
}

.maais-callout-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.maais-callout-header svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #009FE3;
}

.maais-callout h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.56;
    color: #101828;
}

.maais-callout p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #364153;
}

/* ============================================
   TOUR SECTION
   ============================================ */
.tour-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.tour-video {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto 32px;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.tour-video img,
.tour-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-cards {
    display: flex;
    gap: 16px;
    max-width: 1024px;
    margin: 0 auto 48px;
}

.tour-card {
    flex: 1;
    padding: 24px;
    border-radius: 14px;
}

.tour-card--blue { background: rgba(0, 159, 227, 0.1); }
.tour-card--green { background: rgba(137, 227, 175, 0.1); }
.tour-card--pink { background: rgba(254, 164, 227, 0.1); }

.tour-card h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #101828;
    text-align: center;
    margin-bottom: 8px;
}

.tour-card p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #4A5565;
    text-align: center;
}

.tour-footer {
    text-align: center;
}

.tour-footer p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #4A5565;
    text-align: center;
    margin-bottom: 24px;
}

/* ============================================
   TERAPIAS SECTION
   ============================================ */
.terapias-section {
    background: #F9FAFB;
    padding: 80px 0;
}

.terapias-row {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.terapia-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terapia-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.15);
}

.terapia-card--large {
    flex: 0 0 calc(65.83% - 16px);
}

.terapia-card--medium {
    flex: 1;
}

.terapia-card--small {
    flex: 1;
}

.terapia-card__image {
    width: 100%;
    overflow: hidden;
}

.terapia-card--large .terapia-card__image {
    height: 256px;
}

.terapia-card--medium .terapia-card__image,
.terapia-card--small .terapia-card__image {
    height: 192px;
}

.terapia-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.terapia-card__content {
    padding: 24px;
}

.terapia-card__content h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #101828;
    margin-bottom: 8px;
}

.terapia-card__content p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #4A5565;
    margin-bottom: 16px;
}

.terapias-cta {
    text-align: center;
    padding-top: 16px;
}

/* ============================================
   AMBIENTE / CASA SECTION
   ============================================ */
.ambiente-section {
    background: #F4F3F1;
    padding: 80px 0;
}

.ambiente-wrapper {
    display: flex;
    gap: 64px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.ambiente-content {
    flex: 1;
}

.ambiente-description {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.625;
    color: #364153;
    margin-bottom: 24px;
}

.ambiente-warning {
    background: rgba(254, 164, 227, 0.1);
    border: 2px solid rgba(254, 164, 227, 0.3);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.ambiente-warning p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    color: #101828;
}

.ambiente-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ambiente-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ambiente-feature__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ambiente-feature__icon--green { background: #89E3AF; }
.ambiente-feature__icon--blue { background: #009FE3; }
.ambiente-feature__icon--pink { background: #FEA4E3; }

.ambiente-feature__icon svg {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
}

.ambiente-feature h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    color: #101828;
    margin-bottom: 4px;
}

.ambiente-feature p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #4A5565;
}

.ambiente-image {
    flex: 0 0 608px;
    max-width: 608px;
    height: 608px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.ambiente-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ambiente-quote {
    background: rgba(137, 227, 175, 0.1);
    border: 2px solid rgba(137, 227, 175, 0.3);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.ambiente-quote svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: #009FE3;
}

.ambiente-quote__text h4 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.333;
    color: #101828;
    margin-bottom: 8px;
}

.ambiente-quote__text p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: #4A5565;
}

/* ============================================
   ESPAÇOS SECTION
   ============================================ */
.espacos-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.espacos-section .section-header {
    text-align: center;
}

.espacos-section .section-badge {
    color: #89E3AF;
}

.espacos-section .section-subtitle {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.espacos-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
    margin-bottom: 32px;
}

.espacos-gallery__item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.espacos-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.espacos-cta-card {
    background: rgba(0, 159, 227, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.espacos-cta-card svg {
    width: 40px;
    height: 40px;
    color: #009FE3;
    margin-bottom: 16px;
}

.espacos-cta-card h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #101828;
    margin-bottom: 12px;
}

.espacos-cta-card p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #4A5565;
    margin-bottom: 24px;
}

/* ============================================
   DIFERENCIAIS SECTION
   ============================================ */
.diferenciais-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.diferencial-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diferencial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.1);
}

.diferencial-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.diferencial-card__icon--blue { background: #009FE3; }
.diferencial-card__icon--green { background: #89E3AF; }
.diferencial-card__icon--pink { background: #FEA4E3; }

.diferencial-card__icon svg {
    width: 28px;
    height: 28px;
    color: #FFFFFF;
}

.diferencial-card h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #101828;
    margin-bottom: 8px;
}

.diferencial-card p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #4A5565;
}

/* ============================================
   FAMÍLIA SECTION
   ============================================ */
.familia-section {
    background: #009FE3;
    padding: 80px 0;
}

.familia-section .section-badge {
    color: rgba(255, 255, 255, 0.8);
}

.familia-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.familia-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 28px;
}

.familia-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.familia-card__icon svg {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
}

.familia-card h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #101828;
    margin-bottom: 8px;
}

.familia-card p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #4A5565;
}

.familia-quote {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.familia-quote__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.familia-quote__header svg {
    width: 32px;
    height: 32px;
    color: #FFFFFF;
}

.familia-quote__header p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.333;
    color: #FFFFFF;
}

.familia-quote__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.familia-quote__footer svg {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.8);
}

.familia-quote__footer p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   SEGURANÇA SECTION
   ============================================ */
.seguranca-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.seguranca-section .section-badge {
    color: #FEA4E3;
}

.seguranca-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.seguranca-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.seguranca-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.seguranca-card__icon svg {
    width: 28px;
    height: 28px;
    color: #FFFFFF;
}

.seguranca-card h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #101828;
    margin-bottom: 12px;
}

.seguranca-card p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.625;
    color: #364153;
}

.seguranca-quote {
    background: rgba(254, 164, 227, 0.1);
    border: 2px solid #FEA4E3;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.seguranca-quote svg {
    width: 32px;
    height: 32px;
    color: #FEA4E3;
    margin-bottom: 16px;
}

.seguranca-quote h4 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.333;
    color: #101828;
    margin-bottom: 8px;
}

.seguranca-quote p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: #4A5565;
}

/* ============================================
   COMO COMEÇAR / STEPS SECTION
   ============================================ */
.steps-section {
    background: #F4F3F1;
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.step-card {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 28px;
    position: relative;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding-bottom: 72px;
}

.step-card--blue { border-color: #009FE3; }
.step-card--green { border-color: #89E3AF; }
.step-card--pink { border-color: #FEA4E3; }

.step-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.step-card__icon svg {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
}

.step-card h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #101828;
    margin-bottom: 8px;
    text-align: center;
}

.step-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 9999px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.step-card p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.625;
    color: #4A5565;
    text-align: center;
}

.step-card__number {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.steps-quote {
    background: linear-gradient(135deg, #009FE3, #89E3AF);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.steps-quote__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.steps-quote__header svg {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
}

.steps-quote__header p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #FFFFFF;
}

.steps-quote__desc {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.steps-quote .btn--white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1), 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* ============================================
   DEPOIMENTOS SECTION
   ============================================ */
.depoimentos-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.depoimento-card {
    background: #F9FAFB;
    border-radius: 16px;
    padding: 32px;
}

.depoimento-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.depoimento-card__stars svg {
    width: 20px;
    height: 20px;
    color: #FFC107;
    fill: #FFC107;
}

.depoimento-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.depoimento-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF;
    background: linear-gradient(135deg, #009FE3, #89E3AF);
}

.depoimento-card__info h4 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #101828;
}

.depoimento-card__info span {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.43;
    color: #6A7282;
}

.depoimento-card__google {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.depoimento-card__google svg {
    width: 20px;
    height: 20px;
    color: #FFC107;
    fill: #FFC107;
}

.depoimento-card p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.625;
    color: #364153;
}

.depoimentos-rating {
    background: #009FE3;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.depoimentos-rating__score {
    display: flex;
    align-items: center;
    gap: 16px;
}

.depoimentos-rating__score span {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #FFFFFF;
}

.depoimentos-rating__stars {
    display: flex;
    gap: 4px;
}

.depoimentos-rating__stars svg {
    width: 24px;
    height: 24px;
    color: #FFC107;
    fill: #FFC107;
}

.depoimentos-rating__text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.depoimentos-rating hr {
    width: 100%;
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 8px 0;
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */
.instagram-section {
    background: linear-gradient(180deg, rgba(254, 164, 227, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 80px 0;
}

.instagram-section .section-header {
    text-align: center;
}

.instagram-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.instagram-section .section-badge svg {
    width: 20px;
    height: 20px;
}

.instagram-handle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #E60076;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    margin-top: 16px;
}

.instagram-handle svg {
    width: 20px;
    height: 20px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.instagram-grid__item {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
}

.instagram-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.instagram-cta {
    text-align: center;
}

.instagram-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   LOCALIZAÇÃO SECTION
   ============================================ */
.localizacao-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.localizacao-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.localizacao-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.localizacao-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 400px;
}

.localizacao-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.localizacao-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.localizacao-item__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.localizacao-item__icon svg {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
}

.localizacao-item h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.56;
    color: #101828;
    margin-bottom: 4px;
}

.localizacao-item p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #4A5565;
}

/* Contact Page New Layout */
.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contato-form {
    background: #F9FAFB;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contato-form h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #101828;
    margin-bottom: 24px;
}

.contato-map-full {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    width: 100%;
}

.contato-map-full iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 400px;
}

/* Contact Form 7 Customization */
.contato-form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contato-form .wpcf7-form br {
    display: none;
}

.contato-form .wpcf7-form-control-wrap {
    display: block;
}

.contato-form input[type="text"],
.contato-form input[type="email"],
.contato-form input[type="tel"],
.contato-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    color: #101828;
    background: #FFFFFF;
    transition: border-color 0.3s ease;
}

.contato-form input[type="text"]:focus,
.contato-form input[type="email"]:focus,
.contato-form input[type="tel"]:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: #009FE3;
}

.contato-form textarea {
    min-height: 100px;
    resize: vertical;
}

.contato-form label {
    display: block;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #344054;
    margin-bottom: 12px;
}

.contato-form .wpcf7-submit {
    background: #009FE3;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.contato-form .wpcf7-submit:hover {
    background: #0088CC;
}

.contato-form .wpcf7-response-output {
    margin: 16px 0 0;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 14px;
}

.contato-form .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #EF4444;
    margin-top: 4px;
}

/* Override page-content p margins for contact forms and info */
.contato-info p,
.contato-form p {
    margin-bottom: 0;
}

.localizacao-item p {
    margin-bottom: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #101828;
    padding: 64px 0 0;
    color: #FFFFFF;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand img {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

.footer-column h4 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.56;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #FFFFFF;
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item p,
.footer-contact-item a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.43;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.43;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a:hover {
    color: #FFFFFF;
    opacity: 1;
}

/* ============================================
   INTERNAL PAGES
   ============================================ */
.page-hero {
    background: #F4F3F1;
    padding: 164px 0 64px;
    margin-top: 104px;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Background images for each page */
.page-template-page-sobre .page-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/images/hero-sobre.png');
}

.page-template-page-servicos .page-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/images/hero-servicos.png');
}

.page-template-page-diferenciais .page-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/images/hero-diferenciais.png');
}

.page-template-page-contato .page-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/images/hero-contato.png');
}

.page-template-page-como-comecar .page-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/images/hero-como-comecar.png');
}

/* Ensure text is white on dark overlay */
.page-template-page-sobre .page-hero .section-title,
.page-template-page-sobre .page-hero .section-subtitle,
.page-template-page-servicos .page-hero .section-title,
.page-template-page-servicos .page-hero .section-subtitle,
.page-template-page-diferenciais .page-hero .section-title,
.page-template-page-diferenciais .page-hero .section-subtitle,
.page-template-page-contato .page-hero .section-title,
.page-template-page-contato .page-hero .section-subtitle,
.page-template-page-como-comecar .page-hero .section-title,
.page-template-page-como-comecar .page-hero .section-subtitle {
    color: #ffffff;
    position: relative;
    z-index: 1;
}

/* Badge styling on hero backgrounds */
.page-template-page-sobre .page-hero .section-badge,
.page-template-page-servicos .page-hero .section-badge,
.page-template-page-diferenciais .page-hero .section-badge,
.page-template-page-contato .page-hero .section-badge,
.page-template-page-como-comecar .page-hero .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.page-hero .section-title {
    font-size: 48px;
    line-height: 1.25;
    text-align: center;
    margin-bottom: 16px;
}

.page-hero .section-subtitle {
    text-align: center;
    max-width: 768px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 0;
}

.page-content h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: #101828;
    margin-bottom: 16px;
}

.page-content h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    color: #101828;
    margin-bottom: 12px;
}

.page-content p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.75;
    color: #364153;
    margin-bottom: 20px;
}

.page-content ul {
    margin-bottom: 20px;
    padding-left: 0;
}

.page-content ul li {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.75;
    color: #364153;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.page-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: #009FE3;
    border-radius: 50%;
}

/* CTA Section for internal pages */
.page-cta-section {
    background: #009FE3;
    padding: 64px 0;
    text-align: center;
}

.page-cta-section h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.11;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.page-cta-section p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   INTERNAL PAGE: ABOUT INTRO
   ============================================ */
.about-intro {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

.about-intro__text {
    flex: 1;
}

.about-intro__image {
    flex: 0 0 480px;
    border-radius: 16px;
    overflow: hidden;
}

.about-intro__image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 16px;
}

/* ============================================
   INTERNAL PAGE: SERVICO DETAIL
   ============================================ */
.servico-detail {
    display: flex;
    gap: 48px;
    align-items: center;
    padding: 48px 0;
    border-bottom: 1px solid #E5E7EB;
}

.servico-detail:last-of-type {
    border-bottom: none;
}

.servico-detail__image {
    flex: 0 0 480px;
    border-radius: 16px;
    overflow: hidden;
}

.servico-detail__image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 16px;
}

.servico-detail__content {
    flex: 1;
}

.servico-detail__content h2 {
    margin-top: 4px;
}

.servico-detail--reverse {
    flex-direction: row-reverse;
}

/* ============================================
   INTERNAL PAGE: STEPS VERTICAL
   ============================================ */
.steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.step-vertical {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 32px 0;
    position: relative;
}

.step-vertical::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #E5E7EB;
}

.step-vertical:first-child::before {
    top: 50%;
}

.step-vertical:last-child::before {
    bottom: 50%;
}

.step-vertical__number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.step-vertical__content {
    flex: 1;
    padding-top: 8px;
}

.step-vertical__content h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.step-vertical__content p {
    font-size: 16px;
    line-height: 1.75;
    color: #4A5565;
    margin-bottom: 12px;
}

.step-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #FFFFFF;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   INTERNAL PAGE: ADVANTAGES GRID
   ============================================ */
.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.vantagem-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
}

.vantagem-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #FFFFFF;
}

.vantagem-card h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #101828;
    margin-bottom: 8px;
}

.vantagem-card p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #4A5565;
}

/* ============================================
   INTERNAL PAGE: MISSION/VISION CARDS
   ============================================ */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.mission-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.08);
}

.mission-card h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #101828;
    margin-bottom: 12px;
}

.mission-card p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.75;
    color: #4A5565;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    opacity: 1;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: #FFFFFF;
    fill: #FFFFFF;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-wrapper,
    .maais-wrapper,
    .ambiente-wrapper {
        flex-direction: column;
    }

    .hero-content,
    .hero-image,
    .maais-image,
    .maais-content,
    .ambiente-image {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .hero-image,
    .maais-image,
    .ambiente-image {
        height: 400px;
    }

    .terapias-row {
        flex-wrap: wrap;
    }

    .terapia-card--large,
    .terapia-card--medium,
    .terapia-card--small {
        flex: 0 0 calc(50% - 16px);
    }

    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .familia-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .seguranca-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .localizacao-wrapper {
        grid-template-columns: 1fr;
    }

    .contato-wrapper {
        grid-template-columns: 1fr;
    }

    .about-intro {
        flex-direction: column;
    }

    .about-intro__image {
        flex: none;
        width: 100%;
    }

    .servico-detail,
    .servico-detail--reverse {
        flex-direction: column;
    }

    .servico-detail__image {
        flex: none;
        width: 100%;
    }

    .vantagens-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .espacos-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .site-header .container {
        height: 80px;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
        padding: 20px;
        flex-direction: column;
    }

    .main-navigation.active {
        display: flex;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }

    .main-navigation a {
        display: block;
        padding: 12px 16px;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-section {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 28px;
    }

    .terapia-card--large,
    .terapia-card--medium,
    .terapia-card--small {
        flex: 0 0 100%;
    }

    .diferenciais-grid,
    .familia-grid,
    .seguranca-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tour-cards {
        flex-direction: column;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .espacos-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .page-hero {
        padding: 120px 0 48px;
        margin-top: 80px;
    }

    .page-hero .section-title {
        font-size: 32px;
    }

    .vantagens-grid,
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .step-vertical {
        gap: 20px;
    }

    .step-vertical__number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .step-vertical::before {
        left: 20px;
    }

    /* Typography standardization for mobile */
    .section-subtitle {
        font-size: 16px;
    }

    .diferencial-card,
    .familia-card,
    .tour-card,
    .vantagem-card,
    .seguranca-card,
    .espacos-cta-card,
    .mission-card {
        padding: 24px;
    }

    .diferencial-card h3,
    .familia-card h3,
    .tour-card h3,
    .vantagem-card h3,
    .seguranca-card h3,
    .espacos-cta-card h3,
    .mission-card h3 {
        font-size: 18px;
    }

    .diferencial-card p,
    .familia-card p,
    .tour-card p,
    .vantagem-card p,
    .seguranca-card p,
    .espacos-cta-card p,
    .mission-card p {
        font-size: 14px;
    }

    /* Familia quote mobile adjustments */
    .familia-quote {
        padding: 24px 16px;
    }

    .familia-quote__header {
        flex-direction: column;
        gap: 8px;
    }

    .familia-quote__header svg {
        width: 28px;
        height: 28px;
    }

    .familia-quote__header p {
        font-size: 20px;
    }

    .familia-quote__footer {
        flex-direction: column;
        gap: 8px;
    }

    .familia-quote__footer p {
        font-size: 16px;
    }

    /* Steps quote - hide icons on mobile */
    .steps-quote__header svg {
        display: none;
    }

    .steps-quote .btn--white svg {
        display: none;
    }

    /* Center step card icons and badges */
    .step-card__icon {
        margin-left: auto;
        margin-right: auto;
    }

    .step-badge {
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }
}
