/* ------------------------------------------------------------------------------------ */
/* --------------------------------- HEADER + FOOTER ---------------------------------- */
/* ------------------------------------------------------------------------------------ */
:root {
    /* PRIMARY COLORS */
    --color-primary: #49BD97;
    --color-primary-dark: #3e9e7e;

    /* TEXT COLORS */
    --color-text-main: #ba7cbb;
    --color-text-light: #707070;
    --lilas: #ba7cbb;
    --roxo: #9518DC;
    --VerdeEscuro: #070f0c;
    --VerdeClaro: #49BD97;
    /* BACKGROUNDS */
    --color-bg-main: #ffffff;
    --color-bg-light: #f3f3f3;

    /* UI ELEMENTS */
    --color-border: #49BD97;
    --color-placeholder: #49BD97;

    /* FOOTER */
    --color-footer-bg: #49BD97;
    --color-white: #ffffff;
}
body {
    font-family: "Avenir", "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.logo-icon {
    height: 140px;
    color: var(--color-text-light); /* 🔥 controls SVG color */
    display: block;
}
/* ===================== */
/* GLOBAL RESET */
/* ===================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

/* ===================== */
/* STICKY FOOTER SYSTEM */
/* ===================== */

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* 🔥 IMPORTANT */
}

/* This pushes footer down */
.main-content {
    flex: 1;
    padding: 198px 10vw 0 10vw;
}

/* ===================== */
/* HEADER */
/* ===================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;
    background: var(--color-bg-main);
}

.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 10px;
    background: var(--color-bg-main);
}

/* ---------- CENTER ---------- */
.header-center {
    display: flex;
    justify-content: center;
}

.logo-icon {
    height: 140px;
    display: block;
}

/* ---------- LEFT ---------- */
.header-left {
    display: flex;
    align-items: center;
    justify-content: space-between; /* 🔥 key fix */
    width: 100%;
}

/* CONTACTS (stay far left) */
.contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-light);
}

.contact-item img {
    width: 30px;
}

.contact-item img,
.social img {
    width: 30px;
    color: var(--color-text-light);
}

/* TEXT LOGO wrapper pushes it toward center */
.logo-text-wrapper {
    margin-right: -10px; /* 🔥 controls distance to center */
}

/* TEXT LOGO */
.logo-text {
    height: 130px;
    color: var(--color-text-light);
}

/* ---------- RIGHT ---------- */
.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* pulls toward center */
    gap: 0px;
}

/* SOCIAL */
.social {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: -10px;
}

.social img {
    width: 30px;
}

/* MENU */
.menu {
    display: flex;
    flex-direction: column;
    color: var(--color-primary);
    margin-left: 20px;
}

.menu-title {
    font-weight: bold;
    margin-bottom: 3px;
    font-size: 14px;
}

.menu a {
    text-decoration: none;
    color: var(--color-text-light);
    margin: 1px 0;
    font-size: 14px;
}

/* BUTTON */
.btn-contacto {
    align-self: flex-end;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    margin-top: -10px;
}



/* ===================== */
/* FOOTER */
/* ===================== */

footer {
    background: var(--color-footer-bg);
    color: var(--color-white);
    padding: 10px 10px;
}

/* GRID like header (symmetry) */
.footer-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

/* ---------- LEFT ---------- */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-left .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.footer-left img {
    width: 20px;
    filter: brightness(0) invert(1); /* white icons */
}

/* ---------- CENTER ---------- */
.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

/* SOCIAL */
.footer-center .social {
    display: flex;
    margin-left: -60px;
}

.footer-center .social img {
    width: 30px;
    filter: brightness(0) invert(1);
}

/* BUTTON */
.footer-center .btn-contacto {
    background: var(--color-white);
    color: var(--color-text-light);
    padding: 8px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
}

/* ---------- RIGHT ---------- */
.footer-right {
    display: flex;
    justify-content: flex-end;
}

.footer-logo {
    height: 100px;
    filter: brightness(0) invert(1); /* white logo */
}

.contact-itemf {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-white);
}

/* ---------- RIGHT (HOURS) ---------- */

.footer-hours {
    text-align: right;
    color: var(--color-white);
}

.footer-hours-title {
    letter-spacing: 1px;
}

.footer-hours p {
    font-weight: 300;
}



/* ----------------------------------------------------------------------------------- */
/* -------------------------------------- HOME --------------------------------------- */
/* ----------------------------------------------------------------------------------- */

/* ===================== */
/* HERO */
/* ===================== */

.hero {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: visible;
}

.shero {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: visible;
}

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


/* LEFT TITLE (FIXED) */
.hero-overlay {
    position: absolute;
    top: 10%;          /* 🔥 higher */
    left: 0px;

    background: var(--color-white);
    padding: 15px 30px; /* 🔥 bigger box */
}

.hero-overlay h1 {
    font-size: 34px;   /* 🔥 bigger */
    color: var(--color-primary);
    font-weight: 500;
}

/* RIGHT INFO */
.hero-info {
    position: absolute;
    right: 0px;       /* 🔥 max right */
    top: 65%;

    background: var(--color-white);
    padding: 12px 12px;
    text-align: right;
}

.horario-title {
    font-size: 12px;
    margin-bottom: 5px;
    color: var(--color-text-light);
}

.hero-info p {
    font-size: 19px;
    color: var(--color-text-light);
}

/* BUTTON UNDER INFO */
.hero-btn {
    position: absolute;
    right: 0px;       /* 🔥 align with box */
    top: calc(67% + 95px);

    background: var(--color-white);
    padding: 10px 12px;
    text-decoration: none;
    color: var(--color-text-light);
    font-size: 14px;
    font-weight: bold;
}

/* HERO LOGO (BOTTOM LEFT) */
.hero-logo {
    position: absolute;
    left: 20px;
    bottom: 20px;

    height: 100px;

    filter: brightness(0) invert(1); /* 🔥 makes it white */
    opacity: 0.9;
}

.shero-logo {
    position: absolute;
    right: 20px;
    bottom: 20px;

    height: 100px;

    filter: brightness(0) invert(1); /* 🔥 makes it white */
    opacity: 0.9;
}


/* PROMOÇÕES */

.hpromocoes {
    position: relative;
    padding: 10px 10px;
    background: var(--color-white);
}

/* GRID FULL WIDTH */
.hpromo-grid {
    display: flex;
    gap: 10px;
}

/* CARD */
.hpromo-card {
    position: relative;
    width: 50%;
    overflow: hidden;
}

/* IMAGE */
.hpromo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* EVENTOS */

.heventos {
    position: relative;
    padding: 10px 10px 50px 10px;
    background: var(--color-white);
}

/* GRID FULL WIDTH */
.heventos-grid {
    display: flex;
    gap: 10px;
}

/* CARD */
.heventos-card {
    position: relative;
    width: 50%;
    overflow: hidden;
}

/* IMAGE */
.heventos-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* HISTÓRIA */
.historia {
    position: relative;
    padding: 100px 0px 100px 0px;
    background: url("../images/decor-bg2G.jpg") no-repeat left center;
    background-size: cover;
    color: var(--color-text-light);
}

.historia::before {
    content: "";
    position: absolute;
    inset: 0;
}

/* TEXT RIGHT */
.historia-right {
    position: relative;
    max-width: 600px;
    margin-left: auto;
    padding: 50px 70px;
    background: var(--color-white);
    text-align: justify;
}

.historia-right h2 {
    margin-bottom: 20px;
}

.historia-right p {
    margin-bottom: 15px;
    color: var(--color-text-light);
}

/* VALORES */
.valores {
    text-align: center;
    padding: 40px;
    color: var(--color-text-light);
}

.valores h3 {
    margin-bottom: 30px;
    color: var(--color-text-light);
}

.valores-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.valor {
    text-align: center;
}

.valor img{
    height: 150px;
}

.icon-placeholder {
    width: 50px;
    height: 50px;
    background: var(--color-text-light);
    margin: auto;
    margin-bottom: 10px;
}



/* ===================== */
/* SERVIÇOS */
/* ===================== */

.servicos {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 60px 60px;
    margin-bottom: 50px;
}

/* EACH BLOCK */
.servico-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items:stretch;
    background: var(--color-bg-light);
}

/* IMAGE */
.servico-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.servico-content {
    display: flex;
    flex-direction: column;
    justify-content: top;
}

/* TITLE BAR */
.servico-title {
    background: var(--color-primary);
    color: var(--color-white);

    padding: 10px 20px;
    font-size: 1.5vw;
    font-weight: 500;
    text-align: center;
}

/* LIST */
.servico-content ul {
    list-style: none;
    padding-left:2vw;
    padding-top: 2vw;
}

.servico-content li {
    margin-bottom: 1.85vh;
    font-size: 2vw;
    font-weight: bold;
    color: var(--color-text-light);

    position: relative;
    padding-left: 3vw;
    padding-right: 3vw;
    margin-left: 10px;
}

/* DASH STYLE */
.servico-content li::before {
    content: "-";
    position: absolute;
    left: 0;
}

/* ===================== */
/* PROMOÇÕES */
/* ===================== */

.promocoes {
    padding: 30px 30px;
    height: auto;
}

/* TITLE */
.promocoes h2 {
    margin-bottom: 20px;
    color: var(--color-text-light);
}

/* GRID SYSTEM (SCALABLE) */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 🔥 ALWAYS 2 PER ROW */
    gap: 30px;
    width: 100%;
    height:fit-content ;
}

/* CARD */
.promo-card {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* IMAGE */
.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* BUTTON */
.promo-btn {
    position: absolute;
    bottom: 2.5vh;
    right: 2.5vw;

    background: var(--color-white);
    padding: 1vh 2vw;

    text-decoration: none;
    color: var(--color-text-light);

    border-radius: 5vw;
    font-size: 2vw;

    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.promo-empty {
    display: none;
    text-align: center;
    padding: 40px;
    color: var(--color-text-light);
    border: 2px dashed var(--color-border);
    border-radius: 10px;
    font-size: 16px;
}

/* ===================== */
/* PROMO MODAL */
/* ===================== */

.promo-modal {
    display: none;
    position: fixed;
    inset: 0;

    background: rgba(255, 255, 255, 0.7);
    z-index: 9999;

    justify-content: center;
    align-items: center;
}

/* CONTENT BOX */
.promo-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

/* IMAGE */
.promo-modal-content img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

/* CLOSE BUTTON */
.promo-close {
    position: absolute;
    top: -10px;
    right: -10px;

    background: white;
    color: #333;

    width: 30px;
    height: 30px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}




/* ===================== */
/* EVENTOS */
/* ===================== */

.eventos {
    padding: 30px 30px;
    height: auto;
}

/* TITLE */
.eventos h2 {
    margin-bottom: 20px;
    color: var(--color-text-light);
}

/* GRID SYSTEM (SCALABLE) */
.eventos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 🔥 ALWAYS 2 PER ROW */
    gap: 30px;
    width: 100%;
    height:fit-content ;
}

/* CARD */
.eventos-card {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* IMAGE */
.eventos-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* BUTTON */
.eventos-btn {
    position: absolute;
    bottom: 2.5vh;
    right: 2.5vw;

    background: var(--color-white);
    padding: 1vh 2vw;

    text-decoration: none;
    color: var(--color-text-light);

    border-radius: 5vw;
    font-size: 2vw;

    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.eventos-empty {
    display: none;
    text-align: center;
    padding: 40px;
    color: var(--color-text-light);
    border: 2px dashed var(--color-border);
    border-radius: 10px;
    font-size: 16px;
}

/* ===================== */
/* EVENTOS MODAL */
/* ===================== */

.eventos-modal {
    display: none;
    position: fixed;
    inset: 0;

    background: rgba(255, 255, 255, 0.7);
    z-index: 999;

    justify-content: center;
    align-items: center;
}

/* CONTENT BOX */
.eventos-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

/* IMAGE */
.eventos-modal-content img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

/* CLOSE BUTTON */
.eventos-close {
    position: absolute;
    top: -10px;
    right: -10px;

    background: white;
    color: var(--color-text-light);

    width: 30px;
    height: 30px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}



/* ===================== */
/* CONTACT SECTION */
/* ===================== */

.contact-section {
    padding: 2vh 0 2vh 0;
    background: var(--color-bg-main);
}

/* MAIN WRAPPER */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ===================== */
/* TOP ROW */
/* ===================== */

.contact-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ---------- LEFT: CONTACTS ---------- */

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-line {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-text-light);
    font-size: 16px;
}

.info-line img {
    width: 28px;
}

/* HOURS */
.info-hours {
    margin-top: 20px;
}

.hours-title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--color-text-light);
}

.info-hours p {
    color: var(--color-text-light);
}

/* ---------- RIGHT: MAP + PARKING ---------- */

.contact-map-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* MAP */
.map-container {
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 220px;
    border: 0;
    border-radius: 10px;
}

/* PARKING IMAGE */
.parking-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

/* ===================== */
/* DIVIDER */
/* ===================== */

.contact-divider-horizontal {
    width: 100%;
    height: 2px;
    background: var(--color-text-light);
    opacity: 0.3;
}

/* ===================== */
/* FORM */
/* ===================== */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-text-light);
    background: var(--color-white);
    font-size: 14px;
    color: var(--color-text-light);
}

/* TEXTAREA */
.contact-form textarea {
    height: 140px;
    resize: none;
}

/* CHECKBOX */
.checkbox-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--color-text-light);
}

.checkbox-line input {
    width: 16px;
    height: 16px;
}

/* FORM MESSAGES */
.form-message {
    display: none;
    margin-top: 10px;
    font-size: 14px;
}

.form-success {
    color: #2e7d32;
}

.form-error {
    color: #c62828;
}

/* ===================== */
/* PRIVACY MODAL */
/* ===================== */

.privacy-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);

    display: none;
    justify-content: center;
    align-items: center;

    z-index: 999;
}

.privacy-content {
    background: white;
    width: 90%;
    max-width: 500px;
    padding: 25px;
    position: relative;
}

.privacy-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
}


/* ===================== */
/* TEAM */
/* ===================== */

.team {
    padding: 60px 40px;
    text-align: center;
}

/* GRID */
.team-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* MEMBER */
.team-member {
    flex: 1;
    min-width: 140px;
}

.team h3 {
    margin-bottom: 30px;
    color: var(--color-text-light);
}

/* IMAGE */
.team-member img {
    height: 120px;
    margin-bottom: 10px;
}

/* NAME */
.team-member h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-light);
}

/* ROLE */
.team-member p {
    font-size: 14px;
    color: var(--color-text-light);
}

/* QUOTE */
.team-quote {
    margin-top: 60px;
    font-size: 22px;
    font-style: italic;
    color: var(--color-text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================== */
/* LOCK BACKGROUND SCROLL */
/* ===================== */

.no-scroll {
    overflow: hidden;
}

/* ===================== */
/* MODAL */
/* ===================== */

.promo-modal {
    display: none;
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.7);
    z-index: 999;

    justify-content: center;
    align-items: center;

    overflow-y: auto; /* 🔥 allow internal scroll */
}

/* IMAGE */
.promo-modal img {
    max-width: 90%;
    max-height: 90vh;
}

/* CLOSE BUTTON */
.promo-close,
.eventos-close {
    position: absolute;
    top: 10px;        /* ✅ inside modal */
    right: 10px;

    font-size: 22px;
    font-weight: bold;

    color: rgb(0, 0, 0);
    background: white;

    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.promo-modal,
.eventos-modal {
    display: none; /* ✅ hidden by default */
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.7);

    z-index: 99999;

    justify-content: center;
    align-items: center;

    padding: 20px;
    overflow-y: auto;
}

.promo-modal-content,
.eventos-modal-content {
    position: relative;

    max-width: 100%;
    width: 100%;
    
    display: flex;
    justify-content: center;
}

.promo-modal img,
.eventos-modal img {
    max-width: 100%;
    max-height: 90vh;

    width: auto;
    height: auto;

    display: block;
    margin: 0 auto; /* 🔥 CENTER GUARANTEE */
}

/* ===================== */
/* SLIDER */
/* ===================== */

.servicos-slider {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
}

/* VIEWPORT */
.slider-viewport {
    overflow: hidden;
    width: 100%;
}

/* TRACK */
.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

/* SLIDE (ONLY ONE DEFINITION) */
.slide {
    flex: 0 0 calc((100% - 40px) / 3); /* 🔥 FIX */
    position: relative;
    
}

/* IMAGE */
.slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* TEXT OVERLAY */
.slide p {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;

    height: 100%; /* 🔥 same height for all */

    display: flex;
    align-items:last baseline;     /* vertical center */
    justify-content: center; /* horizontal center */

    text-align: center;

    color: white;
    font-size: 120%;
    font-weight: 400;

    padding: 0 10px;

    pointer-events: none; /* optional */
}

/* BUTTONS */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 45px;
    height: 45px;

    border-radius: 50%;
    border: none;

    background: var(--color-primary);
    color: white;

    font-size: 22px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 2;
}

/* LEFT BUTTON */
.slider-btn.prev {
    left: -22px; /* 🔥 half outside */
}

/* RIGHT BUTTON */
.slider-btn.next {
    right: -22px; /* 🔥 half outside */
}

/* IMPORTANT: make slider relative */
.servicos-slider {
    position: relative;
}



/* ===================== */
/* SERVICES GRID */
/* ===================== */

.servicos {
    padding: 0px;
}

.servicos-title {
    margin: -40px 0 -20px 0;
    color: var(--color-text-light);
    text-align: center;
    font-size: 2.5vh;
}

.promocoes-title {
    margin: -10px 0 20px 0;
    color: var(--color-text-light);
    text-align: center;
    font-size: 2.5vh;
}

.eventos-title {
    margin: 30px 0 20px 0;
    color: var(--color-text-light);
    text-align: center;
    font-size: 2.5vh;
}

/* GRID */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;

    border: 1px solid var(--color-border);
    padding: 40px;
}

/* OUTROS goes below */
.servico-col:last-child {
    grid-column: 4 / 5; /* under rastreios + testes */
}

/* COLUMN */
.servico-col {
    flex: 1;
    text-align:left;
}

/* ICON */
.servico-icon {
    width: 40px;
    margin-bottom: 10px;
}

/* TITLE */
.servico-col h3 {
    margin-bottom: 10px;
    color: var(--color-text-light);
}

/* LIST */
.servico-col ul {
    list-style: none;
    padding: 0;
}

.servico-col li {
    margin: 5px 0;
    color: var(--color-text-light);
}

/* ===================== */
/* HEADER MOBILE (≤ 750px) */
/* ===================== */

@media (max-width: 750px) {

    .header-container {
        display: grid;
        grid-template-columns: auto auto 1fr;
        align-items: center;
        padding: 10px 15px;
        position: relative;
    }

    /* HIDE LEFT DESKTOP */
    .contacts,
    .logo-text-wrapper {
        display: none;
    }

    /* ICON (LEFT) */
    .header-center {
        grid-column: 1;
    }

    .logo-icon {
        height: 100px;
    }

    /* MENU (NEXT TO ICON) */
    .menu {
        grid-column: 2; /* 🔥 FORCE IT NEXT TO ICON */
        margin-left: 8px;
        align-items: flex-start;
        text-align: left;
        font-size: 10px;
    }

    .menu a  {
        font-size: 10px;
    }

    .menu span  {
        font-size: 10px;
    }

    /* KEEP SOCIAL + BUTTON RIGHT */
    .header-right {
        grid-column: 2;              /* 🔥 move block next to icon */
        justify-self: start;         /* 🔥 stick to icon */
        margin-left: 10px;           /* 🔥 spacing from icon */
    }

    .social {
        justify-content: flex-end;
    }

    .btn-contacto {
        position: absolute;
        right: 15px;
        bottom: 10px; /* 🔥 THIS puts it at the bottom */

        padding: 6px 12px;
        font-size: 12px;
    }

    .social,
    .btn-contacto {
        position: absolute;
        right: 15px;
    }
}

/* ===================== */
/* MOBILE MENU */
/* ===================== */

.menu-toggle {
    display: none;
    font-size: 50px;
    cursor: pointer;
    color: var(--color-text-light);
}

/* MOBILE */
@media (max-width: 750px) {

    /* SHOW HAMBURGER */
    .menu-toggle {
        display: block;
    }

    .menu-toggle {
        margin-left: 0px;
        position: relative;
        z-index: 999999;
    }

    .main-content{
        padding-top: 126px;
    }

    /* HIDE ORIGINAL MENU */
    .menu {
        display: none;
    }

    .social{
        margin-top: -15px;
    }

    /* DROPDOWN MENU */
    .menu.active {
        display: flex !important;
        flex-direction: column;

        position: absolute;
        top: 100%; /* 🔥 directly under header */
        left: 0;
        width: 100%;

        background: white;
        padding: 20px;

        box-shadow: 0 5px 15px rgba(0,0,0,0.1);

        z-index: 999;
    }

    .header-center{
        z-index: 999999;
    }

    .menu a {
        font-size: 16px;
        padding: 10px 0;
    }

}

@media (max-width: 750px) {
    .hero-overlay {
        position: absolute;
        top: 10%;          /* 🔥 higher */
        left: 0px;

        background: var(--color-white);
        padding: 15px 30px; /* 🔥 bigger box */
    }

    .hero-overlay h1 {
        font-size: 20px;   /* 🔥 bigger */
        color: var(--color-primary);
        font-weight: 500;
    }
}

@media (max-width: 750px) {
/* TEXT RIGHT */
.historia-right {
    position: relative;
    max-width: 600px;
    margin-left: auto;
    padding: 10px 10px;
    background: var(--color-white);
    text-align: justify;
}

.historia-right h2 {
    margin-bottom: 20px;
}

.historia-right p {
    margin-bottom: 15px;
    color: var(--color-text-light);
}
}

/* ===================== */
/* FOOTER MOBILE (≤ 750px) */
/* ===================== */

@media (max-width: 750px) {

    .footer-container {
        display: grid;
        grid-template-columns: 1fr auto; /* contacts left, logo right */
        align-items: center;
    }

    /* HIDE CENTER (social + button) */
    .footer-center {
        display: none;
    }

    /* LEFT → CONTACTS */
    .footer-left {
        grid-column: 1;
    }

    /* RIGHT → LOGO */
    .footer-right {
        grid-column: 2;
        justify-content: flex-end;
    }

    .footer-hours {
        text-align: right;
    }

    .footer-hours p {
        font-size: 16px;
    }
}

/* ===================== */
/* VALORES MOBILE (≤ 750px) */
/* ===================== */

@media (max-width: 750px) {

    .valores-grid {
        flex-direction: column;   /* 🔥 STACK VERTICALLY */
        align-items: center;      /* center everything */
        gap: 40px;                /* smaller spacing */
    }

    .valor img {
        height: 200px;            /* 🔥 smaller icons for mobile */
    }

    .valores h3 {
        font-size: 16px;          /* optional: better fit */
        margin-bottom: 20px;
    }
}

@media (max-width: 750px) {

    .promo-btn {
        font-size: 0; /* 🔥 hide original text */
    }

    .promo-btn::after {
        font-size: 12px;
        content: "Lupa"; /* 🔥 new text */
    }

}

/* ===================== */
/* PROMO MOBILE (≤ 750px) */
/* ===================== */

@media (max-width: 750px) {

    .promocoes h2 {
        position: absolute;
        top: 5px;
        left: 0px;

        background: var(--color-white);
        padding: 5px 20px;

        font-size: 12px;
        font-weight: 500;
        color: var(--color-text-light);

        z-index: 2;
    }
}

/* ===================== */
/* EVENTOS MOBILE (≤ 750px) */
/* ===================== */

@media (max-width: 750px) {

    .eventos h2 {
        position: absolute;
        top: 5px;
        left: 0px;

        background: var(--color-white);
        padding: 5px 20px;

        font-size: 12px;
        font-weight: 500;
        color: var(--color-text-light);

        z-index: 2;
    }
}

.menu a.active {
    font-weight: bold;
}

/* ===================== */
/* Serviços MOBILE (≤ 750px) */
/* ===================== */



@media (max-width: 750px) {

    .servicos-grid {
        grid-template-columns: 1fr; /* 🔥 STACK EVERYTHING */
        gap: 30px;
        padding: 20px;
        align-self: center;
    }

    .servico-col {
        width: 100%;
    }

}

@media (max-width: 750px) {

    .servico-col:last-child {
        margin-top: 0;          /* 🔥 remove overlap */
        grid-column: auto;      /* 🔥 reset */
    }

}
@media (max-width: 750px) {

    .servico-col h3 {
        font-size: 18px;
        text-align: center;
    }

    .servico-col li {
        font-size: 14px;
        text-align: center;
    }

}

@media (max-width: 750px) {

    .promo-grid {
        grid-template-columns: 1fr; /* 🔥 1 per row */
    }

    .eventos-grid {
        grid-template-columns: 1fr; /* 🔥 1 per row */
    }

}

@media (max-width: 750px) {

    .hpromo-grid,
    .heventos-grid {
        flex-direction: column; /* 🔥 STACK */
    }

    .hpromo-card,
    .heventos-card {
        width: 100%; /* 🔥 FULL WIDTH */
    }

}

/* MOBILE */
@media (max-width: 750px) {
    .slide {
        flex: 0 0 100%;
    }
}

/* ===================== */
/* MOBILE */
/* ===================== */

@media (max-width: 750px) {

    .contact-section {
        padding: 30px 20px;
    }

    /* STACK TOP */
    .contact-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* SMALLER TEXT */
    .info-line {
        font-size: 14px;
    }

    /* MAP + PARKING HEIGHT */
    .map-container iframe,
    .parking-img {
        height: 180px;
    }

    /* FORM */
    .contact-form input,
    .contact-form textarea {
        font-size: 13px;
        padding: 10px;
    }

    .contact-form textarea {
        height: 120px;
    }

}

.servicos a,
.servico-col a,
.slide,
.slide a{
color: inherit !important;
text-decoration: none !important;
}

.servicos a,
.servico-col a,
.slide,
.slide a{
color: inherit !important;
text-decoration: none !important;
}