/* =========================================
   RESET / BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
a { text-decoration: none; }

/* =========================================
   TOKENS
   ========================================= */
:root {
    --laranja-500: #e96913;
    --laranja-200: #f7ccb0;
    --laranja-100: #fff3eb;
    --azul-600:    #114fbf;
    --azul-500:    #1c61de;
    --azul-100:    #ebf2ff;
    --aquarema-dark:   #3a2821;
    --aquarema-gold:   #96946e;
    --bellacqua-cyan:  #0094b2;
    --bellacqua-bg:    #e8dfd6;
    --bellacqua-orange:#f89261;
    --diamante-dark:   #3a3a3a;
    --diamante-gold:   #9e9455;
    --texto-primario:  #403f46;
    --font-inter:      'Inter', sans-serif;
    --font-belleza:    'Belleza', sans-serif;
    --font-montserrat: 'Montserrat', sans-serif;
    --font-rajdhani:   'Rajdhani', sans-serif;
}

/* =========================================
   BOTÕES
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    padding: 12px 24px;
    border-radius: 4px;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
}
.btn--blue-dark    { background: var(--azul-600);        color: var(--azul-100); }
.btn--blue         { background: var(--azul-500);        color: var(--azul-100); }
.btn--aquarema-gold{ background: var(--aquarema-gold);   color: var(--azul-100); }
.btn--bellacqua-orange { background: var(--bellacqua-orange); color: var(--azul-100); }
.btn--diamante-gold{ background: var(--diamante-gold);   color: var(--azul-100); }

/* =========================================
   SITE HEADER
   ========================================= */
.site-header {
    background-color: var(--laranja-500);
    width: 100%;
}
.site-header__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 17px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header__logo img {
    width: 198px;
    height: 54px;
    object-fit: contain;
}
.site-header__nav { display: flex; align-items: center; }
.site-header__menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 69px;
}
.site-header__menu li a {
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
}
.site-header__menu li a:hover { text-decoration: underline; }

/* Hambúrguer — oculto no desktop */
.site-header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
}
.site-header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}
.site-header__hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.site-header__hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.site-header__hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   HERO
   ========================================= */
.home-hero {
    position: relative;
    height: 540px;
    overflow: hidden;
}
.home-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-hero__content {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 107px 64px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}
.home-hero__title {
    font-family: var(--font-inter);
    font-size: 41px;
    font-weight: 600;
    color: var(--laranja-100);
    line-height: 1.2;
    max-width: 386px;
}

/* =========================================
   SOBRE
   ========================================= */
.home-sobre {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}
.home-sobre__shape {
    position: absolute;
    left: 0;
    top: 0;
    width: 840px;
    height: 800px;
    object-fit: fill;
    pointer-events: none;
}
.home-sobre__inner {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 64px 0;
    display: flex;
    align-items: flex-start;
    gap: 48px;
}
.home-sobre__left {
    flex: 0 0 55%;
}
.home-sobre__photo {
    width: 100%;
    height: 304px;
    object-fit: cover;
    display: block;
}
.home-sobre__right {
    flex: 1;
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}
.home-sobre__title {
    font-family: var(--font-inter);
    font-size: 28px;
    font-weight: 600;
    color: var(--laranja-500);
    line-height: 1.3;
}
.home-sobre__text {
    font-family: var(--font-inter);
    font-size: 20px;
    font-weight: 400;
    color: var(--texto-primario);
    line-height: 1.5;
}

/* =========================================
   QUOTE
   ========================================= */
.home-quote {
    background-color: #fff;
    padding: 80px 64px;
}
.home-quote__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.home-quote__box {
    border: 2px solid var(--laranja-200);
    border-radius: 32px;
    padding: 34px 92px;
    max-width: 1022px;
    width: 100%;
    text-align: center;
}
.home-quote__box p {
    font-family: var(--font-inter);
    font-size: 34px;
    font-weight: 600;
    color: var(--laranja-500);
    line-height: 1.3;
}

/* =========================================
   EMPREENDIMENTO BANNER
   ========================================= */
.emp-banner {
    position: relative;
    height: 654px;
    overflow: hidden;
}
.emp-banner__content {
    position: absolute;
    left: 0;
    top: 77px;
    width: 634px;
    height: 494px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 60px 64px;
    background: inherit;
}
.emp-banner__photo {
    position: absolute;
    left: calc(16.67% + 23px);
    top: 0;
    width: 1440px;
    height: 654px;
    overflow: hidden;
}
.emp-banner__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Variantes de cor */
.emp-banner--aquarema  { background: var(--aquarema-dark); }
.emp-banner--bellacqua { background: var(--bellacqua-cyan); }
.emp-banner--diamante  { background: var(--diamante-dark); }

.emp-banner__title {
    font-size: 41px;
    font-weight: 400;
    line-height: 1.25;
}
.emp-banner__title--belleza    { font-family: var(--font-belleza); }
.emp-banner__title--montserrat { font-family: var(--font-montserrat); font-weight: 700; }

.emp-banner--aquarema  .emp-banner__title { color: var(--aquarema-gold); }
.emp-banner--bellacqua .emp-banner__title { color: #fff; }
.emp-banner--diamante  .emp-banner__title { color: var(--diamante-gold); }
.emp-banner--diamante  .emp-banner__title-white { color: #fff; }

.emp-banner__text {
    font-family: var(--font-montserrat);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    max-width: 381px;
}
.emp-banner--aquarema  .emp-banner__text { color: #e8dfd6; }
.emp-banner--bellacqua .emp-banner__text { color: #fff; }
.emp-banner--diamante  .emp-banner__text { color: #fff; }

/* =========================================
   EMPREENDIMENTO GALLERY
   ========================================= */
.emp-gallery {
    position: relative;
    height: 846px;
    overflow: hidden;
}
.emp-gallery--aquarema  { background: var(--bellacqua-bg); }
.emp-gallery--bellacqua { background: var(--laranja-100); height: 905px; }
.emp-gallery--diamante  { background: var(--laranja-100); height: 950px; }

.emp-gallery--bellacqua .emp-gallery__panel { height: 683px; }
.emp-gallery--diamante  .emp-gallery__panel { height: 700px; }

.emp-gallery__photo {
    position: absolute;
    left: 59px;
    top: 98px;
    width: 1118px;
    height: 629px;
    overflow: hidden;
}
.emp-gallery__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.emp-gallery__panel {
    position: absolute;
    left: calc(41.67% + 92px);
    top: 222px;
    width: 684px;
    height: 624px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 48px 56px;
}
.emp-gallery__panel--aquarema  { background: var(--aquarema-dark); }
.emp-gallery__panel--bellacqua { background: var(--bellacqua-cyan); }
.emp-gallery__panel--diamante  { background: var(--diamante-dark); }

.emp-gallery__title {
    font-size: 41px;
    font-weight: 400;
    line-height: 1.25;
}
.emp-gallery__title--belleza    { font-family: var(--font-belleza); }
.emp-gallery__title--montserrat { font-family: var(--font-montserrat); font-weight: 700; }

.emp-gallery__panel--aquarema  .emp-gallery__title { color: var(--aquarema-gold); }
.emp-gallery__panel--bellacqua .emp-gallery__title { color: #fff; }
.emp-gallery__panel--diamante  .emp-gallery__title { color: var(--diamante-gold); }

.emp-gallery__lead {
    font-family: var(--font-montserrat);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--laranja-100);
}
.emp-gallery__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.emp-gallery__list li {
    display: flex;
    align-items: center;
    gap: 16px;
}
.emp-gallery__list li img {
    flex-shrink: 0;
}
.emp-gallery__list li span {
    font-family: var(--font-montserrat);
    font-size: 20px;
    font-weight: 400;
    color: var(--laranja-100);
    line-height: 1.4;
}

/* =========================================
   CARDS — ÚLTIMOS EMPREENDIMENTOS
   ========================================= */
.home-cards {
    background-color: var(--laranja-100);
    padding: 80px 10px;
}
.home-cards__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.home-cards__title {
    font-family: var(--font-inter);
    font-size: 41px;
    font-weight: 700;
    color: var(--laranja-500);
    white-space: nowrap;
}
.home-cards__grid {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.emp-card {
    width: 421px;
    display: flex;
    flex-direction: column;
}
.emp-card__media {
    aspect-ratio: 16/9;
    overflow: hidden;
}
.emp-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.emp-card__body {
    background: var(--laranja-500);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.emp-card__name {
    font-family: var(--font-inter);
    font-size: 20px;
    font-weight: 600;
    color: var(--laranja-100);
}
.emp-card__desc {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 400;
    color: var(--laranja-200);
    line-height: 1.4;
}
.emp-card__btn {
    background: var(--azul-500);
    color: var(--azul-100);
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 0 0 4px 4px;
    text-align: center;
    align-self: flex-start;
}
.emp-card__btn:hover { background: var(--azul-600); }

/* =========================================
   CONHEÇA A CELESTE — HERO
   ========================================= */
.cc-hero {
    position: relative;
    height: 540px;
    overflow: hidden;
}
.cc-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cc-hero__content {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 107px 64px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.cc-hero__title {
    font-family: var(--font-inter);
    font-size: 41px;
    font-weight: 600;
    color: var(--laranja-100);
    line-height: 1.2;
    max-width: 445px;
}
.cc-hero__subtitle {
    font-family: var(--font-inter);
    font-size: 20px;
    font-weight: 400;
    color: var(--laranja-100);
    line-height: 1.5;
    max-width: 377px;
}

/* =========================================
   CONHEÇA A CELESTE — TRAJETÓRIA
   ========================================= */
.cc-trajetoria {
    background-color: #fff;
    padding: 80px 64px;
}
.cc-trajetoria__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.cc-trajetoria__photo {
    width: 533px;
    height: 400px;
    object-fit: cover;
    flex-shrink: 0;
}
.cc-trajetoria__texts {
    width: 651px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.cc-trajetoria__title {
    font-family: var(--font-inter);
    font-size: 28px;
    font-weight: 600;
    color: var(--laranja-500);
    line-height: 1.3;
    max-width: 450px;
}
.cc-trajetoria__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: var(--font-inter);
    font-size: 20px;
    font-weight: 400;
    color: var(--texto-primario);
    line-height: 1.5;
}

/* =========================================
   CONHEÇA A CELESTE — NOSSOS PILARES
   ========================================= */
.cc-pilares {
    position: relative;
    padding: 80px 64px;
    overflow: hidden;
}
.cc-pilares__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.cc-pilares__inner {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}
.cc-pilares__title {
    font-family: var(--font-inter);
    font-size: 41px;
    font-weight: 600;
    color: var(--laranja-100);
    text-align: center;
    max-width: 837px;
    line-height: 1.2;
}
.cc-pilares__cards {
    display: flex;
    gap: 24px;
    align-items: stretch;
    width: 100%;
}
.cc-pilar {
    flex: 1;
    background: var(--laranja-500);
    border-radius: 24px;
    box-shadow: 0px 16px 8px rgba(77, 31, 0, 0.25);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.cc-pilar__header {
    display: flex;
    align-items: center;
    gap: 24px;
}
.cc-pilar__icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    object-fit: contain;
}
.cc-pilar__name {
    font-family: var(--font-inter);
    font-size: 28px;
    font-weight: 600;
    color: var(--laranja-100);
    line-height: 1.3;
}
.cc-pilar__text {
    font-family: var(--font-inter);
    font-size: 20px;
    font-weight: 400;
    color: var(--laranja-100);
    line-height: 1.5;
}

/* =========================================
   CONHEÇA A CELESTE — CONSTRUINDO LEGADOS
   ========================================= */
.cc-legados {
    background-color: #fff;
    padding: 80px 64px;
}
.cc-legados__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cc-legados__card {
    width: 1000px;
    border: 3px solid #f2aa79;
    border-radius: 40px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.cc-legados__title {
    font-family: var(--font-inter);
    font-size: 34px;
    font-weight: 600;
    color: var(--laranja-500);
    text-align: center;
    line-height: 1.2;
}
.cc-legados__text {
    font-family: var(--font-inter);
    font-size: 20px;
    font-weight: 400;
    color: var(--texto-primario);
    line-height: 1.5;
}

/* =========================================
   CONHEÇA A CELESTE — CTA BANNER
   ========================================= */
.cc-cta {
    background-color: var(--laranja-500);
    height: 245px;
    overflow: visible;
}
.cc-cta__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}
.cc-cta__photo {
    width: 424px;
    height: 345px;
    object-fit: cover;
    object-position: top;
    flex-shrink: 0;
    margin-top: -100px;
}
.cc-cta__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.cc-cta__title {
    font-family: var(--font-inter);
    font-size: 34px;
    font-weight: 600;
    color: var(--laranja-100);
    line-height: 1.2;
    max-width: 547px;
}
.cc-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: #114fbf;
    color: #ebf2ff;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    align-self: flex-start;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.cc-cta__btn:hover {
    opacity: 0.9;
}

/* =========================================
   FALE CONOSCO — CANAIS (TÍTULO)
   ========================================= */
.fc-canais {
    background-color: #fff;
    padding: 56px 64px 40px;
    text-align: center;
}
.fc-canais__title {
    font-family: var(--font-inter);
    font-size: 41px;
    font-weight: 600;
    color: var(--laranja-500);
    line-height: 1.2;
}

/* =========================================
   FALE CONOSCO — CONTATO + FORMULÁRIO
   ========================================= */
.fc-contato {
    display: flex;
    align-items: stretch;
}

/* Coluna esquerda — laranja */
.fc-contato__info {
    flex: 1;
    background-color: var(--laranja-500);
    padding: 64px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.fc-contato__pessoa {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 297px;
    height: auto;
    object-fit: contain;
    object-position: bottom right;
    pointer-events: none;
}
.fc-contato__info-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 1;
    max-width: 506px;
}
.fc-contato__title {
    font-family: var(--font-inter);
    font-size: 32px;
    font-weight: 600;
    color: var(--laranja-100);
    line-height: 1.3;
    max-width: 366px;
}
.fc-contato__text {
    font-family: var(--font-inter);
    font-size: 20px;
    font-weight: 400;
    color: var(--laranja-100);
    line-height: 1.5;
}
.fc-contato__detalhes {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.fc-contato__nome {
    font-family: var(--font-inter);
    font-size: 20px;
    font-weight: 400;
    color: var(--laranja-100);
    line-height: 1.6;
}
.fc-contato__nome strong {
    font-weight: 700;
}
.fc-contato__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-inter);
    font-size: 20px;
    font-weight: 400;
    color: var(--laranja-100);
    line-height: 1.6;
    text-decoration: none;
}
.fc-contato__item:hover {
    text-decoration: underline;
}
.fc-contato__icon {
    flex-shrink: 0;
}

/* Coluna direita — formulário */
.fc-contato__form-wrap {
    flex: 1;
    padding: 64px;
    display: flex;
    flex-direction: column;
    gap: 45px;
    background-color: #fff;
}
.fc-contato__form-title {
    font-family: var(--font-inter);
    font-size: 32px;
    font-weight: 600;
    color: var(--laranja-500);
    line-height: 1.3;
    max-width: 321px;
}
.fc-contato__form {
    width: 100%;
}
.fc-contato__campos {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}
.fc-contato__campo {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--laranja-200);
    border-radius: 8px;
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--texto-primario);
    background: #fff;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.fc-contato__campo::placeholder {
    color: #75737f;
}
.fc-contato__campo:focus {
    border-color: var(--laranja-500);
}
.fc-contato__campo--select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2375737f' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}
.fc-contato__campo--textarea {
    height: 300px;
    resize: vertical;
}
.fc-contato__btn {
    padding: 12px 24px;
    background-color: #114fbf;
    color: #ebf2ff;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.fc-contato__btn:hover {
    opacity: 0.9;
}

/* =========================================
   FALE CONOSCO — ONDE ESTAMOS
   ========================================= */
.fc-onde {
    display: flex;
    align-items: stretch;
}
.fc-onde__mapa {
    flex: 1;
    min-width: 0;
    object-fit: cover;
    display: block;
    max-height: 408px;
}
.fc-onde__info {
    background-color: var(--laranja-500);
    padding: 64px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: var(--laranja-100);
    flex-shrink: 0;
    width: 402px;
}
.fc-onde__title {
    font-family: var(--font-inter);
    font-size: 32px;
    font-weight: 600;
    color: var(--laranja-100);
    line-height: 1.3;
}
.fc-onde__endereco,
.fc-onde__horario {
    display: flex;
    flex-direction: column;
    gap: 0;
    font-family: var(--font-inter);
    font-size: 20px;
    font-weight: 400;
    color: var(--laranja-100);
    line-height: 1.6;
}
.fc-onde__endereco strong,
.fc-onde__horario strong {
    font-weight: 700;
}

/* =========================================
   AQUAREMA — PÁGINA INTERNA
   ========================================= */

/* Tokens exclusivos Aquarema */
:root {
    --aq-marrom:  #3a2821;
    --aq-dourado: #96946e;
    --aq-creme:   #fff3eb;
    --aq-creme2:  #e8dfd6;
}

/* ── Hero ─────────────────────────────────────────────────────────── */
.aq-hero {
    position: relative;
    width: 100%;
    height: 654px;
    overflow: hidden;
}
.aq-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.aq-hero__overlay {
    position: absolute;
    top: 160px;
    left: 64px;
    width: 634px;
    height: 494px;
    background: var(--aq-marrom);
    z-index: 1;
}
.aq-hero__content {
    position: absolute;
    top: 211px;
    left: calc(8.33% + 31px);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 570px;
}
.aq-hero__title {
    font-family: var(--font-belleza);
    font-weight: 400;
    font-size: 41px;
    color: var(--aq-dourado);
    line-height: 1.2;
    max-width: 340px;
}
.aq-hero__subtitle {
    font-family: var(--font-montserrat);
    font-size: 20px;
    color: var(--aq-creme2);
    line-height: 1.5;
    max-width: 403px;
}

/* ── Benefícios strip ─────────────────────────────────────────────── */
.aq-beneficios {
    background: var(--aq-dourado);
    padding: 24px 36px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}
.aq-beneficios__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}
.aq-beneficios__icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}
.aq-beneficios__text {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    color: var(--aq-creme);
    line-height: 1.3;
    max-width: 160px;
}

/* ── Intro ────────────────────────────────────────────────────────── */
.aq-intro {
    background: var(--aq-creme);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.aq-intro__inner {
    display: flex;
    flex-direction: row;
    gap: 112px;
    align-items: flex-start;
}
.aq-intro__photo {
    width: 755px;
    height: 468px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 4px;
}
.aq-intro__col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 534px;
}
.aq-intro__title {
    font-family: var(--font-belleza);
    font-weight: 400;
    font-size: 41px;
    color: var(--aq-dourado);
    line-height: 1.2;
}
.aq-intro__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.aq-intro__body p {
    font-family: var(--font-montserrat);
    font-size: 20px;
    color: var(--texto-primario);
    line-height: 1.6;
}
.aq-intro__stats {
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    border-radius: 12px;
    padding: 36px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.aq-intro__stat {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 120px;
}
.aq-intro__stat-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.aq-intro__stat-text {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    color: var(--aq-marrom);
    line-height: 1.4;
}

/* ── Lazer ────────────────────────────────────────────────────────── */
.aq-lazer {
    background: var(--aq-marrom);
    padding: 80px 64px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}
.aq-lazer__col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 534px;
}
.aq-lazer__title {
    font-family: var(--font-belleza);
    font-weight: 400;
    font-size: 41px;
    color: var(--aq-dourado);
    line-height: 1.2;
}
.aq-lazer__text {
    font-family: var(--font-montserrat);
    font-size: 20px;
    color: var(--aq-creme);
    line-height: 1.6;
}
.aq-lazer__photo {
    width: 755px;
    height: 468px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 4px;
}

/* ── Complexo Aquático ────────────────────────────────────────────── */
.aq-complexo {
    padding: 80px 64px;
}
.aq-complexo__slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.aq-complexo__slide {
    display: none;
}
.aq-complexo__slide--active {
    display: block;
    position: relative;
}
.aq-complexo__slide-img {
    width: 100%;
    height: 739px;
    object-fit: cover;
    display: block;
}
.aq-complexo__slide-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 220px;
    background: linear-gradient(to right, #3a2821 0%, rgba(58,40,33,0) 100%);
    pointer-events: none;
}
.aq-complexo__slide-content {
    position: absolute;
    bottom: 40px;
    left: 51px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    line-height: normal;
}
.aq-complexo__slide-title {
    font-family: var(--font-belleza);
    font-size: 41px;
    color: var(--aq-dourado);
    line-height: 1.2;
}
.aq-complexo__slide-text {
    font-family: var(--font-montserrat);
    font-size: 20px;
    font-weight: 400;
    color: var(--aq-creme);
    line-height: 1.5;
    max-width: 534px;
}
.aq-complexo__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 69px;
    height: 98px;
    background: var(--aq-dourado);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: opacity 0.2s;
}
.aq-complexo__btn:hover { opacity: 0.85; }
.aq-complexo__btn--prev { left: 0; }
.aq-complexo__btn--next { right: 0; }

/* ── Galeria ──────────────────────────────────────────────────────── */
.aq-galeria {
    padding: 80px 64px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.aq-galeria__text-card {
    background: var(--aq-marrom);
    padding: 72px 50px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    aspect-ratio: 1 / 1;
}
.aq-galeria__text-title {
    font-family: var(--font-belleza);
    font-size: 41px;
    color: var(--aq-dourado);
    line-height: 1.25;
    max-width: 280px;
}
.aq-galeria__text-sub {
    font-family: var(--font-montserrat);
    font-size: 20px;
    color: var(--aq-creme);
    line-height: 1.5;
    max-width: 313px;
}
.aq-galeria__item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
.aq-galeria__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.aq-galeria__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px 24px;
    background: linear-gradient(to top, rgba(58,40,33,0.85) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
}
.aq-galeria__caption {
    font-family: var(--font-belleza);
    font-weight: 400;
    font-size: 32px;
    color: #fff;
    line-height: 1.2;
}

/* ── Carrossel Natureza ───────────────────────────────────────────── */
.aq-natureza {
    padding: 80px 64px;
}
.aq-natureza__slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.aq-natureza__slide {
    display: none;
}
.aq-natureza__slide--active {
    display: block;
    position: relative;
}
.aq-natureza__slide-img {
    width: 100%;
    height: 739px;
    object-fit: cover;
    display: block;
}
.aq-natureza__slide-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 220px;
    background: linear-gradient(to right, #3a2821 0%, rgba(58,40,33,0) 100%);
    pointer-events: none;
}
.aq-natureza__slide-content {
    position: absolute;
    bottom: 40px;
    left: 51px;
    line-height: normal;
}
.aq-natureza__slide-caption {
    font-family: var(--font-belleza);
    font-size: 41px;
    color: var(--aq-dourado);
    line-height: 1.2;
}
.aq-natureza__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 69px;
    height: 98px;
    background: var(--aq-dourado);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: opacity 0.2s;
}
.aq-natureza__btn:hover { opacity: 0.85; }
.aq-natureza__btn--prev { left: 0; }
.aq-natureza__btn--next { right: 0; }

/* ── Infraestrutura ───────────────────────────────────────────────── */
.aq-infra {
    background: var(--aq-creme);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}
.aq-infra__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}
.aq-infra__title {
    font-family: var(--font-belleza);
    font-weight: 400;
    font-size: 41px;
    color: var(--aq-dourado);
    line-height: 1.2;
}
.aq-infra__text {
    font-family: var(--font-montserrat);
    font-size: 20px;
    color: var(--aq-marrom);
    line-height: 1.6;
    max-width: 893px;
    text-align: center;
}
.aq-infra__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}
.aq-infra__card-wrap {
    display: flex;
    flex-direction: column;
}
.aq-infra__card-photo {
    width: 100%;
    height: 247px;
    object-fit: cover;
    border-radius: 4px 4px 0 0;
}
.aq-infra__card {
    background: var(--aq-dourado);
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    border-radius: 0 0 4px 4px;
}
.aq-infra__card-title {
    font-family: var(--font-belleza);
    font-weight: 400;
    font-size: 24px;
    color: var(--aq-creme);
    line-height: 1.2;
}
.aq-infra__card-desc {
    font-family: var(--font-montserrat);
    font-size: 14px;
    color: var(--aq-marrom);
    line-height: 1.5;
}
.aq-infra__quote {
    font-family: var(--font-belleza);
    font-weight: 400;
    font-size: 32px;
    color: var(--aq-dourado);
    line-height: 1.4;
    max-width: 685px;
    text-align: center;
}

/* ── Planta ───────────────────────────────────────────────────────── */
.aq-planta {
    background: #fff;
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 58px;
}
.aq-planta__top {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
    width: 100%;
}
.aq-planta__title {
    font-family: var(--font-belleza);
    font-weight: 400;
    font-size: 41px;
    color: var(--aq-dourado);
    line-height: 1.2;
    max-width: 370px;
    flex-shrink: 0;
    text-align: center;
}
.aq-planta__texts {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 750px;
}
.aq-planta__texts p {
    font-family: var(--font-montserrat);
    font-size: 20px;
    color: var(--aq-marrom);
    line-height: 1.6;
}
.aq-planta__middle {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
    width: 100%;
}
.aq-planta__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}
.aq-planta__card {
    background: var(--aq-marrom);
    padding: 16px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.aq-planta__card-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}
.aq-planta__card-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}
.aq-planta__card-title {
    font-family: var(--font-belleza);
    font-weight: 400;
    font-size: 20px;
    color: var(--aq-creme);
    line-height: 1.3;
}
.aq-planta__card-desc {
    font-family: var(--font-montserrat);
    font-size: 14px;
    color: var(--aq-creme);
    line-height: 1.5;
}
.aq-planta__cards .btn {
    margin-top: 24px;
    align-self: flex-start;
}
.aq-planta__img {
    width: 798px;
    height: 843px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 4px;
}
.aq-planta__banner {
    background: var(--aq-creme);
    padding: 32px;
    width: 749px;
    display: flex;
    justify-content: center;
}
.aq-planta__banner-text {
    font-family: var(--font-belleza);
    font-weight: 400;
    font-size: 32px;
    color: var(--aq-dourado);
    max-width: 685px;
    text-align: center;
    line-height: 1.4;
}

/* ── Localização ──────────────────────────────────────────────────── */
.aq-localizacao {
    background: var(--aq-marrom);
    padding: 64px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}
.aq-localizacao__lista {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 534px;
}
.aq-localizacao__item {
    font-family: var(--font-belleza);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.3;
}
.aq-localizacao__cidade {
    color: var(--aq-dourado);
}
.aq-localizacao__dist {
    color: var(--aq-creme);
}
.aq-localizacao__photo {
    width: 755px;
    height: 468px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 4px;
}

/* ── Proximidade ──────────────────────────────────────────────────── */
.aq-proximidade {
    background: var(--aq-marrom);
    padding: 80px 64px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}
.aq-proximidade__col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 421px;
}
.aq-proximidade__title {
    font-family: var(--font-belleza);
    font-weight: 400;
    font-size: 41px;
    color: var(--aq-dourado);
    line-height: 1.2;
}
.aq-proximidade__text {
    font-family: var(--font-montserrat);
    font-size: 20px;
    color: var(--aq-creme);
    line-height: 1.6;
}
.aq-proximidade__photo {
    width: 902px;
    height: 557px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 4px;
}

/* =========================================
   BREADCRUMBS
   ========================================= */
.breadcrumbs {
    background: var(--laranja-100);
    border-bottom: 1px solid var(--laranja-200);
}
.breadcrumbs__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 12px 64px;
}
.breadcrumbs__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.breadcrumbs__link {
    font-family: var(--font-inter);
    font-size: 13px;
    font-weight: 600;
    color: var(--laranja-500);
    transition: opacity 0.15s;
}
.breadcrumbs__link:hover { opacity: 0.75; }
.breadcrumbs__sep {
    font-family: var(--font-inter);
    font-size: 13px;
    color: var(--texto-primario);
    opacity: 0.4;
}
.breadcrumbs__current {
    font-family: var(--font-inter);
    font-size: 13px;
    color: var(--texto-primario);
    opacity: 0.7;
}

/* =========================================
   POLÍTICA DE PRIVACIDADE
   ========================================= */
.politica-conteudo {
    background: #fff;
    padding: 80px 64px 96px;
}
.politica-conteudo__inner {
    max-width: 1440px;
    margin: 0 auto;
}
.politica-conteudo__titulo {
    font-family: var(--font-belleza);
    font-weight: 400;
    font-size: 48px;
    color: var(--laranja-500);
    line-height: 1.2;
    margin-bottom: 40px;
}
.politica-conteudo__inner h2 {
    font-family: var(--font-belleza);
    font-weight: 400;
    font-size: 28px;
    color: var(--laranja-500);
    margin: 40px 0 16px;
    line-height: 1.3;
}
.politica-conteudo__inner h3 {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 18px;
    color: var(--texto-primario);
    margin: 28px 0 12px;
}
.politica-conteudo__inner p {
    font-family: var(--font-inter);
    font-size: 16px;
    color: var(--texto-primario);
    line-height: 1.75;
    margin-bottom: 16px;
}
.politica-conteudo__inner ul,
.politica-conteudo__inner ol {
    font-family: var(--font-inter);
    font-size: 16px;
    color: var(--texto-primario);
    line-height: 1.75;
    margin: 0 0 16px 24px;
    list-style: disc;
}
.politica-conteudo__inner ol { list-style: decimal; }
.politica-conteudo__inner a {
    color: var(--laranja-500);
    text-decoration: underline;
}
.politica-conteudo__inner strong { font-weight: 700; }

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
    border-top: 3px solid var(--laranja-500);
    padding: 20px 64px;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.cookie-banner__text {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--texto-primario);
    line-height: 1.6;
    flex: 1;
}
.cookie-banner__link {
    color: var(--laranja-500);
    text-decoration: underline;
    font-weight: 600;
}
.cookie-banner__btn {
    flex-shrink: 0;
    border: none;
}

/* =========================================
   SITE FOOTER
   ========================================= */
.site-footer { background-color: var(--laranja-500); }
.site-footer__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 32px 64px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
}
.site-footer__logo img { width: 140px; height: 38px; object-fit: contain; }
.site-footer__links { display: flex; flex-direction: column; gap: 12px; white-space: nowrap; }
.site-footer__links a {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 700;
    color: var(--laranja-100);
}
.site-footer__links a:hover { text-decoration: underline; }
.site-footer__info { display: flex; flex-direction: column; gap: 24px; white-space: nowrap; }
.site-footer__info-title {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}
.site-footer__info-text {
    font-family: var(--font-inter);
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    line-height: normal;
}
.site-footer__info-text strong { font-weight: 700; }
.site-footer__social { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.site-footer__social-label {
    font-family: var(--font-inter);
    font-size: 12px;
    color: #fff;
    width: 105px;
    text-align: right;
}
.site-footer__social img { width: 132px; height: 24px; object-fit: contain; }

/* =========================================
   COPYRIGHT
   ========================================= */
.home-copyright {
    background: #fff;
}
.home-copyright__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.home-copyright__text {
    font-family: var(--font-rajdhani);
    font-size: 16px;
    font-weight: 300;
    color: #282828;
    line-height: 1.2;
}
.home-copyright__text strong {
    font-weight: 600;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
   ========================================= */

/* ── 1200px — Telas intermediárias ───────────────────────────────── */
@media (max-width: 1200px) {

    /* Breadcrumbs */
    .breadcrumbs__inner { padding: 10px 32px; }

    /* Política */
    .politica-conteudo { padding: 48px 32px 72px; }

    /* Cookie banner */
    .cookie-banner { padding: 16px 32px; }

    /* Header */
    .site-header__inner {
        padding: 14px 32px;
    }
    .site-header__menu {
        gap: 36px;
    }

    /* Hero home */
    .home-hero__content {
        padding: 80px 32px 0;
    }

    /* Sobre */
    .home-sobre__inner {
        padding: 48px 32px 0;
        gap: 32px;
    }

    /* Quote */
    .home-quote {
        padding: 64px 32px;
    }
    .home-quote__box {
        padding: 28px 48px;
    }
    .home-quote__box p {
        font-size: 28px;
    }

    /* Emp banner */
    .emp-banner__content {
        width: 520px;
        padding: 48px 32px;
    }
    .emp-banner__photo {
        left: calc(16.67% + 10px);
    }

    /* Emp gallery */
    .emp-gallery__photo {
        left: 32px;
        width: 900px;
    }
    .emp-gallery__panel {
        left: auto;
        right: 0;
        width: 540px;
    }

    /* Home cards */
    .home-cards {
        padding: 64px 24px;
    }
    .emp-card {
        width: 360px;
    }

    /* Footer */
    .site-footer__inner {
        padding: 32px 32px;
        gap: 40px;
    }

    /* Copyright */
    .home-copyright__inner {
        padding: 0 32px;
    }

    /* CC hero */
    .cc-hero__content {
        padding: 80px 32px 0;
    }

    /* CC trajetória */
    .cc-trajetoria {
        padding: 64px 32px;
    }
    .cc-trajetoria__photo {
        width: 420px;
        height: 320px;
    }
    .cc-trajetoria__texts {
        width: auto;
        flex: 1;
    }

    /* CC pilares */
    .cc-pilares {
        padding: 64px 32px;
    }

    /* CC legados */
    .cc-legados {
        padding: 64px 32px;
    }
    .cc-legados__card {
        width: 100%;
        max-width: 900px;
    }

    /* CC CTA */
    .cc-cta__inner {
        gap: 40px;
        padding: 0 32px;
    }
    .cc-cta__photo {
        width: 320px;
        height: 260px;
        margin-top: -60px;
    }

    /* FC */
    .fc-canais {
        padding: 48px 32px 32px;
    }
    .fc-contato__info,
    .fc-contato__form-wrap {
        padding: 48px 32px;
    }
    .fc-onde__info {
        padding: 48px 32px;
        width: 340px;
    }

    /* AQ hero */
    .aq-hero {
        height: 560px;
    }
    .aq-hero__overlay {
        left: 32px;
        width: 520px;
    }
    .aq-hero__content {
        left: 48px;
        top: 190px;
    }

    /* AQ intro */
    .aq-intro {
        padding: 64px 32px;
    }
    .aq-intro__inner {
        gap: 48px;
    }
    .aq-intro__photo {
        width: 520px;
        height: 360px;
    }

    /* AQ lazer */
    .aq-lazer {
        padding: 64px 32px;
        gap: 40px;
    }
    .aq-lazer__photo {
        width: 520px;
        height: 360px;
    }

    /* AQ galeria */
    .aq-galeria {
        padding: 64px 32px 0;
    }

    /* AQ infra */
    .aq-infra {
        padding: 64px 32px;
    }
    .aq-infra__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* AQ planta */
    .aq-planta {
        padding: 64px 32px;
    }
    .aq-planta__img {
        width: 560px;
        height: auto;
    }
    .aq-planta__banner {
        width: 100%;
    }

    /* AQ localizacao */
    .aq-localizacao {
        padding: 48px 32px;
        gap: 40px;
    }
    .aq-localizacao__photo {
        width: 520px;
        height: 360px;
    }

    /* AQ proximidade */
    .aq-proximidade {
        padding: 64px 32px 0;
        gap: 40px;
    }
    .aq-proximidade__photo {
        width: 580px;
        height: 400px;
    }

    /* AQ complexo */
    .aq-complexo {
        padding: 64px 32px;
    }
    .aq-complexo__slide-content {
        left: 32px;
    }

    /* AQ natureza */
    .aq-natureza {
        padding: 64px 32px;
    }
    .aq-natureza__slide-content {
        left: 32px;
    }

    /* Footer */
    .site-footer__inner {
        gap: 32px;
    }
}

/* ── 768px — Tablet ───────────────────────────────────────────────── */
@media (max-width: 768px) {

    /* Breadcrumbs */
    .breadcrumbs__inner { padding: 10px 20px; }

    /* Política */
    .politica-conteudo { padding: 40px 20px 64px; }

    /* Cookie banner */
    .cookie-banner { padding: 16px 20px; }
    .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .cookie-banner__btn { width: 100%; justify-content: center; }

    /* Header */
    .site-header__inner {
        padding: 12px 20px;
        flex-wrap: wrap;
        gap: 12px;
    }
    .site-header__logo img {
        width: 150px;
        height: 40px;
    }
    .site-header__menu {
        gap: 20px;
    }
    .site-header__menu li a {
        font-size: 15px;
    }

    /* Hero home */
    .home-hero {
        height: auto;
        min-height: 360px;
    }
    .home-hero__content {
        padding: 60px 20px 40px;
    }
    .home-hero__title {
        font-size: 28px;
        max-width: 100%;
    }

    /* Sobre */
    .home-sobre__inner {
        flex-direction: column;
        padding: 40px 20px 0;
        gap: 24px;
    }
    .home-sobre__left {
        flex: none;
        width: 100%;
    }
    .home-sobre__right {
        width: 100%;
    }
    .home-sobre__title {
        font-size: 22px;
    }
    .home-sobre__text {
        font-size: 17px;
    }
    .home-sobre__shape {
        width: 100%;
        height: auto;
        opacity: 0.4;
    }

    /* Quote */
    .home-quote {
        padding: 48px 20px;
    }
    .home-quote__box {
        padding: 24px 24px;
        border-radius: 20px;
    }
    .home-quote__box p {
        font-size: 22px;
    }

    /* Emp banner — vira layout normal (sem posicionamento absoluto) */
    .emp-banner {
        height: auto;
        overflow: visible;
        display: flex;
        flex-direction: column;
    }
    .emp-banner__content {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        padding: 40px 20px;
    }
    .emp-banner__photo {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: 260px;
        overflow: hidden;
    }
    .emp-banner__title {
        font-size: 28px;
    }
    .emp-banner__text {
        font-size: 17px;
        max-width: 100%;
    }

    /* Emp gallery — vira layout normal */
    .emp-gallery {
        position: relative;
        height: auto;
        overflow: visible;
        display: flex;
        flex-direction: column;
        padding: 0;
    }
    .emp-gallery--bellacqua,
    .emp-gallery--diamante {
        height: auto;
    }
    .emp-gallery__photo {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: 240px;
        overflow: hidden;
    }
    .emp-gallery__panel {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        padding: 32px 20px;
    }
    .emp-gallery--bellacqua .emp-gallery__panel,
    .emp-gallery--diamante .emp-gallery__panel {
        height: auto;
    }
    .emp-gallery__title {
        font-size: 28px;
    }
    .emp-gallery__lead,
    .emp-gallery__list li span {
        font-size: 17px;
    }

    /* Home cards */
    .home-cards {
        padding: 48px 20px;
    }
    .home-cards__title {
        font-size: 28px;
        white-space: normal;
        text-align: center;
    }
    .home-cards__grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .emp-card {
        width: 100%;
        max-width: 480px;
    }

    /* Footer */
    .site-footer__inner {
        flex-direction: column;
        padding: 32px 20px;
        gap: 24px;
        align-items: flex-start;
    }
    .site-footer__social {
        align-items: flex-start;
    }
    .site-footer__social-label {
        text-align: left;
    }

    /* Copyright */
    .home-copyright__inner {
        height: auto;
        padding: 14px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }
    .home-copyright__text {
        font-size: 13px;
        text-align: left;
        flex: 1;
        margin: 0;
        line-height: 1.25;
    }
    .home-copyright__inner img {
        flex-shrink: 0;
        margin-top: 2px;
        align-self: flex-start;
    }

    /* CC hero */
    .cc-hero {
        height: auto;
        min-height: 320px;
    }
    .cc-hero__content {
        padding: 60px 20px 40px;
    }
    .cc-hero__title {
        font-size: 28px;
        max-width: 100%;
    }
    .cc-hero__subtitle {
        font-size: 17px;
        max-width: 100%;
    }

    /* CC trajetória */
    .cc-trajetoria {
        padding: 48px 20px;
    }
    .cc-trajetoria__inner {
        flex-direction: column;
        gap: 32px;
    }
    .cc-trajetoria__photo {
        width: 100%;
        height: 260px;
        flex-shrink: 1;
    }
    .cc-trajetoria__texts {
        width: 100%;
        flex-shrink: 1;
    }
    .cc-trajetoria__title {
        font-size: 22px;
    }
    .cc-trajetoria__body {
        font-size: 17px;
    }

    /* CC pilares */
    .cc-pilares {
        padding: 48px 20px;
    }
    .cc-pilares__title {
        font-size: 28px;
    }
    .cc-pilares__cards {
        flex-direction: column;
        gap: 20px;
    }
    .cc-pilar {
        padding: 32px 24px;
    }
    .cc-pilar__name {
        font-size: 22px;
    }
    .cc-pilar__text {
        font-size: 17px;
    }

    /* CC legados */
    .cc-legados {
        padding: 48px 20px;
    }
    .cc-legados__card {
        width: 100%;
        padding: 28px 20px;
        border-radius: 24px;
    }
    .cc-legados__title {
        font-size: 24px;
    }
    .cc-legados__text {
        font-size: 17px;
    }

    /* CC CTA */
    .cc-cta {
        height: auto;
        overflow: hidden;
    }
    .cc-cta__inner {
        flex-direction: column;
        padding: 40px 20px;
        gap: 24px;
        height: auto;
    }
    .cc-cta__photo {
        width: 220px;
        height: 180px;
        margin-top: 0;
        order: -1;
    }
    .cc-cta__title {
        font-size: 24px;
        max-width: 100%;
    }

    /* Fale conosco */
    .fc-canais {
        padding: 40px 20px 24px;
    }
    .fc-canais__title {
        font-size: 28px;
    }
    .fc-contato {
        flex-direction: column;
    }
    .fc-contato__info,
    .fc-contato__form-wrap {
        padding: 40px 20px;
    }
    .fc-contato__title {
        font-size: 24px;
    }
    .fc-contato__form-title {
        font-size: 24px;
        max-width: 100%;
    }
    .fc-contato__text,
    .fc-contato__nome,
    .fc-contato__item {
        font-size: 17px;
    }
    .fc-onde {
        flex-direction: column;
    }
    .fc-onde__mapa {
        width: 100%;
        max-height: 280px;
    }
    .fc-onde__info {
        width: 100%;
        padding: 40px 20px;
    }
    .fc-onde__title {
        font-size: 24px;
    }
    .fc-onde__endereco,
    .fc-onde__horario {
        font-size: 17px;
    }

    /* Aquarema hero — simplifica posicionamento */
    .aq-hero {
        height: auto;
        min-height: 400px;
        display: flex;
        flex-direction: column;
    }
    .aq-hero__bg {
        position: absolute;
    }
    .aq-hero__overlay {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
    }
    .aq-hero__content {
        position: relative;
        top: auto;
        left: auto;
        max-width: 100%;
        padding: 40px 20px;
        z-index: 2;
    }
    .aq-hero__title {
        font-size: 28px;
        max-width: 100%;
    }
    .aq-hero__subtitle {
        font-size: 17px;
        max-width: 100%;
    }

    /* AQ beneficios */
    .aq-beneficios {
        padding: 20px 20px;
        gap: 20px;
    }

    /* AQ intro */
    .aq-intro {
        padding: 48px 20px;
    }
    .aq-intro__inner {
        flex-direction: column;
        gap: 32px;
    }
    .aq-intro__photo {
        width: 100%;
        height: 240px;
        flex-shrink: 1;
    }
    .aq-intro__col {
        max-width: 100%;
    }
    .aq-intro__title {
        font-size: 28px;
    }
    .aq-intro__body p {
        font-size: 17px;
    }

    /* AQ lazer */
    .aq-lazer {
        flex-direction: column;
        padding: 48px 20px;
        gap: 32px;
    }
    .aq-lazer__col {
        max-width: 100%;
    }
    .aq-lazer__title {
        font-size: 28px;
    }
    .aq-lazer__text {
        font-size: 17px;
    }
    .aq-lazer__photo {
        width: 100%;
        height: 260px;
        flex-shrink: 1;
    }

    /* AQ complexo */
    .aq-complexo {
        padding: 48px 20px;
    }
    .aq-complexo__slide-img {
        height: 420px;
    }
    .aq-complexo__slide-content {
        left: 20px;
        bottom: 24px;
    }
    .aq-complexo__slide-title {
        font-size: 28px;
    }
    .aq-complexo__slide-text {
        font-size: 17px;
        max-width: 100%;
    }

    /* AQ natureza */
    .aq-natureza {
        padding: 48px 20px;
    }
    .aq-natureza__slide-img {
        height: 420px;
    }
    .aq-natureza__slide-content {
        left: 20px;
        bottom: 24px;
    }
    .aq-natureza__slide-caption {
        font-size: 28px;
    }

    /* AQ galeria — 2 colunas */
    .aq-galeria {
        padding: 48px 20px 0;
        grid-template-columns: repeat(2, 1fr);
    }
    .aq-galeria__text-card {
        padding: 40px 24px;
        grid-column: span 2;
        aspect-ratio: auto;
    }
    .aq-galeria__text-title {
        font-size: 28px;
        max-width: 100%;
    }
    .aq-galeria__text-sub {
        font-size: 17px;
        max-width: 100%;
    }

    /* AQ infra */
    .aq-infra {
        padding: 48px 20px;
        gap: 48px;
    }
    .aq-infra__title {
        font-size: 28px;
    }
    .aq-infra__text {
        font-size: 17px;
    }
    .aq-infra__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .aq-infra__quote {
        font-size: 24px;
    }

    /* AQ planta */
    .aq-planta {
        padding: 48px 20px;
        gap: 32px;
    }
    .aq-planta__top {
        flex-direction: column;
        gap: 24px;
    }
    .aq-planta__title {
        font-size: 28px;
        max-width: 100%;
        flex-shrink: 1;
        text-align: left;
    }
    .aq-planta__texts {
        max-width: 100%;
        gap: 24px;
    }
    .aq-planta__texts p {
        font-size: 17px;
    }
    .aq-planta__middle {
        flex-direction: column;
        gap: 32px;
    }
    .aq-planta__img {
        width: 100%;
        height: auto;
        flex-shrink: 1;
    }
    .aq-planta__banner {
        width: 100%;
    }
    .aq-planta__banner-text {
        font-size: 24px;
    }

    /* AQ localizacao */
    .aq-localizacao {
        flex-direction: column;
        padding: 48px 20px;
        gap: 32px;
    }
    .aq-localizacao__lista {
        max-width: 100%;
    }
    .aq-localizacao__item {
        font-size: 24px;
    }
    .aq-localizacao__photo {
        width: 100%;
        height: 260px;
        flex-shrink: 1;
    }

    /* AQ proximidade */
    .aq-proximidade {
        flex-direction: column;
        padding: 48px 20px 0;
        gap: 32px;
    }
    .aq-proximidade__col {
        max-width: 100%;
    }
    .aq-proximidade__title {
        font-size: 28px;
    }
    .aq-proximidade__text {
        font-size: 17px;
    }
    .aq-proximidade__photo {
        width: 100%;
        height: 280px;
        flex-shrink: 1;
    }
}

/* ── 480px — Mobile ───────────────────────────────────────────────── */
@media (max-width: 480px) {

    /* Breadcrumbs */
    .breadcrumbs__inner { padding: 8px 16px; }

    /* Política */
    .politica-conteudo { padding: 32px 16px 56px; }
    .politica-conteudo__titulo { font-size: 28px; }
    .politica-conteudo__inner h2 { font-size: 22px; }
    .politica-conteudo__inner p,
    .politica-conteudo__inner ul,
    .politica-conteudo__inner ol { font-size: 15px; }

    /* Cookie banner */
    .cookie-banner { padding: 14px 16px; }

    /* Header — esconder menu, mostrar só logo */
    .site-header__inner {
        padding: 12px 16px;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    .site-header__logo img {
        width: 130px;
        height: 34px;
    }
    .site-header__hamburger {
        display: flex;
    }
    .site-header__nav {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(36, 22, 15, 0.97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 100;
    }
    .site-header__nav.is-open {
        display: flex;
    }
    .site-header__menu {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    .site-header__menu li a {
        font-size: 24px;
    }

    /* Hero home */
    .home-hero {
        min-height: 300px;
    }
    .home-hero__content {
        padding: 48px 16px 32px;
        gap: 20px;
    }
    .home-hero__title {
        font-size: 24px;
    }

    /* Sobre */
    .home-sobre__inner {
        padding: 32px 16px 0;
    }
    .home-sobre__title {
        font-size: 20px;
    }
    .home-sobre__text {
        font-size: 16px;
    }

    /* Quote */
    .home-quote {
        padding: 36px 16px;
    }
    .home-quote__box {
        padding: 20px 16px;
        border-radius: 16px;
    }
    .home-quote__box p {
        font-size: 20px;
    }

    /* Emp banner */
    .emp-banner__content {
        padding: 32px 16px;
    }
    .emp-banner__title {
        font-size: 24px;
    }
    .emp-banner__text {
        font-size: 16px;
    }
    .emp-banner__photo {
        height: 220px;
    }

    /* Emp gallery */
    .emp-gallery__photo {
        height: 200px;
    }
    .emp-gallery__panel {
        padding: 28px 16px;
    }
    .emp-gallery__title {
        font-size: 24px;
    }
    .emp-gallery__lead,
    .emp-gallery__list li span {
        font-size: 16px;
    }

    /* Home cards */
    .home-cards {
        padding: 36px 16px;
    }
    .home-cards__title {
        font-size: 24px;
    }
    .emp-card {
        max-width: 100%;
    }

    /* Footer */
    .site-footer__inner {
        padding: 28px 16px;
        gap: 20px;
    }
    .site-footer__logo img {
        width: 120px;
        height: 32px;
    }

    /* Copyright */
    .home-copyright__inner {
        padding: 14px 16px;
        height: auto;
        min-height: 72px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }
    .home-copyright__text {
        font-size: 13px;
        text-align: left;
        flex: 1;
        margin: 0;
        line-height: 1.25;
    }
    .home-copyright__inner img {
        flex-shrink: 0;
        margin-top: 2px;
        align-self: flex-start;
    }

    /* CC hero */
    .cc-hero__content {
        padding: 48px 16px 32px;
    }
    .cc-hero__title {
        font-size: 24px;
    }
    .cc-hero__subtitle {
        font-size: 16px;
    }

    /* CC trajetória */
    .cc-trajetoria {
        padding: 36px 16px;
    }
    .cc-trajetoria__photo {
        height: 220px;
    }
    .cc-trajetoria__title {
        font-size: 20px;
    }
    .cc-trajetoria__body {
        font-size: 16px;
    }

    /* CC pilares */
    .cc-pilares {
        padding: 36px 16px;
    }
    .cc-pilares__title {
        font-size: 24px;
    }
    .cc-pilar {
        padding: 24px 16px;
        gap: 20px;
    }
    .cc-pilar__icon {
        width: 56px;
        height: 56px;
    }
    .cc-pilar__name {
        font-size: 20px;
    }
    .cc-pilar__text {
        font-size: 16px;
    }

    /* CC legados */
    .cc-legados {
        padding: 36px 16px;
    }
    .cc-legados__card {
        padding: 24px 16px;
        border-radius: 16px;
        gap: 24px;
    }
    .cc-legados__title {
        font-size: 20px;
    }
    .cc-legados__text {
        font-size: 16px;
    }

    /* CC CTA */
    .cc-cta__inner {
        padding: 32px 16px;
    }
    .cc-cta__photo {
        width: 180px;
        height: 150px;
    }
    .cc-cta__title {
        font-size: 20px;
    }

    /* Fale conosco */
    .fc-canais {
        padding: 32px 16px 20px;
    }
    .fc-canais__title {
        font-size: 24px;
    }
    .fc-contato__info,
    .fc-contato__form-wrap {
        padding: 32px 16px;
    }
    .fc-contato__title,
    .fc-contato__form-title {
        font-size: 20px;
    }
    .fc-contato__text,
    .fc-contato__nome,
    .fc-contato__item {
        font-size: 16px;
    }
    .fc-onde__info {
        padding: 32px 16px;
    }
    .fc-onde__title {
        font-size: 20px;
    }
    .fc-onde__endereco,
    .fc-onde__horario {
        font-size: 16px;
    }

    /* Aquarema hero */
    .aq-hero {
        min-height: 320px;
    }
    .aq-hero__content {
        padding: 32px 16px;
    }
    .aq-hero__title {
        font-size: 24px;
    }
    .aq-hero__subtitle {
        font-size: 16px;
    }

    /* AQ beneficios */
    .aq-beneficios {
        padding: 16px;
        gap: 16px;
        justify-content: flex-start;
    }

    /* AQ intro */
    .aq-intro {
        padding: 36px 16px;
        gap: 32px;
    }
    .aq-intro__photo {
        height: 200px;
    }
    .aq-intro__title {
        font-size: 24px;
    }
    .aq-intro__body p {
        font-size: 16px;
    }
    .aq-intro__stats {
        padding: 24px 16px;
        flex-direction: column;
        gap: 16px;
    }

    /* AQ lazer */
    .aq-lazer {
        padding: 36px 16px;
    }
    .aq-lazer__title {
        font-size: 24px;
    }
    .aq-lazer__text {
        font-size: 16px;
    }
    .aq-lazer__photo {
        height: 220px;
    }

    /* AQ complexo */
    .aq-complexo {
        padding: 40px 0;
    }
    .aq-complexo__slide-img {
        height: 300px;
    }
    .aq-complexo__slide-content {
        left: 16px;
        bottom: 20px;
    }
    .aq-complexo__slide-title {
        font-size: 24px;
    }
    .aq-complexo__slide-text {
        font-size: 16px;
        max-width: 100%;
    }
    .aq-complexo__btn {
        width: 44px;
        height: 64px;
    }

    /* AQ natureza */
    .aq-natureza {
        padding: 40px 0;
    }
    .aq-natureza__slide-img {
        height: 300px;
    }
    .aq-natureza__slide-content {
        left: 16px;
        bottom: 20px;
    }
    .aq-natureza__slide-caption {
        font-size: 24px;
    }
    .aq-natureza__btn {
        width: 44px;
        height: 64px;
    }

    /* AQ galeria — 1 coluna */
    .aq-galeria {
        padding: 36px 16px 0;
        grid-template-columns: 1fr;
    }
    .aq-galeria__text-card {
        grid-column: span 1;
        padding: 32px 16px;
        aspect-ratio: auto;
    }
    .aq-galeria__text-title {
        font-size: 24px;
    }
    .aq-galeria__text-sub {
        font-size: 16px;
    }
    .aq-galeria__caption {
        font-size: 22px;
    }

    /* AQ infra */
    .aq-infra {
        padding: 36px 16px;
        gap: 32px;
    }
    .aq-infra__title {
        font-size: 24px;
    }
    .aq-infra__text {
        font-size: 16px;
    }
    .aq-infra__grid {
        grid-template-columns: 1fr;
    }
    .aq-infra__card-photo {
        height: 200px;
    }
    .aq-infra__quote {
        font-size: 20px;
    }

    /* AQ planta */
    .aq-planta {
        padding: 36px 16px;
    }
    .aq-planta__title {
        font-size: 24px;
    }
    .aq-planta__texts p {
        font-size: 16px;
    }
    .aq-planta__card {
        padding: 16px;
    }
    .aq-planta__banner-text {
        font-size: 20px;
    }

    /* AQ localizacao */
    .aq-localizacao {
        padding: 36px 16px;
    }
    .aq-localizacao__item {
        font-size: 20px;
    }
    .aq-localizacao__photo {
        height: 220px;
    }

    /* AQ proximidade */
    .aq-proximidade {
        padding: 36px 16px 0;
    }
    .aq-proximidade__title {
        font-size: 24px;
    }
    .aq-proximidade__text {
        font-size: 16px;
    }
    .aq-proximidade__photo {
        height: 240px;
    }
}
