/* Fontes licenciadas FertGroup — The Seasons (títulos) + DM Sans (corpo).
   Arquivos .ttf em ../fonts (substituem o Raleway do Google). */
@font-face{font-family:"The Seasons";src:url("../fonts/TheSeasons-Regular.ttf") format("truetype");font-weight:400;font-style:normal;font-display:swap}

@font-face{font-family:"DM Sans";src:url("../fonts/DMSans-Light.ttf")   format("truetype");font-weight:300;font-style:normal;font-display:swap}
@font-face{font-family:"DM Sans";src:url("../fonts/DMSans-Regular.ttf") format("truetype");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:"DM Sans";src:url("../fonts/DMSans-Italic.ttf")  format("truetype");font-weight:400;font-style:italic;font-display:swap}
@font-face{font-family:"DM Sans";src:url("../fonts/DMSans-Medium.ttf")  format("truetype");font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:"DM Sans";src:url("../fonts/DMSans-Bold.ttf")    format("truetype");font-weight:700;font-style:normal;font-display:swap}

:root {
    /* Cores — paleta FertGroup (petróleo primária / rosa acento / off-white / taupe).
       Nomes das vars mantidos (legado do tema); valores remapeados p/ a marca. */
    --primary-color: #394F5A;        /* petróleo (primária / estrutura) */
    --secondary-color: #C96B92;      /* rosa (acento) */
    --white-color: #ffffff;
    --black-color: #383838;
    --maximum-purple: #A95A7B;       /* rosa escuro (hover/borda/realce) */
    --african-violet: #6E828C;       /* petróleo claro (texto secundário) */
    --bangladesh-green: #C96B92;     /* rosa (ícones/bordas/CTA de acento) */
    --floral-white-color: #F6F8F7;   /* off-white (fundo claro) */
    --light-goldenrod-yellow-color: #EFEAE2; /* taupe claro */
    --anti-flash-white-color: #EEF2F1;       /* off-white frio */
    --light-gray-400: #CED4DA;
    --primary-color-lighten-75: #DCE3E6;     /* petróleo bem claro (fundo) */

    /* Estilo dos textos e botões */
    --text-base-size: 1rem;
    --text-base-line-height: 1.5rem;
    --title-font-family: 'The Seasons', serif;
    --title-font-size: 3.75rem;
    --title-font-line-height: 4rem;
    --title-font-weight: 400;
    --title-margin-bottom: 0.625rem;
    --subtitle-font-family: 'DM Sans', sans-serif;
    --subtitle-font-size: 1.25rem;
    --subtitle-font-line-height: 1.75rem;
    --subtitle-font-weight: 400;
    --subtitle-margin-bottom: 0.625rem;
    --card-font-size: 1.25rem;
    --card-font-line-height: 1.75rem;
    --paragraph-font-family: 'DM Sans', sans-serif;
    --paragraph-font-size: 1.125rem;
    --paragraph-font-line-height: 1.75rem;
    --paragraph-font-weight: normal;
    --paragraph-margin-bottom: 1rem;
    --buttons-font-family: 'DM Sans', sans-serif;
    --buttons-font-align: center;
    --buttons-font-weight: bold;
    --buttons-text-transform: inherit;

    /* Larguras */
    --max-width-site: 1920px;

    /* Bordas */
    --border-primary: solid 0.125rem var(--primary-color);
    --border-secondary: solid 0.125rem var(--secondary-color);
    --border-radius-xl: 2rem;
    --border-radius-lg: 1rem;
    --border-radius-md: 0.5rem;
    --border-radius-sm: 0.25rem;

    /* Margem e espaçamento interno */
    --section-spacing: 4.5rem;
    --space-between-sections-contents: 2rem;
    --button-padding: 1.5rem 3rem;
    --padding-left-right: 1rem;

    /* Transições */
    --short-transitions: 0.25s;
    --half-second-transitions: 0.5s;
}

/* Media query das variáveis */
@media screen and (max-width: 992px) {}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 576px) {
    :root {
        /* Estilo dos textos e botões */
        --title-font-size: 2.25rem;
        --title-font-line-height: 2.5rem;
        --card-font-size: 1rem;
        --card-font-line-height: 1.5rem;
        --paragraph-font-size: 1rem;
        --paragraph-font-line-height: 1.5rem;

        /* Margem e espaçamento interno */
        --button-padding: 1.25rem 2.75rem;
    }
}

/**
 * Reset simples de estilo.
 *
 */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 100%;
    font-family: 'DM Sans', sans-serif;
    vertical-align: baseline;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    color: var(--black-color);
    scroll-behavior: smooth;
}

ol,
ul {
    list-style: none;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1080px;
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--padding-left-right);
    padding-left: var(--padding-left-right);
    overflow: hidden;
}

.row {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.row-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

[class*="col-"] {
    padding: 1rem;
    position: relative;
    width: 100%;
    min-height: 1px;
    text-align: left;
    display: block;
}

@media screen and (min-width: 1px) {
    .col-xl-1 { -webkit-box-flex: 0; -ms-flex: 0 0 8.333%; flex: 0 0 8.333%; max-width: 8.333%; display: block; }
    .col-xl-2 { -webkit-box-flex: 0; -ms-flex: 0 0 16.666%; flex: 0 0 16.666%; max-width: 16.666%; display: block; }
    .col-xl-3 { -webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; display: block; }
    .col-xl-4 { -webkit-box-flex: 0; -ms-flex: 0 0 33.333%; flex: 0 0 33.333%; max-width: 33.333%; display: block; }
    .col-xl-5 { -webkit-box-flex: 0; -ms-flex: 0 0 41.666%; flex: 0 0 41.666%; max-width: 41.666%; display: block; }
    .col-xl-6 { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; display: block; }
    .col-xl-7 { -webkit-box-flex: 0; -ms-flex: 0 0 58.333%; flex: 0 0 58.333%; max-width: 58.333%; display: block; }
    .col-xl-8 { -webkit-box-flex: 0; -ms-flex: 0 0 66.666%; flex: 0 0 66.666%; max-width: 66.666%; display: block; }
    .col-xl-9 { -webkit-box-flex: 0; -ms-flex: 0 0 75%; flex: 0 0 75%; max-width: 75%; display: block; }
    .col-xl-10 { -webkit-box-flex: 0; -ms-flex: 0 0 83.333%; flex: 0 0 83.333%; max-width: 83.333%; display: block; }
    .col-xl-11 { -webkit-box-flex: 0; -ms-flex: 0 0 91.666%; flex: 0 0 91.666%; max-width: 91.666%; display: block; }
    .col-xl-12 { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; display: block; }
}

@media screen and (max-width: 992px) {
    .col-lg-1 { -webkit-box-flex: 0; -ms-flex: 0 0 8.333%; flex: 0 0 8.333%; max-width: 8.333%; display: block; }
    .col-lg-2 { -webkit-box-flex: 0; -ms-flex: 0 0 16.666%; flex: 0 0 16.666%; max-width: 16.666%; display: block; }
    .col-lg-3 { -webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; display: block; }
    .col-lg-4 { -webkit-box-flex: 0; -ms-flex: 0 0 33.333%; flex: 0 0 33.333%; max-width: 33.333%; display: block; }
    .col-lg-5 { -webkit-box-flex: 0; -ms-flex: 0 0 41.666%; flex: 0 0 41.666%; max-width: 41.666%; display: block; }
    .col-lg-6 { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; display: block; }
    .col-lg-7 { -webkit-box-flex: 0; -ms-flex: 0 0 58.333%; flex: 0 0 58.333%; max-width: 58.333%; display: block; }
    .col-lg-8 { -webkit-box-flex: 0; -ms-flex: 0 0 66.666%; flex: 0 0 66.666%; max-width: 66.666%; display: block; }
    .col-lg-9 { -webkit-box-flex: 0; -ms-flex: 0 0 75%; flex: 0 0 75%; max-width: 75%; display: block; }
    .col-lg-10 { -webkit-box-flex: 0; -ms-flex: 0 0 83.333%; flex: 0 0 83.333%; max-width: 83.333%; display: block; }
    .col-lg-11 { -webkit-box-flex: 0; -ms-flex: 0 0 91.666%; flex: 0 0 91.666%; max-width: 91.666%; display: block; }
    .col-lg-12 { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; display: block; }
}

@media screen and (max-width: 768px) {
    .col-md-1 { -webkit-box-flex: 0; -ms-flex: 0 0 8.333%; flex: 0 0 8.333%; max-width: 8.333%; display: block; }
    .col-md-2 { -webkit-box-flex: 0; -ms-flex: 0 0 16.666%; flex: 0 0 16.666%; max-width: 16.666%; display: block; }
    .col-md-3 { -webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; display: block; }
    .col-md-4 { -webkit-box-flex: 0; -ms-flex: 0 0 33.333%; flex: 0 0 33.333%; max-width: 33.333%; display: block; }
    .col-md-5 { -webkit-box-flex: 0; -ms-flex: 0 0 41.666%; flex: 0 0 41.666%; max-width: 41.666%; display: block; }
    .col-md-6 { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; display: block; }
    .col-md-7 { -webkit-box-flex: 0; -ms-flex: 0 0 58.333%; flex: 0 0 58.333%; max-width: 58.333%; display: block; }
    .col-md-8 { -webkit-box-flex: 0; -ms-flex: 0 0 66.666%; flex: 0 0 66.666%; max-width: 66.666%; display: block; }
    .col-md-9 { -webkit-box-flex: 0; -ms-flex: 0 0 75%; flex: 0 0 75%; max-width: 75%; display: block; }
    .col-md-10 { -webkit-box-flex: 0; -ms-flex: 0 0 83.333%; flex: 0 0 83.333%; max-width: 83.333%; display: block; }
    .col-md-11 { -webkit-box-flex: 0; -ms-flex: 0 0 91.666%; flex: 0 0 91.666%; max-width: 91.666%; display: block; }
    .col-md-12 { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; display: block; }
}

@media screen and (max-width: 576px) {
    .col-sm-1 { -webkit-box-flex: 0; -ms-flex: 0 0 8.333%; flex: 0 0 8.333%; max-width: 8.333%; display: block; }
    .col-sm-2 { -webkit-box-flex: 0; -ms-flex: 0 0 16.666%; flex: 0 0 16.666%; max-width: 16.666%; display: block; }
    .col-sm-3 { -webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; display: block; }
    .col-sm-4 { -webkit-box-flex: 0; -ms-flex: 0 0 33.333%; flex: 0 0 33.333%; max-width: 33.333%; display: block; }
    .col-sm-5 { -webkit-box-flex: 0; -ms-flex: 0 0 41.666%; flex: 0 0 41.666%; max-width: 41.666%; display: block; }
    .col-sm-6 { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; display: block; }
    .col-sm-7 { -webkit-box-flex: 0; -ms-flex: 0 0 58.333%; flex: 0 0 58.333%; max-width: 58.333%; display: block; }
    .col-sm-8 { -webkit-box-flex: 0; -ms-flex: 0 0 66.666%; flex: 0 0 66.666%; max-width: 66.666%; display: block; }
    .col-sm-9 { -webkit-box-flex: 0; -ms-flex: 0 0 75%; flex: 0 0 75%; max-width: 75%; display: block; }
    .col-sm-10 { -webkit-box-flex: 0; -ms-flex: 0 0 83.333%; flex: 0 0 83.333%; max-width: 83.333%; display: block; }
    .col-sm-11 { -webkit-box-flex: 0; -ms-flex: 0 0 91.666%; flex: 0 0 91.666%; max-width: 91.666%; display: block; }
    .col-sm-12 { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; display: block; }
}

/**
 * Estilos de componentes comuns.
 *
 */
/* display */
.display-none {
    display: none;
}

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* margin */
header .mt-0,
main .mt-0,
footer .mt-0 {
    margin-top: 0;
}

header .mb-0,
main .mb-0,
footer .mb-0 {
    margin-bottom: 0;
}

header .ml-0,
main .ml-0,
footer .ml-0 {
    margin-left: 0;
}

header .mr-0,
main .mr-0,
footer .mr-0 {
    margin-right: 0;
}

/* remove */
header .p-default,
main .p-default,
footer .p-default {
    padding-left: var(--padding-left-right);
    padding-right: var(--padding-left-right);
}

header .p-0,
main .p-0,
footer .p-0 {
    padding: 0;
}

header .pt-0,
main .pt-0,
footer .pt-0 {
    padding-top: 0;
}

header .pb-0,
main .pb-0,
footer .pb-0 {
    padding-bottom: 0;
}

header .pl-0,
main .pl-0,
footer .pl-0 {
    padding-left: 0;
}

header .pr-0,
main .pr-0,
footer .pr-0 {
    padding-right: 0;
}

/* cores */
.color-white {
    color: var(--white-color);
}

.color-black {
    color: var(--black-color);
}

.color-primary {
    color: var(--primary-color);
}

.color-secondary {
    color: var(--secondary-color);
}

.color-maximum-purple {
    color: var(--maximum-purple);
}

.color-bangladesh-green {
    color: var(--bangladesh-green);
}

.bg-white {
    background-color: var(--white-color);
}

.bg-black {
    background-color: var(--black-color);
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.bg-maximum-purple {
    background-color: var(--maximum-purple);
}

.bg-bangladesh-green {
    background-color: var(--bangladesh-green);
}

.bg-floral-white {
    background-color: var(--floral-white-color);
}

.bg-light-goldenrod-yellow {
    background-color: var(--light-goldenrod-yellow-color);
}

.bg-anti-flash-white {
    background-color: var(--anti-flash-white-color);
}

/* texto */
main .text-start {
    text-align: start;
}

main .text-center {
    text-align: center;
}

main .text-justify {
    text-align: justify;
}

main .text-end {
    text-align: end;
}

main .text-medium {
    font-weight: 500;
}

main .text-semibold {
    font-weight: 600;
}

main .text-bold {
    font-weight: bold;
}

main .text-uppercase {
    text-transform: uppercase;
}

main .text-lowercase {
    text-transform: lowercase;
}

main .text-capitalize {
    text-transform: capitalize;
}

/* Font size */
main .text-base-size {
    font-size: var(--text-base-size);
    line-height: var(--text-base-line-height);
}

/* bordas */
.border-primary {
    border: solid 1px var(--primary-color);
}

.border-secondary {
    border: solid 1px var(--secondary-color);
}

.border-width-lg {
    border-width: 0.315rem;
}

.border-width-md {
    border-width: 0.185rem;
}

.border-width-sm {
    border-width: 0.065rem;
}

.border-radius-lg {
    border-radius: var(--border-radius-lg);
}

.border-radius-md {
    border-radius: var(--border-radius-md);
}

.border-radius-sm {
    border-radius: var(--border-radius-sm);
}

/* alinhamento */
.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.shadow {
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.space-contents-top {
    margin-top: var(--space-between-sections-contents);
}

.space-contents-bottom {
    margin-bottom: var(--space-between-sections-contents);
}

.spaced {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
    padding-left: var(--padding-left-right);
    padding-right: var(--padding-left-right);
}

.section-title {
    font-family: var(--title-font-family);
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
    line-height: var(--title-font-line-height);
    margin-bottom: var(--title-margin-bottom);
}

.section-subtitle {
    font-family: var(--subtitle-font-family);
    font-size: var(--subtitle-font-size);
    font-weight: var(--subtitle-font-weight);
    line-height: var(--subtitle-font-line-height);
    margin-bottom: var(--subtitle-margin-bottom);
}

.paragraph,
.paragraph p {
    font-family: var(--paragraph-font-family);
    font-size: var(--paragraph-font-size);
    font-weight: var(--paragraph-font-weight);
    line-height: var(--paragraph-font-line-height);
    margin-bottom: var(--paragraph-margin-bottom);
}

.button-wrapper .button {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.button {
    padding: var(--button-padding);
    border-radius: 40px; /* pill — padrão FertGroup (igual aos CTAs do header/rodapé) */
    text-align: var(--buttons-font-align);
    font-family: var(--buttons-font-family);
    font-weight: var(--buttons-font-weight);
    font-size: var(--paragraph-font-size);
    text-transform: var(--buttons-text-transform);
    cursor: pointer;
    -webkit-transition: all var(--short-transitions) ease-in;
    -o-transition: all var(--short-transitions) ease-in;
    transition: all var(--short-transitions) ease-in;
}

@media screen and (max-width: 768px) {
    .button-wrapper {
        padding-left: var(--padding-left-right);
        padding-right: var(--padding-left-right);
    }

    .button-wrapper .button {
        width: 100%;
    }
}

/**
 * Cabeçalho.
 *
 */
header.main-header {
    max-width: var(--max-width-site);
    margin-left: auto;
    margin-right: auto;
}

header.main-header .navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

header.main-header .navbar .navbar-brand img {
    height: 3.125rem;
    width: auto;
}

header.main-header .navbar .main-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header.main-header .navbar .main-menu .menu-item {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

header.main-header .navbar .main-menu .menu-item:first-child {
    margin-left: 0;
}

header.main-header .navbar .main-menu .menu-item:last-child {
    margin-right: 0;
}

header.main-header .navbar .main-menu .menu-item.current_page_item a ,
header.main-header .navbar .main-menu .menu-item.current-menu-item a {
    color: var(--primary-color);
    font-weight: 700;
}

header.main-header .navbar .main-menu .menu-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 300;
    -webkit-transition: color var(--short-transitions) ease-in;
    -o-transition: color var(--short-transitions) ease-in;
    transition: color var(--short-transitions) ease-in;
}

header.main-header .navbar .main-menu .menu-item a:hover {
    color: var(--primary-color);
}

header.main-header .navbar .main-menu .menu-item a svg {
    display: none;
    height: 24px;
    width: auto;
    margin-right: 0.5rem;
}

header.main-header .navbar .main-menu .menu-item a + .nav_desc {
    display: none;
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

header.main-header .navbar .main-menu .menu-item.whatsapp-menu-item {
    background-color: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
	animation: pulse 2s infinite;
}

header.main-header .navbar .main-menu .menu-item.whatsapp-menu-item a {
	color: #fff
}

header.main-header .navbar .main-menu .menu-item.whatsapp-menu-item:hover {
    background-color: var(--primary-color); /* Cor de fundo no hover */
    color: #ffffff; /* Cor do texto no hover */
}

/* Media query do cabeçalho */
@media screen and (max-width: 992px) {}

@media screen and (max-width: 768px) {
    header.main-header .navbar {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    header.main-header .navbar .navbar-brand img {
        max-height: 3.75rem;
    }

    header.main-header .navbar .main-menu-container {
        display: none;
    }

}

@media screen and (max-width: 576px) {}

/**
 * Elemento principal.
 *
 */
main {
    width: 100%;
    max-width: var(--max-width-site);
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

/* Media query do elemento principal */
@media screen and (max-width: 768px) {}

/**
 * Classes de seções
 *
 */
section > div > .section-subtitle,
section > .section-subtitle {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 768px) {
    section > div > .section-subtitle,
    section > .section-subtitle {
        max-width: 100%;
    }
}

section .card-anchor .card-title {
    font-family: var(--subtitle-font-family);
    font-size: var(--subtitle-font-size);
    font-weight: bold;
    line-height: var(--subtitle-font-line-height);
    margin-bottom: 0.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 5.25rem;
}

/**
 * Seção banners principais
 *
 */
section.main-banner .banner img {
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100vw;
    max-height: 47.5rem;
}

@media screen and (max-width: 768px) {
    section.main-banner .banner img {
        -o-object-position: top;
        object-position: top;
        max-height: 42.5rem;
    }
}

/**
 * Seção de cta agendar consulta
 *
 */
section.cta-medical-appointment {
    --background-image-url: url('../../assets/images/images/background/gerare_agendar.png');
    background-image: var(--background-image-url);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top right;
}

@media screen and (max-width: 992px) {
    section.cta-medical-appointment {
        background-image: none;
    }
}

@media screen and (max-width: 468px) {
    section.cta-medical-appointment {
        padding-top: 25rem;
        background-image: var(--background-image-url);
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: top center;
    }
}

section.cta-medical-appointment .section-title {
    font-size: 3rem;
    line-height: 3.5rem;
    margin-bottom: 0;
}

@media screen and (max-width: 576px) {
    section.cta-medical-appointment .section-title {
        font-size: 2.5rem;
        line-height: 3rem;
    }
}

section.cta-medical-appointment .section-subtitle {
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 2.25rem;
    margin-bottom: 0;
}

@media screen and (max-width: 576px) {
    section.cta-medical-appointment .section-subtitle {
        font-size: 1.25rem;
        line-height: 2rem;
    }
}

section.cta-medical-appointment .button-wrapper {
    margin-top: 2.125rem;
}

section.cta-medical-appointment .button-wrapper .button {
    margin-left: unset;
}

/**
 * Espaço para botões flutuantes
 *
 */
.floating-action-buttons-wrapper {
    position: fixed;
    bottom: 2.15rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    overflow: visible;
    z-index: 5;
}

.floating-action-buttons-wrapper .back-to-top,
.floating-action-buttons-wrapper .whatsapp-button{
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    border-radius: 50%;
    -webkit-transition: -webkit-box-shadow var(--short-transitions);
    transition: -webkit-box-shadow var(--short-transitions);
    -o-transition: box-shadow var(--short-transitions);
    transition: box-shadow var(--short-transitions);
    transition: box-shadow var(--short-transitions), -webkit-box-shadow var(--short-transitions);
    -webkit-transition: bottom var(--short-transitions);
    -o-transition: bottom var(--short-transitions);
    transition: bottom var(--short-transitions);
}

.floating-action-buttons-wrapper .back-to-top {
    left: 1.05rem;
    color: var(--white-color);
    padding: 0.75rem;
    background-color: var(--primary-color);
    border: solid 0.05rem var(--anti-flash-white-color);
    -webkit-box-shadow: 0 0.125rem 0.315rem rgba(255, 255, 255, 0.15);
    box-shadow: 0 0.125rem 0.315rem rgba(255, 255, 255, 0.15);
    bottom: 0;
}

.floating-action-buttons-wrapper .back-to-top.hidden {
    bottom: -9.5rem;
}

.floating-action-buttons-wrapper .whatsapp-button {
    right: 1.05rem;
    fill: var(--white-color);
    padding: 1.5rem;
    background-color: #0CC042;
    -webkit-box-shadow: 0 0.125rem 0.315rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 0.125rem 0.315rem rgba(0, 0, 0, 0.15);
    bottom: 0;
} 

.floating-action-buttons-wrapper .whatsapp-button.hidden {
    bottom: -15rem;
} 

.floating-action-buttons-wrapper .back-to-top svg {
    height: 1.75rem;
    width: 1.75rem;
}

 .floating-action-buttons-wrapper .whatsapp-button svg  {
    height: 2.5rem;
    width: 2.5rem;
} 

@media screen and (max-width: 768px) {
    .floating-action-buttons-wrapper {
        bottom: 5.15rem;
    }
}


/**
 * Estilo do rodapé.
 *
 */
footer.main-footer {
    background-color: var(--primary-color); /* rodapé petróleo (marca FertGroup) */
    width: 100%;
    max-width: var(--max-width-site);
    margin-left: auto;
    margin-right: auto;
}

footer.main-footer .footer-brand {
    padding-top: 7.5rem;
}

footer.main-footer .footer-brand img {
    display: block;
    width: 12.25rem;
    margin-left: auto;
    margin-right: auto;
}

footer.main-footer nav.bottom-navigation {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
    background-color: var(--white-color);
    z-index: 10;
}

footer.main-footer nav.bottom-navigation .container {
    overflow: visible;
}

footer.main-footer nav.bottom-navigation .container .main-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

footer.main-footer nav.bottom-navigation .container .main-menu .menu-item {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
}

footer.main-footer nav.bottom-navigation .container .main-menu .menu-item:first-child {
    margin-left: 0;
}

footer.main-footer nav.bottom-navigation .container .main-menu .menu-item:last-child {
    margin-right: 0;
}

footer.main-footer nav.bottom-navigation .container .main-menu .menu-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    color: var(--african-violet);
    font-size: 0.75rem;
    font-weight: 400;
    -webkit-transition: all var(--short-transitions) ease-in;
    -o-transition: all var(--short-transitions) ease-in;
    transition: all var(--short-transitions) ease-in;
}

footer.main-footer nav.bottom-navigation .container .main-menu .menu-item.current_page_item a,
footer.main-footer nav.bottom-navigation .container .main-menu .menu-item.current-menu-item a {
    color: var(--maximum-purple);
    font-weight: bold;
}

footer.main-footer nav.bottom-navigation .container .main-menu .menu-item.current_page_item a::after,
footer.main-footer nav.bottom-navigation .container .main-menu .menu-item.current-menu-item a::after {
    content: '';
    position: absolute;
    width: 3.75rem;
    height: 3.5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: auto;
    border-radius: var(--border-radius-lg);
    background-color: var(--maximum-purple);
    opacity: 0.075;
    z-index: 0;
}

footer.main-footer nav.bottom-navigation .container .main-menu:hover .menu-item a {
    opacity: 0.5;
}

footer.main-footer nav.bottom-navigation .container .main-menu .menu-item a:hover {
    opacity: 1;
}

footer.main-footer nav.bottom-navigation .container .main-menu .menu-item a svg {
    display: block;
    height: 24px;
    width: auto;
    margin-bottom: 0.15rem;
}

footer.main-footer nav.bottom-navigation .container .main-menu .menu-item a + .nav_desc {
    display: none;
}

footer.main-footer .social-network-group {
    margin-top: var(--space-between-sections-contents);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

footer.main-footer .social-network-group>li {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    margin-bottom: 1.25rem;
}

footer.main-footer .social-network-group>li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0.5rem;
    border-radius: var(--border-radius-md);
    -webkit-transition: all var(--short-transitions) ease-in;
    -o-transition: all var(--short-transitions) ease-in;
    transition: all var(--short-transitions) ease-in;
}

footer.main-footer .social-network-group>li a {
    background-color: var(--white-color);
    color: var(--bangladesh-green);
}

footer.main-footer .social-network-group>li a svg {
    fill: var(--bangladesh-green);
    display: block;
    height: 2.25rem;
    width: auto;
}

footer.main-footer .social-network-group>li a span {
    display: none;
}

footer.main-footer .links {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

footer.main-footer .contacts-wrapper {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 3.5rem;
}

footer.main-footer .contacts .contact-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem;
    height: 100%;
    word-break: break-word;
    text-align: center;
}

footer.main-footer .contacts .contact-card svg {
    height: 2.5rem;
    width: auto;
}

footer.main-footer .contacts .contact-card .contact-title {
    margin-top: 1rem;
    font-weight: 400;
}

footer.main-footer .contacts .contact-card .card-text {
    margin-top: 0.5rem;
    text-align: center;
    font-size: 0.95rem;
}

footer.main-footer .contacts .contact-card .card-text strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

footer.main-footer .additional-links-container {
    margin-bottom: 7.5rem;
}

footer.main-footer .additional-links-container .additional-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    color: white;
}

footer.main-footer .additional-links-container .additional-links .menu-item:first-child {
    margin-left: 0;
}

footer.main-footer .additional-links-container .additional-links .menu-item {
    text-align: center;
    margin-left: 1.5rem;
    margin-top: 1rem;
}

footer.main-footer .copyright {
    font-family: 'DM Sans', sans-serif;
    text-align: center;
    padding-bottom: 10rem;
}

/* media query do rodapé */
@media screen and (max-width: 992px) {}

@media screen and (max-width: 768px) {
    footer.main-footer nav.bottom-navigation {
        display: block;
    }
	
	/* footer.main-footer nav.bottom-navigation .menu-item.whatsapp-menu-item {
		display: none;
	} */
}

@media screen and (max-width: 576px) {
    footer.main-footer .contacts .contact-card svg {
        height: 2.25rem;
    }

    footer.main-footer .contacts .contact-card .contact-title {
        font-size: 0.85rem;
        margin-top: 0.5rem;
        margin-bottom: 0.25rem;
    }

    footer.main-footer .contacts .contact-card .card-text {
        font-size: 0.8rem;
        margin-top: 0.25rem;
    }

    footer.main-footer .contacts .contact-card .card-text strong {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
}

/* ====================================================================
   Rodapé padrão FertGroup (reconstruído do footer-fertility, tema custom)
   Fundo off-white, texto cinza, acento rosa, ícones sociais petróleo.
   ==================================================================== */
footer.main-footer.fg-footer{
    background-color: #F6F8F7 !important;
    max-width: 100%;
    color: #6B7780;
}
.fg-footer *{ font-family: 'DM Sans', sans-serif; }

/* faixa CTA */
.fg-footer .fg-cta{
    max-width: 1550px; margin: 0 auto;
    padding: 70px clamp(16px,3vw,32px) 34px;
    border-top: 1px solid #ECE6E1;
    display: flex; flex-direction: column; align-items: center; gap: 40px;
    text-align: center;
}
.fg-footer .fg-cta-title,
.fg-footer .fg-cta-title span{
    /* !important p/ vencer a regra ".fg-footer *{font-family:DM Sans}" que pegava o <span> */
    font-family: 'The Seasons', serif !important; font-weight: 400;
}
.fg-footer .fg-cta-title{
    font-size: 56px; line-height: 1.05; color: var(--primary-color);
}
.fg-footer .fg-cta-title span{ color: var(--secondary-color); }
.fg-footer .fg-cta-btn{
    display: inline-block; background-color: var(--secondary-color); color: #fff;
    font-size: 15px; font-weight: 500; line-height: 26px; text-decoration: none;
    padding: 10px 30px; border-radius: 40px; transition: background-color .2s ease;
}
.fg-footer .fg-cta-btn:hover{ background-color: #A95A7B; }

/* corpo: 4 colunas */
.fg-footer .fg-foot-body{
    max-width: 1550px; margin: 0 auto;
    padding: 28px clamp(16px,3vw,32px);
    border-top: 1px solid #ECE6E1; border-bottom: 1px solid #ECE6E1;
    display: flex; flex-wrap: wrap; align-items: flex-start;
}
.fg-footer .fg-col{ width: 25%; display: flex; flex-direction: column; gap: 11px; }
.fg-footer .fg-col-brand{ gap: 16px; padding: 0; }
.fg-footer .fg-foot-logo{ width: 198px; height: 50px; display: block; }
.fg-footer .fg-selos{ display: flex; gap: 12px; flex-wrap: wrap; }
.fg-footer .fg-selo{ width: 90px; height: auto; }
.fg-footer .fg-col-title{
    font-size: 13px; font-weight: 500; line-height: 26px; color: var(--primary-color);
    text-transform: uppercase; letter-spacing: .02em;
    /* zera o padding herdado da regra de grid [class*="col-"] (1rem) que desalinhava o título */
    padding: 0; width: auto;
}
.fg-footer .fg-links{ list-style: none; margin: 0; padding: 0; }
.fg-footer .fg-links li{ line-height: 29px; }
.fg-footer .fg-links a{
    font-size: 14.5px; color: #6B7780; text-decoration: none;
    transition: color .2s ease;
}
.fg-footer .fg-links a:hover{ color: var(--secondary-color); }

/* redes sociais */
.fg-footer .fg-social{ list-style: none; margin: 0 0 4px; padding: 0; display: flex; gap: 11px; flex-wrap: wrap; }
.fg-footer .fg-social a{
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid #ECE6E1;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.fg-footer .fg-social svg{ width: 18px; height: 18px; }
.fg-footer .fg-social svg, .fg-footer .fg-social svg path{ fill: var(--primary-color); }
.fg-footer .fg-social a:hover{ background: var(--secondary-color); border-color: var(--secondary-color); transform: scale(1.08); }
.fg-footer .fg-social a:hover svg, .fg-footer .fg-social a:hover svg path{ fill: #fff; }

/* endereço / telefone */
.fg-footer .fg-address{ font-size: 12.5px; line-height: 22px; color: #6B7780; }
.fg-footer .fg-address strong{ color: #6B7780; }
.fg-footer .fg-phone{ color: #6B7780; text-decoration: none; display: inline-flex; align-items: center; margin-top: 6px; font-size: 13.5px; line-height: 1; }
.fg-footer .fg-tel-icon-foot{ display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; width: 15px; height: 15px; margin-right: 7px; line-height: 0; }
.fg-footer .fg-tel-icon-foot svg{ width: 100%; height: 100%; display: block; overflow: visible; }
.fg-footer .fg-tel-icon-foot svg, .fg-footer .fg-tel-icon-foot svg path{ fill: var(--secondary-color); }

/* barra legal */
.fg-footer .fg-legal{
    max-width: 1550px; margin: 0 auto;
    padding: 18px clamp(16px,3vw,32px) 40px;
    display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
/* três colunas iguais: CNPJ esquerda · RT centro real · © direita (igual Fertility) */
.fg-footer .fg-legal span{ flex: 1 1 0; font-size: 12.5px; line-height: 18px; color: #6B7780; }
.fg-footer .fg-legal .fg-legal-cnpj{ text-align: left; }
.fg-footer .fg-legal .fg-legal-rt{ text-align: center; }
/* reserva espaço à direita do © p/ ele não ficar embaixo do WhatsApp flutuante
   (FAB ocupa ~90px do canto direito). Mantém o RT centralizado. */
.fg-footer .fg-legal .fg-legal-copy{ text-align: right; padding-right: 90px; }

/* responsivo */
@media (max-width: 992px){
    .fg-footer .fg-col{ width: 50%; }
}
@media (max-width: 768px){
    .fg-footer .fg-cta-title{ font-size: 38px; }
    .fg-footer .fg-foot-body{ justify-content: center; text-align: center; gap: 28px; }
    .fg-footer .fg-col{ width: 100%; align-items: center; }
    .fg-footer .fg-links a{ justify-content: center; }
    .fg-footer .fg-social{ justify-content: center; }
    .fg-footer .fg-legal{ flex-direction: column; align-items: center; text-align: center; gap: 10px; padding-bottom: 90px; }
    .fg-footer .fg-legal span{ flex: 0 0 auto; width: 100%; }
    .fg-footer .fg-legal .fg-legal-cnpj,
    .fg-footer .fg-legal .fg-legal-rt,
    .fg-footer .fg-legal .fg-legal-copy{ text-align: center; padding-right: 0; }
}

/* Ajustes pós-feedback (rodapé padrão FertGroup) */
/* remove a seta "voltar ao topo" */
.floating-action-buttons-wrapper .back-to-top{ display: none !important; }
/* o wrapper tinha transform: translateX(-50%), que vira "containing block" do position:fixed
   e prendia o WhatsApp ao container centralizado (1080). Neutraliza p/ o fixed valer na viewport. */
.floating-action-buttons-wrapper{ position: static !important; transform: none !important; width: auto !important; max-width: none !important; overflow: visible !important; padding: 0 !important; }
/* WhatsApp fixo no canto inferior direito da viewport — tamanho/posição padrão Fertility */
.floating-action-buttons-wrapper .whatsapp-button{
    position: fixed !important; right: 30px; bottom: 30px; left: auto; top: auto;
    width: 60px !important; height: 60px !important; padding: 0 !important;
    display: flex !important; align-items: center; justify-content: center;
}
.floating-action-buttons-wrapper .whatsapp-button svg{ width: 32px !important; height: 32px !important; }

/* ====================================================================
   Cabeçalho padrão FertGroup (reconstruído do header-fertility, tema custom)
   Barra utilitária (desktop) + header sticky (logo · menu · CTA rosa).
   ==================================================================== */
/* wrapper sem caixa própria: assim o .fg-mainbar gruda (sticky) em relação à PÁGINA
   inteira, não só dentro do header (que é curto). A barra utilitária rola embora. */
.fg-header{ display: contents; }
.fg-header *{ font-family: 'DM Sans', sans-serif; box-sizing: border-box; }

/* Barra utilitária (off-white, só desktop) */
.fg-header .fg-utilbar{ background-color: #F6F8F7; }
.fg-header .fg-utilbar-inner{
    max-width: 1550px; margin: 0 auto; min-height: 38px;
    padding: 4px clamp(16px,3vw,32px);
    display: flex; align-items: center; justify-content: flex-end; gap: 20px;
}
.fg-header .fg-util-links{ display: flex; align-items: center; gap: 15px; }
.fg-header .fg-util-links a{
    font-size: 12.5px; font-weight: 400; color: #6B7780; text-decoration: none;
    transition: color .2s ease;
}
.fg-header .fg-util-links a:hover{ color: var(--secondary-color); }
.fg-header .fg-util-btn-link{
    font-size: 13px; line-height: 26px; font-weight: 500; text-decoration: none;
    padding: 4px 18px; border-radius: 40px;
    color: var(--primary-color); border: 1px solid var(--primary-color);
    background: transparent; transition: background-color .2s ease, color .2s ease;
}
.fg-header .fg-util-btn-link:hover{ background-color: var(--primary-color); color: #fff; }

/* Header principal (branco, sticky) */
.fg-header .fg-mainbar{
    background-color: #fff; border-bottom: 1px solid #F2F2F2;
    position: sticky; top: 0; z-index: 999;
}
.fg-header .fg-mainbar-inner{
    max-width: 1550px; margin: 0 auto;
    padding: 10px clamp(16px,3vw,32px);
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.fg-header .fg-logo{ display: inline-flex; flex: 0 0 auto; }
.fg-header .fg-logo img{ height: 50px; width: auto; display: block; }

/* Menu principal */
.fg-header .fg-mainnav .main-menu{
    list-style: none; margin: 0; padding: 0;
    display: flex; align-items: center; gap: 30px;
}
.fg-header .fg-mainnav .menu-item{ position: relative; }
.fg-header .fg-mainnav .menu-item > a{
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 15px; font-weight: 500; line-height: 24px;
    color: var(--primary-color); text-decoration: none; padding: 6px 0;
    transition: color .2s ease; white-space: nowrap;
}
/* hover + item da PÁGINA ATUAL em rosa.
   ".is-current" é setado por JS (escolhe SÓ 1 item — o que casa melhor com a URL),
   pois as classes do WP (current-menu-item) marcam 2 itens em arquivos de CPT. */
.fg-header .fg-mainnav .menu-item > a:hover,
.fg-header .fg-mainnav .menu-item.is-current > a{ color: var(--secondary-color); }
/* sublinhado animado rosa (estilo V2): aparece no hover e fica fixo no item atual */
.fg-header .fg-mainnav .menu-item > a::after{
    content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
    background: var(--secondary-color); transition: width .25s ease;
}
.fg-header .fg-mainnav .menu-item > a:hover::after,
.fg-header .fg-mainnav .menu-item.is-current > a::after{ width: 100%; }
/* esconde o antigo item verde "Entre em contato" (o CTA agora é o botão à direita) */
.fg-header .fg-mainnav .whatsapp-menu-item{ display: none !important; }
.fg-header .fg-mainnav .menu-item a svg{ display: none; } /* IconWalker: sem ícones no menu do header */

/* Dropdown (submenu) — petróleo/branco, hover rosa (caso a Gerare adicione submenus) */
.fg-header .fg-mainnav .sub-menu{
    position: absolute; top: 100%; left: 0; min-width: 210px; z-index: 1000;
    display: none; list-style: none; margin: 0; padding: 6px 0;
    background-color: var(--primary-color); border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
.fg-header .fg-mainnav .menu-item:hover > .sub-menu{ display: block; }
.fg-header .fg-mainnav .sub-menu .menu-item{ width: 100%; }
.fg-header .fg-mainnav .sub-menu .menu-item > a{
    display: block; color: #fff; padding: 8px 16px; margin: 2px 8px; font-size: 14px; line-height: 29px;
}
.fg-header .fg-mainnav .sub-menu .menu-item > a::after{ display: none; }
.fg-header .fg-mainnav .sub-menu .menu-item > a:hover{
    background-color: var(--secondary-color); color: #fff; border-radius: 5px 20px 5px 20px;
}

/* CTA rosa "Agendar consulta" */
.fg-header .fg-header-cta{
    flex: 0 0 auto; display: inline-block; text-decoration: none;
    background-color: var(--secondary-color); color: #fff;
    font-size: 15px; font-weight: 500; line-height: 26px;
    padding: 10px 30px; border-radius: 40px; transition: background-color .2s ease;
}
.fg-header .fg-header-cta:hover{ background-color: #A95A7B; }

/* Desktop: o colapsável não gera caixa própria (nav e CTA ficam inline na barra) */
.fg-header .fg-collapse{ display: contents; }

/* Botão hambúrguer (oculto no desktop) */
.fg-header .fg-burger{
    display: none; flex: 0 0 auto; cursor: pointer;
    width: 46px; height: 42px; padding: 11px 11px;
    flex-direction: column; justify-content: space-between;
    background: transparent; border: 1px solid var(--secondary-color); border-radius: 6px;
}
.fg-header .fg-burger span{
    display: block; width: 100%; height: 2px; border-radius: 2px;
    background: var(--secondary-color); transition: transform .25s ease, opacity .25s ease;
}
.fg-header.is-open .fg-burger span:nth-child(1){ transform: translateY(9px) rotate(45deg); }
.fg-header.is-open .fg-burger span:nth-child(2){ opacity: 0; }
.fg-header.is-open .fg-burger span:nth-child(3){ transform: translateY(-9px) rotate(-45deg); }

/* Tablet/Mobile: hambúrguer + menu em dropdown */
@media (max-width: 1024px){
    .fg-header .fg-utilbar{ display: none; }
    .fg-header .fg-burger{ display: flex; }
    .fg-header .fg-mainbar-inner{ justify-content: space-between; gap: 12px; }

    /* painel petróleo + texto branco (padrão FertGroup/Fertility) */
    .fg-header .fg-collapse{
        display: block; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--primary-color); border-radius: 0 0 16px 16px;
        box-shadow: 0 12px 24px rgba(0,0,0,.18);
        max-height: 0; overflow: hidden; transition: max-height .3s ease;
    }
    .fg-header.is-open .fg-collapse{ max-height: 85vh; overflow-y: auto; }

    .fg-header .fg-mainnav .main-menu{ flex-direction: column; align-items: stretch; gap: 0; }
    .fg-header .fg-mainnav .menu-item{ border-bottom: 1px solid rgba(255,255,255,.10); }
    .fg-header .fg-mainnav .menu-item > a{
        display: block; padding: 15px clamp(16px,5vw,28px); font-size: 16px; white-space: normal;
        color: #fff;
    }
    .fg-header .fg-mainnav .menu-item > a::after{ display: none; } /* sem sublinhado animado no mobile */
    /* tap/ativo: rosa */
    .fg-header .fg-mainnav .menu-item > a:hover,
    .fg-header .fg-mainnav .menu-item > a:focus{ background: var(--secondary-color); color: #fff; }
    /* submenu sempre aberto no mobile (sem hover) */
    .fg-header .fg-mainnav .sub-menu{
        position: static; display: block; box-shadow: none; background: transparent;
        padding: 0 0 6px;
    }
    .fg-header .fg-mainnav .sub-menu .menu-item > a{ color: rgba(255,255,255,.85); padding-left: clamp(28px,8vw,44px); }
    .fg-header .fg-mainnav .sub-menu .menu-item > a:hover{ background: var(--secondary-color); color: #fff; }

    /* CTA "Agendar consulta" — botão rosa full-width no rodapé do painel (igual Fertility) */
    .fg-header .fg-header-cta{
        display: block; text-align: center;
        margin: 16px clamp(16px,5vw,28px) 22px; padding: 14px 30px; font-size: 15px;
    }
}
