/* ============================= */
/*       RESET E BASE           */
/* ============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #333;
    line-height: 1.6;
    background: #fff;
    font-family: Arial, sans-serif;
}


/* ============================= */
/*         NAVIGATION            */
/* ============================= */
header {
    padding: 1.5rem;
    background: #fff;
}

/* Mantém estilo do logo */
.logo-image {
    width: 300px;
    height: auto;
    border-radius: 50px;
}

/* Mantém estilo dos links */
.navbar .nav-link {
    color: #676565;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
}

.navbar .nav-link.active {
    border-bottom: 2px solid #676565;
    padding-bottom: 5px;
    width: fit-content;
}

/* Centraliza logo no mobile */
@media (max-width: 992px) {
    .navbar-brand {
        top: 0px;
        left: 50%;
        padding-left: 100px;
        position: absolute;
        transform: translateX(-50%);
    }
}


/* ============================= */
/*          SECTIONS             */
/* ============================= */
main {
    align-items: center;
    justify-content: center;
}

section {
    width: 100%;
    height: auto;
}

section h2 {
    margin-bottom: 1rem;
}


/* ============================= */
/*             HOME              */
/* ============================= */
.home-section {
    position: relative;
    overflow: visible;
    padding: 1rem;
}

/* Imagem */
.home-section .home-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 50px;
}

/* Texto sobre imagem - Desktop */
.home-section .home-text {
    position: absolute;
    top: 45%;
    right: 5%;
    max-width: 30%;
    color: #fff;
    transform: translateY(-50%);
    text-align: left;
}

.home-section .home-text h1 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    margin-bottom: 1rem;
}

.home-section .home-text p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}

@media (max-width: 1400px) {
    .home-section .home-text {
        left: 15%;          /* espaçamento da esquerda */
        right: auto;       /* remove o right */
        top: 50%;          /* centraliza verticalmente */
        transform: translateY(-50%); 
        max-width: 40%;    /* aumenta largura do texto */
        text-align: left;
    }

    .home-section .home-text h1 {
        font-size: 1.5rem;
    }

    .home-section .home-text p {
        font-size: 1.2rem;
    }
}

/* -------------------- Responsividade -------------------- */
@media (max-width: 900px) {
    /* Texto vira card abaixo da imagem */
    .home-section .home-text {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        max-width: 95%;
        margin: 1rem auto 2rem auto; /* centraliza e adiciona espaçamento */
        padding: 1.5rem;
        background: #fff;
        color: #000;
        text-align: left;
        border-radius: 20px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
}



/* ========================================= */
/*             STATISTICS CONTAINER          */
/* ========================================= */

/* Container geral */
.statistics-container {
    height: 50px;
    margin-top: 4rem;
    position: relative;
}

/* Faixa preta que envolve os dados */
.statistics-section {
    top: 0;
    left: 50%;
    width: 90%;
    z-index: 10;
    height: 100px;
    display: flex;
    padding: 1rem 2rem;
    position: absolute;
    align-items: center;
    border-radius: 35px;
    background: #000000;
    justify-content: center;
    transform: translate(-50%, -5%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Container interno - versão desktop */
.statistics-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Blocos de estatística */
.statistics-content p,
.statistics-section p {
    margin: 0;
    display: flex;
    align-items: center;
    /* coloca número + textos alinhados verticalmente */
    font-family: 'Work Sans', sans-serif;
    text-align: center;
}

/* Estilos individuais */
.plus {
    color: #FE320A;
    font-size: 2.5rem;
    font-weight: bold;
    margin-right: 0.5rem;
}

.number {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 900;
    margin-right: 1rem;
}

.text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.text-normal {
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.text-bold {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ========================================= */
/*            RESPONSIVIDADE (MOBILE)        */
/* ========================================= */
@media (max-width: 992px) {

    .statistics-section {
        left: auto;
        width: 90%;
        height: auto;
        padding: 1.5rem;
        transform: none;
        margin: 2rem auto;
        position: relative;
        border-radius: 50px;
    }

    .statistics-section p {
        justify-content: center;
    }

    .plus,
    .number {
        font-size: 2rem;
        margin-right: 0.5rem;
    }

    .text-normal,
    .text-bold {
        font-size: 0.9rem;
    }

    /* === CONTROLES DO CARROSSEL === */
    #statisticsCarousel .carousel-control-prev,
    #statisticsCarousel .carousel-control-next {
        top: 50%;
        z-index: 10;
        width: 50px;
        height: 50px;
        border: none;
        display: flex;
        background: none;
        position: absolute;
        align-items: center;
        opacity: 1 !important;
        justify-content: center;
        transform: translateY(-50%);
        transition: background 0.3s ease;
    }

    /* Posicionamento lateral */
    #statisticsCarousel .carousel-control-prev {
        left: 2rem;
    }

    #statisticsCarousel .carousel-control-next {
        right: 2rem;
    }

    /* Hover com feedback visual */
    #statisticsCarousel .carousel-control-prev:hover,
    #statisticsCarousel .carousel-control-next:hover {
        border-radius: 50%;
        background: rgb(208, 199, 199);
    }

    /* Ícones brancos para contraste com fundo preto */
    #statisticsCarousel .carousel-control-prev-icon,
    #statisticsCarousel .carousel-control-next-icon {
        width: 1.5rem;
        height: 1.5rem;
        filter: invert(0%);
    }
}



/* ============================= */
/*             ABOUT             */
/* ============================= */
.about-section {
    height: auto;
    color: #fff;
    margin: 0 0 1rem 0;
}

.about-section .about-image {
    width: 60%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.about-content {
    z-index: 2;
    width: 100%;
    height: 700px;
    display: flex;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    background-color: #FE320A;
}

/* Textos laterais */
.side-text {
    top: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    color: #000000;
    position: absolute;
    letter-spacing: 2px;
    white-space: nowrap;
    transform: translateY(-50%) rotate(90deg);
}

.side-text.left {
    left: -10px;
    transform: translateY(-50%) rotate(-90deg);
}

.side-text.right {
    right: -10px;
    transform: translateY(-50%) rotate(90deg);
}

/* Textos laterais - todos preto */
.side-text-left-normal-span,
.side-text-right-normal-span {
    color: #000;
    /* preto */
    font-weight: normal;
}

.side-text-left-bold-span,
.side-text-right-bold-span {
    color: #000;
    /* preto */
    font-weight: bold;
    /* negrito */
}


/* Texto central */
.center-text {
    top: 50%;
    left: 50%;
    z-index: 2;
    font-size: 5.5rem;
    font-weight: 500;
    position: absolute;
    letter-spacing: 4px;
    transform: translate(-50%, -50%);
    /* centraliza vertical e horizontal */
    font-family: 'Work Sans', sans-serif;
}

/* Elipse */
.center-text .ellipse {
    left: 50%;
    width: 650px;
    height: 170px;
    top: 50%;
    /* centraliza vertical */
    border-radius: 50%;
    position: absolute;
    border: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(25deg);
}

/* Pontos da elipse */
.center-text .ellipse::before,
.center-text .ellipse::after {
    top: 50%;
    content: "";
    width: 12px;
    height: 12px;
    background: #fff;
    position: absolute;
    border-radius: 50%;
    transform: translateY(-50%);
}

.center-text .ellipse::before {
    left: -10px;
    width: 20px;
    height: 20px;
    background-color: #000;
}

.center-text .ellipse::after {
    right: -8px;
    width: 20px;
    height: 20px;
    background-color: #000;
}

/* Texto descritivo fora da box laranja */
.about-description {
    color: #000;
    padding: 1.5rem;
    max-width: 900px;
    line-height: 1.6;
    position: relative;
    font-size: 1.05rem;
    background: #fff;
    text-align: justify;
    border-radius: 12px;
    margin: 2rem auto 0 auto;
    font-family: 'Work Sans', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-description p {
    margin: 1rem 0;
}

/* ============================= */
/*         RESPONSIVO            */
/* ============================= */

/* Tablet */
@media (max-width: 992px) {
    .about-content {
        height: 350px;
    }

    .about-section .about-image {
        width: 70%;
    }

    .side-text {
        font-size: 1.4rem;
    }

    .side-text.left {
        left: 0;
    }

    .side-text.right {
        right: 0;
    }

    .center-text {
        font-size: 4rem;
    }

    .center-text .ellipse {
        width: 450px;
        height: 120px;
    }

    .about-description {
        font-size: 1rem;
        max-width: 90%;
        padding: 1.2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-content {
        height: 350px;
    }

    .about-section .about-image {
        width: 85%;
    }

    .side-text {
        font-size: 1rem;
    }

    .side-text.left {
        left: -5px;
    }

    .side-text.right {
        right: -5px;
    }

    .center-text {
        font-size: 2.2rem;
    }

    .center-text .ellipse {
        width: 280px;
        height: 80px;
    }

    .about-description {
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 95%;
        padding: 1rem;
    }

    .center-text .ellipse::before,
    .center-text .ellipse::after {
        width: 15px;
        height: 15px;
    }
}


/* ============================= */
/*             SERVICES          */
/* ============================= */
.services-section {
    position: relative;
    padding: 3rem 2rem 0 2rem;
    background-color: #fff;
}

.services-title {
    font-weight: 300;
    font-size: 4.5rem;
    margin: 0 0 2rem 2rem;
    text-transform: uppercase;
    font-family: 'Work Sans', sans-serif;
}

/* Container dos cards */
.services-cards {
    gap: 2rem;
    display: flex;
    flex-wrap: wrap;
    padding-left: 12rem;
    padding-right: 12rem;
    justify-content: space-between;
}

/* Cada card */
.service-card {
    padding: 2rem;
    display: flex;
    flex: 1 1 300px;
    min-width: 300px;
    min-height: 300px;
    text-align: center;
    position: relative;
    align-items: center;
    border-radius: 35px;
    box-sizing: border-box;
    flex-direction: column;
    background-color: #fff;
    border: 2px solid #000;
}

.card-number {
    top: 10px;
    left: 10px;
    color: #000000;
    font-size: 1.2rem;
    font-weight: bold;
    position: absolute;

    /* Circle */
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 2px solid #FE320A;
}

.service-card h3 {
    font-weight: 300;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Work Sans', sans-serif;
}

.service-title {
    margin: 1.5rem 0;
    font-weight: 300;
    font-size: 1.5rem;
}

.service-name {
    color: #000;
    font-weight: 300;
}

.service-number {
    color: #FE320A;
    font-weight: 300;
}


.service-card-separator {
    width: 20%;
    margin: 1rem 0;
    border: 1px solid #FE320A;
}

.service-card p {
    margin: 0;
}

@media (max-width: 992px) {
    #servicesCarousel {
        padding: 0;
        width: 100%;
        display: flex;
        position: relative;
        justify-content: center;
    }

    .carousel-item {
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-card {
        width: 90%;
        margin: 0 auto;
        max-width: 500px;
        min-height: auto;
    }

    /* === CONTROLES DO CARROSSEL === */
    #servicesCarousel .carousel-control-prev,
    #servicesCarousel .carousel-control-next {
        top: 40%;
        width: 50px;
        height: 50px;
        border: none;
        display: flex;
        background: none;
        position: absolute;
        align-items: center;
        opacity: 1 !important;
        justify-content: center;
        transform: translateY(-50%);
        transition: background 0.3s ease;
    }

    /* Posicionamento lateral */
    #servicesCarousel .carousel-control-prev {
        left: 0.5rem;
        transform: translateX(-50%);
    }

    #servicesCarousel .carousel-control-next {
        right: 0.5rem;
        transform: translateX(50%);
    }

    /* Hover com feedback visual */
    #servicesCarousel .carousel-control-prev:hover,
    #servicesCarousel .carousel-control-next:hover {
        border-radius: 50%;
        background: rgb(208, 199, 199);
    }

    /* Ícones brancos para contraste com fundo preto */
    #servicesCarousel .carousel-control-prev-icon,
    #servicesCarousel .carousel-control-next-icon {
        width: 1.5rem;
        height: 1.5rem;
        filter: invert(100%);
    }
}



/* ============================= */
/*             CLIENTS           */
/* ============================= */
.clients-section {
    position: relative;
    margin-top: 8rem;
    padding: 0 2rem 3rem 2rem;
    background-color: #fff;
}

.clients-black-box {
    height: auto;
    color: #fff;
    padding: 2rem;
    padding-bottom: 6rem;
    margin: 0 auto;
    text-align: center;
    border-radius: 20px;
    background: #000000;
}

.clients-black-box .clients-header {
    background-color: #000000;
}

.clients-black-box h1 {
    font-weight: 300;
    font-size: 3.5rem;
    margin-bottom: -1rem;
    text-transform: uppercase;
    font-family: 'Work Sans', sans-serif;
}

.clients-black-box h3 {
    color: #FE320A;
    font-size: 2.5rem;
    font-weight: normal;
    font-family: 'Work Sans', sans-serif;
}

/* Container de cards */
.clients-cards {
    gap: 5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Cada card */
.client-card {
    flex: 1 1 25%;
    display: flex;
    padding: 2rem;
    max-width: 400px;
    background: #111;
    align-items: center;
    border-radius: 50px;
    flex-direction: column;
}

/* Foto do cliente */
.client-photo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 50%;
    background: #333;
    margin-bottom: 1rem;
    border: 3px solid #FE320A;
}

/* Nome */
.client-name {
    color: #AEAEAE;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0.5rem 0 1rem;
}

/* Estrelas */
.client-stars {
    width: 200px;
    height: 30px;
    background:
        linear-gradient(90deg, #FE320A var(--percent, 0%), #fff var(--percent, 0%));
    -webkit-mask: url('data:image/svg+xml;utf8,\<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20">\<text y="18" font-size="20">★★★★★</text>\</svg>') no-repeat center;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><text y="18" font-size="20">★★★★★</text></svg>') no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    margin-left: 20px;
    margin-bottom: 1.5rem;
}

/* Comentário */
.client-comment {
    margin: 0 auto;
    color: #AEAEAE;
    line-height: 1.2;
    max-width: 600px;
    position: relative;
    font-size: 0.95rem;
    text-align: center;
}

/* Aspa de abertura */
.client-comment .quote.open {
    font-size: 2rem;
    color: #FE320A;
    font-weight: bold;
    margin-right: 6px;
}

/* Aspa de fecho */
.client-comment .quote.close {
    display: block;
    font-size: 2rem;
    color: #FE320A;
    font-weight: bold;
    text-align: right;
    margin-top: 0.5rem;
}

@media (max-width: 992px) {

    #clientsCarousel {
        width: 100%;
        display: flex;
        position: relative;
        justify-content: center;
    }

    .carousel-item {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .client-card {
        width: 90%;
        margin: 0 auto;
        max-width: 400px;
    }

    #clientsCarousel .carousel-control-prev,
    #clientsCarousel .carousel-control-next {
        top: 40%;
        width: 50px;
        height: 50px;
        border: none;
        display: flex;
        background: none;
        position: absolute;
        align-items: center;
        opacity: 1 !important;
        justify-content: center;
        transform: translateY(-50%);
        transition: background 0.3s ease;
    }

    /* Posicionamento lateral */
    #clientsCarousel .carousel-control-prev {
        left: -1rem;
    }

    #clientsCarousel .carousel-control-next {
        right: -1rem;
    }

    /* Hover com feedback visual */
    #clientsCarousel .carousel-control-prev:hover,
    #clientsCarousel .carousel-control-next:hover {
        border-radius: 50%;
        background: rgb(134, 128, 128);
    }

    /* Ícones brancos para contraste com fundo preto */
    #clientsCarousel .carousel-control-prev-icon,
    #clientsCarousel .carousel-control-next-icon {
        width: 1.5rem;
        height: 1.5rem;
        filter: invert(0%);
    }
}



/* ============================= */
/*         CONTACTS SECTION       */
/* ============================= */
.contacts-section {
    display: flex;
    margin-top: 2rem;
    background-color: #fff;
}

/* Coluna da imagem */
.contacts-image {
    flex: 1;
    background: url("../images/contacts-logo-cut.jpg") no-repeat center center/cover;
}

/* Coluna do conteúdo */
.contacts-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Cabeçalho (título + descrição) */
.contacts-header h1 {
    margin: 0;
    font-size: 3rem;
    text-align: center;
}

.contacts-header p {
    color: #555;
    font-size: 1rem;
    margin: 0.5rem 0 2rem;
    text-align: center;
}

/* Formulário */
.contacts-form {
    gap: 3rem;
    display: flex;
    align-items: center;
    flex-direction: column;
}

/* Inputs e textarea */
.contacts-form input,
.contacts-form textarea {
    width: 70%;
    outline: none;
    font-size: 1rem;
    border-radius: 15px;
    padding: 0.9rem 2rem;
    border: 2px solid #000000;
    transition: border-color 0s ease;
    font-family: 'Work Sans', sans-serif;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.contacts-form select {
    width: 70%;
    outline: none;
    cursor: pointer;
    font-size: 1rem;
    appearance: none;
    border-radius: 15px;
    padding: 0.9rem 2rem;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: 2px solid #000000;
    transition: border-color 0s ease;
    font-family: 'Work Sans', sans-serif;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.contacts-form select {
    padding-right: 2rem;
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23000" height="12" viewBox="0 0 24 24" width="12" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
}

.contacts-form select:focus {
    border-color: #FE320A;
}


.contacts-form input::placeholder,
.contacts-form textarea::placeholder {
    opacity: 1;
    color: #999;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

select:invalid {
    color: #999;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

option {
    color: #000;
}

.contacts-form textarea {
    height: 150px;
    resize: vertical;
}

.contacts-form input:focus,
.contacts-form select:focus,
.contacts-form textarea:focus {
    border-color: #FE320A;
}

/* Botão */
.contacts-form button {
    width: 25%;
    border: none;
    padding: 1rem;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 300;
    border-radius: 10px;
    background: #FE320A;
    transition: background 0.3s ease;
}

.contacts-form button:hover {
    background: #cc2908;
}

@media (max-width: 992px) {

    /* Oculta a imagem */
    .contacts-image {
        display: none;
    }

    /* Form ocupa toda a largura */
    .contacts-content {
        flex: 1 1 100%;
        padding: 2rem 1rem;
        /* ajusta padding para mobile */
    }

    /* Cabeçalho */
    .contacts-header h1 {
        font-size: 2rem;
        /* menor que desktop */
    }

    .contacts-header p {
        font-size: 1rem;
    }

    /* Inputs e textarea */
    .contacts-form input,
    .contacts-form textarea,
    .contacts-form select {
        width: 90%;
        /* ocupa mais espaço horizontal */
        font-size: 0.9rem;
        /* menor que desktop */
        padding: 0.7rem 1.5rem;
    }

    /* Textarea height reduzido */
    .contacts-form textarea {
        height: 120px;
    }

    /* Botão */
    .contacts-form button {
        width: 50%;
        /* ocupa mais espaço no mobile */
        font-size: 0.9rem;
        padding: 0.8rem;
    }
}




/* ============================= */
/*            FOOTER             */
/* ============================= */
footer {
    left: 0;
    bottom: 0;
    width: 100%;
    color: #fff;
    position: relative;
    text-align: center;
    padding: 10rem 1rem;
    background: #FE320A;
}

.footer-left-column {
    text-align: left;
    margin-left: 4rem;
}

.footer-left-column h1 {
    font-size: 30px;
    font-weight: 600;
    display: inline-block;
    border-bottom: 3px solid #fff;
    font-family: 'Work Sans', sans-serif;
}

.footer-left-column p {
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    margin: 0.5rem 0;
    font-weight: 300;
    padding-top: 0.3rem;
    font-family: 'Work Sans', sans-serif;
}

.footer-left-column a {
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: 'Work Sans', sans-serif;
}

.footer-left-column a:hover {
    color: #fff;
    text-decoration: none;
    transform: scale(1.02);
    text-shadow: 0 2px 6px rgba(0, 0, 1, 0.8);
}

.footer-left-column a:visited,
.footer-left-column a:active {
    color: #fff;
    transform: none;
    text-shadow: none;
    text-decoration: none;
}

.footer-right-column {
    text-align: right;
    margin-right: 4rem;
}

.footer-right-column h1 {
    font-size: 24px;
    font-weight: normal;
    display: inline-block;
    border-bottom: 2px solid #fff;
    font-family: 'Work Sans', sans-serif;
}

.footer-right-column p {
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    margin: 0.5rem 0;
    font-family: 'Work Sans', sans-serif;
}

/* Footer Socials */
.footer-socials {
    top: 9rem;
    right: 20rem;
    color: #fff;
    position: absolute;
    font-family: 'Work Sans', sans-serif;
}

.footer-socials h1 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
    border-bottom: 3px solid #fff;
    font-family: 'Work Sans', sans-serif;
}

.social-list {
    margin: 0;
    padding: 0;
    gap: 0.8rem;
    display: flex;
    right: -1.5rem;
    list-style: none;
    position: relative;
    flex-direction: column;
}

.social-list li a {
    gap: 0.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    margin-right: 0rem;
    text-decoration: none;
}

.social-icon {
    width: 35px;
    height: 35px;
    display: flex;
    flex-shrink: 0;
    padding: 1.3rem;
    color: #FE320A;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fff url("../images/facebook.jpg") no-repeat center center/cover;
}

.social-list li a:hover .social-icon {
    color: #fff;
    transform: scale(1.1);
    /* aumenta ligeiramente */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    /* sombra suave */
}

/* Personalização por rede (opcional) */
.social-icon.facebook {
    color: #fff;
    background: url("../images/facebook.jpg") no-repeat center center/cover;
}

.social-icon.instagram {
    color: #fff;
    background: url("../images/instagram.jpeg") no-repeat center center/cover;
}

.social-icon.linkedin {
    color: #fff;
    background: url("../images/linkedin.png") no-repeat center center/cover;
}

.footer-bottom {
    left: 0;
    width: 100%;
    bottom: 1.5rem;
    display: flex;
    padding: 0 2rem;
    position: absolute;
    align-items: center;
    box-sizing: border-box;
    justify-content: space-between;
}

.footer-logo {
    width: 300px;
    height: auto;
    margin-left: 4rem;
}

.footer-rights {
    color: #fff;
    font-size: 18px;
    margin-right: 4rem;
    font-family: 'Work Sans', sans-serif;
}

@media (max-width: 992px) {

    footer {
        display: flex;
        text-align: center;
        padding: 4rem 1rem;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    /* Colunas passam a empilhar */
    .footer-left-column,
    .footer-right-column {
        margin: 0;
        text-align: center;
    }

    /* Ajusta títulos */
    .footer-left-column h1,
    .footer-right-column h1 {
        font-size: 1.8rem;
        border-bottom-width: 2px;
    }

    /* Ajusta links */
    .footer-left-column p,
    .footer-left-column a {
        font-size: 1.2rem;
    }

    /* Social list vertical */
    .footer-socials {
        top: 0;
        right: 0;
        margin: 2rem 1rem 2rem;
        position: relative;
    }

    .social-list {
        gap: 1rem;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        padding: 0.8rem;
    }

    /* Footer bottom empilha */
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        position: relative;
        margin-top: 2rem;
    }

    .footer-logo {
        width: 300px;
        margin: 1rem auto;
    }

    .footer-rights {
        font-size: 16px;
        margin: 0 auto;
    }
}

@media (max-width: 550px) {
    .social-list {
        gap: 0.5rem;
        align-items: center;
        flex-direction: column;
    }

    .social-list li a {
        margin: 0 0 0 -3rem;
    }

    .footer-bottom {
        gap: 1rem;
        margin-top: 2rem;
        position: relative;
        align-items: center;
        flex-direction: column;
    }

    .footer-logo,
    .footer-rights {
        margin: 0 auto;
    }
}



/* ============================= */
/*          POPUP MODAL          */
/* ============================= */

#popup {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}

#popup .box {
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    text-align: center;
}

#popup button {
    border: none;
    color: #fff;
    cursor: pointer;
    margin-top: 10px;
    padding: 8px 16px;
    border-radius: 5px;
    background: #0073e6;
}

/* ============================= */