@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    overflow-x: hidden;
}

/* ESTADO INICIAL */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* QUANDO APARECE */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal:nth-child(5) {
    transition-delay: 0.5s;
}

.reveal:nth-child(6) {
    transition-delay: 0.6s;
}

.reveal:nth-child(7) {
    transition-delay: 0.7s;
}

.reveal:nth-child(8) {
    transition-delay: 0.8s;
}

.reveal:nth-child(9) {
    transition-delay: 0.9s;
}

.reveal:nth-child(10) {
    transition-delay: 1s;
}

.reveal:nth-child(11) {
    transition-delay: 1.1s;
}

.reveal:nth-child(12) {
    transition-delay: 1.2s;
}

.reveal:nth-child(13) {
    transition-delay: 1.3s;
}

.reveal:nth-child(14) {
    transition-delay: 1.4s;
}

.reveal:nth-child(15) {
    transition-delay: 1.5s;
}   


/* VARIAÇÕES (opcional) */
.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-zoom {
    transform: scale(0.9);
}

/* HERO */
.hero {
    height: 100%;
    padding: 50px 0px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 0;
}

.hero-content {
    position: relative;
    max-width: 600px;
    margin-left: 8%;
    color: #fff;
    z-index: 2;
}

.hero-text {
    margin-bottom: 20px;
}

.hero-text .span-hero1 {
    display: block;
    font-size: 25px;
    font-weight: 600;
    color: #1abc9c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text .span-hero2 {
    display: block;
    font-size: 80px;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

}

.hero-text .span-hero3 {
    display: block;
    font-size: 80px;
    font-weight: 900;
    color: #1abc9c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text .span-hero4 {
    display: block;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.hero-icons-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-icons-item img {
    width: 50px;
    background-color: #1abc9c;
    padding: 10px;
}

.hero-icons-item h5 {
    color: #fff;
    font-weight: 600;
}

.hero-icons-item p {
    font-size: 12px;
    line-height: 1.6;
    max-width: 200px;
    color: #fff;
}

.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.buttons .btn img {
    width: 20px;
    margin-left: 8px;
}

.buttons a {
    display: flex;
    align-items: center;
}

.btn {
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: 300ms;
    border-radius: 5px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.primary {
    background: #1abc9c;
    color: #fff;
}

.secondary {
    background: #fff;
    color: #1abc9c;
}

/* CARROSSEL HERO */
.hero-carousel {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

/* Slide ativo */
.slide.active {
    opacity: 1;
}

/* ── Hero nav buttons ── */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    backdrop-filter: blur(4px);
}
.hero-nav:hover {
    background: rgba(26, 188, 156, 0.75);
    border-color: #1abc9c;
    transform: translateY(-50%) scale(1.1);
}
.hero-nav-prev { left: 18px; }
.hero-nav-next { right: 18px; }

/* ── Hero dots ── */
.hero-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.2s;
}
.hero-dot.active,
.hero-dot:hover {
    background: #1abc9c;
    transform: scale(1.3);
}

/*  Textos */
.hero-text h1,
.hero-text p {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-text h1 {
    text-transform: uppercase;
}

/* DESTAQUE PTA */
.pta-hightligh {
    display: flex;
    gap: 100px;
}

.pta-highlight-text {
    width: 100%;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}

.pta-highlight-text h3 {
    width: 100%;
    color: #1abc9c;
    margin-bottom: 20px;
    text-align: end;
}

.pta-highlight-text p {
    color: #555;
    margin-bottom: 30px;
    width: 100%;
    text-align: end;
}

.pta-highlight-text a {
    background-color: #1abc9c;
    color: #fff;
    padding: 12px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: 300ms;
}

.pta-highlight-text a:hover {
    background-color: #16a085;
    transform: translateY(-3px);
}

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


/* melhora texto mobile */
@media (max-width: 768px) {
    .hero-text {
        padding: 15px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-text .span-hero1 {
        font-size: 15px;
    }

    .hero-text .span-hero2 {
        font-size: 40px;
    }

    .hero-text .span-hero3 {
        font-size: 40px;
    }

    .hero-text .span-hero4 {
        font-size: 15px;
    }

    .hero-icons {
        justify-content: center;
    }

    .hero-icons-item {
        text-align: start;
    }
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .menu {
        position: absolute;
        top: 70px;
        right: 20px;
        background: #fff;
        flex-direction: column;
        width: 200px;
        padding: 20px;
        border-radius: 10px;
        display: none;
    }

    .menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content {
        margin: 0 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .buttons {
        justify-content: center;
    }
}

/* A locação */
.locacao {
    padding: 20px 40px;
}

.locacao-tittle {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.locacao-tittle h1 {
    color: #1abc9c;
}

.locacao-tittle p {
    width: 100%;
    color: #555;
    text-align: center;
}

.locacao-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.locacao-card {
    width: 250px;
    height: 300px;

    background: #fff;
    color: #333;
    padding: 20px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: 300ms;
}

.locacao-card img {
    width: 100px;
}

.locacao-card h4 {
    color: #000;
    font-weight: 600;
    text-align: center;
}

.locacao-card p {
    line-height: 1.5;
    text-align: center;
    color: #555;
}

.locacao-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Destaque PTA */
.destaque-pta {
    padding: 20px 40px;
}

.destaque-content {
    width: 100%;
    height: 100%;
    min-height: 250px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background-color: #1abc9c;
    color: #fff;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.destaque-content img {
    height: auto;
    width: 35%;
    object-fit: cover;
}

.destaque-right {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.destaque-right h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.destaque-right p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.destaque-topicos{
    display: flex;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
}

.destaque-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.destaque-item img {
    width: 30px;
    height: 30px;
    object-fit: cover;
}

.destaque-item p{
    width: 100%;
    font-size: 14px;
    margin-bottom: 0px;
}

.destaque-buttons{
    margin-top: 40px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-destaque1 {
    background-color: #fff;
    color: #1abc9c;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 300ms;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-destaque2 {
    background-color: transparent;
    color: #fff;
    border: 3px solid #fff;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 300ms;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-destaque1:hover,
.btn-destaque2:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .destaque-content {
        flex-direction: column;
        text-align: center;
    }

    .destaque-content img {
        width: 100%;
        height: auto;
    }

    .destaque-topicos{
        justify-content: center;
    }

    .destaque-item img {
    width: 30px;
    height: 30px;
    object-fit: cover;
}

    .destaque-right {
        padding: 20px;
    }

    .destaque-right h1 {
        font-size: 28px;
    }

    .destaque-buttons{
        justify-content: center;
    }
}

/* Ideal */
.ideal {
    padding: 20px 40px;
}

.ideal-content {
    padding: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.ideal-card {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    transition: 300ms;
}

.ideal-card img {
    width: 100px;
}

.ideal-card:hover {
    transform: translateY(-8px);
}

.divisor {
    width: 3px;
    height: 100px;
    background-color: #cfcfcf;
    border-radius: 10px;
}

@media (max-width: 768px) {

    .divisor {
        width: 0px;
        height: 0px;
    }
    
}

/* CARROSSEL */
.carrossel {
    position: relative;
    padding: 20px 40px;
}

.carrossel-container {
    overflow: hidden;
}

.carrossel-track {
    display: flex;
    gap: 20px;
    transition: 0.4s ease;
    padding: 40px;
}

/* CARD */
.card {
    min-width: 300px;
    background: #f5f5f5;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
}

.card-content h3 {
    color: #1abc9c;
    font-size: 16px;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 14px;
    margin-bottom: 5px;
}

.card-content button {
    margin-top: 20px;
    background-color: transparent;
    border: none;
}

.card-content a {
    margin-top: 200px;
    padding: 8px 12px;
    text-decoration: none;
    border: none;
    background: #1abc9c;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: 300ms;
}

.card-content a:hover {
    background: #16a085;
    transform: translateY(-3px);
}

/* BOTÕES */
.button-carousel {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1abc9c;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 300ms;
}

.button-carousel:hover {
    background: #16a085;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* MOTIVO */
.motivo {
    padding: 20px 40px;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* CLIENTES */
.clientes {
    padding: 60px 40px;
    background: #f9f9f9;
    overflow: hidden;
}

.clientes .locacao-tittle {
    text-align: center;
    margin-bottom: 40px;
}

.clientes .locacao-tittle p {
    color: #1abc9c;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.clientes .locacao-tittle h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
}

/* MARQUEE */
.clients-logos {
    overflow: hidden;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logos-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

.clients-logos:hover .logos-track {
    animation-play-state: paused;
}

.logo {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.logo:hover {
    box-shadow: 0 6px 20px rgba(26, 188, 156, 0.18);
    transform: translateY(-3px);
}

.logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(60%);
    opacity: 0.8;
    transition: filter 0.25s ease, opacity 0.25s ease;
}

.logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .clientes {
        padding: 48px 20px;
    }
    .clientes .locacao-tittle h1 {
        font-size: 1.35rem;
    }
    .logo {
        width: 150px;
        height: 80px;
    }
    .logos-track {
        gap: 12px;
        animation-duration: 30s;
    }
}

/* OBSERVAÇÃO */
.observacao {
    padding: 20px 40px;
    text-align: center;
}

.observacao-content {
    background-color: #1abc9c3c;
    border: 2px solid #1abc9c;
    border-radius: 25px;
    margin: 0 auto;
    padding: 20px;

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

.observacao-content img {
    width: 50px;
    margin-right: 15px;
}

.observacao-content p {
    color: #000;
    font-size: 16px;
    line-height: 1.6;
    text-align: start;
}

.observacao-content p span {
    font-weight: bold;
}

@media (max-width: 768px) {
    .observacao-content {
        flex-direction: column;
        text-align: center;
    }

    .observacao-content img {
        margin-bottom: 15px;
    }
}

/* SERVIÇOS */
.servicos {
    padding: 20px 0px;
}

.servicos-carrossel {
    position: relative;
    padding: 20px 40px;
}

.servicos-container {
    overflow: hidden;
}

.servicos-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
    padding: 40px;
}

/* CARD */
.servico-card {
    min-width: 220px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.servico-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.servico-card p {
    font-size: 14px;
    padding: 10px;
}

/* BOTÕES */
.servicos-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1abc9c;
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.servicos-btn.prev {
    left: 10px;
}

.servicos-btn.next {
    right: 10px;
}

.buttons-servicos {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

/* TOPO */
#btnTopo {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #1abc9c;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

#btnTopo:hover {
    transform: scale(1.1);
}

/* FOOTER */
.footer {
    background-color: #101010;
    color: #fff;
    padding-top: 60px;
}

.logo-footer img {
    width: 100%;
    max-width: 2000px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.footer-container {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col a img {
    width: 24px;
    height: 24px;
}

.footer-col a:hover {
    opacity: 0.7;
}

.socials {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 100px;
}

/* COPYRIGHT */
.footer-bottom {
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    font-size: 13px;
}

.footer-bottom a {
    color: #1abc9c;
    text-decoration: none;
    font-weight: bold;
    transition: 300ms;
}

.footer-bottom a:hover {
    color: #ff3131;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .socials {
        align-items: center;
    }

    .footer-col h4,
    .footer-col p,
    .footer-col ul,
    .footer-col li,
    .footer-col a {
        text-align: center;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
}

/* ═══════════════════════════════════════════════════
   SERVIÇOS EM ALTURA — seção home
════════════════════════════════════════════════════ */
.servicos-altura {
    background: #0d1f1a;
    padding: 80px 40px 60px;
    overflow: hidden;
}

/* ── Cabeçalho ── */
.sa-header {
    text-align: center;
    margin-bottom: 48px;
}

.sa-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1abc9c;
    border: 1px solid #1abc9c55;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.sa-header h2 {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
}

.sa-header h2 em {
    font-style: normal;
    color: #1abc9c;
}

.sa-header p {
    color: #8fb8ae;
    font-size: 16px;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Grid bento ── */
.sa-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
    gap: 16px;
    max-width: 1240px;
    margin: 0 auto 48px;
}

/* ── Cards base ── */
.sa-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    cursor: pointer;
    min-height: 240px;
    background: #111;
}

.sa-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.55s ease;
    filter: brightness(0.65);
}

.sa-card:hover img {
    transform: scale(1.07);
    filter: brightness(0.45);
}

/* ── Overlay texto ── */
.sa-card-overlay {
    position: absolute;
    inset: 0;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        transparent 100%
    );
    transition: background 0.35s ease;
}

.sa-card:hover .sa-card-overlay {
    background: linear-gradient(
        to top,
        rgba(10, 40, 30, 0.92) 0%,
        rgba(10, 40, 30, 0.5) 60%,
        transparent 100%
    );
}

.sa-card-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #1abc9c;
    margin-bottom: 8px;
    display: block;
}

.sa-card-overlay h3 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
}

.sa-card-overlay p {
    font-size: 13px;
    color: #c2ddd6;
    line-height: 1.5;
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.sa-card:hover .sa-card-overlay p {
    opacity: 1;
    transform: translateY(0);
}

.sa-card-cta {
    font-size: 13px;
    font-weight: 700;
    color: #1abc9c;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease 0.06s, transform 0.35s ease 0.06s;
}

.sa-card:hover .sa-card-cta {
    opacity: 1;
    transform: translateY(0);
}

/* ── Variantes de tamanho ── */
.sa-card--tall {
    grid-row: span 2;
    min-height: 0; /* deixa o span agir */
}

.sa-card--wide {
    grid-column: span 2;
}

/* ── Rodapé da seção ── */
.sa-footer {
    text-align: center;
}

.sa-footer > p {
    color: #8fb8ae;
    font-size: 16px;
    margin-bottom: 20px;
}

.sa-footer-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Responsivo ── */
@media (max-width: 1024px) {
    .sa-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .sa-card--tall {
        grid-row: span 1;
        min-height: 240px;
    }
    .sa-card--wide {
        grid-column: span 2;
    }
}

@media (max-width: 700px) {
    .servicos-altura {
        padding: 60px 20px 48px;
    }
    .sa-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .sa-card--tall,
    .sa-card--wide {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 200px;
    }
    .sa-card-overlay p {
        opacity: 1;
        transform: none;
    }
    .sa-card-cta {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 420px) {
    .sa-grid {
        grid-template-columns: 1fr;
    }
    .sa-card--wide {
        grid-column: span 1;
    }
}

/* ── Hero nav – responsivo mobile ── */
@media (max-width: 768px) {
    .hero-nav {
        width: 38px;
        height: 38px;
        font-size: 1.5rem;
    }
    .hero-nav-prev { left: 10px; }
    .hero-nav-next { right: 10px; }
    .hero-dots {
        bottom: 12px;
    }
}
