@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;
    }

    body {
        font-family: "Inter", sans-serif;
        line-height: 1.6;
        scroll-behavior: smooth;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
    width: 5px;
    }

    ::-webkit-scrollbar-track {
    background: #fff;
    }

    ::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    }

    ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #cc0000, #990000);
    }

    /* Ícones nos Cartões */
    .credito-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto;
        border-radius: 50%;
        background: #c83f3a80;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, background 0.3s ease;
    }

    .credito-icon img {
        width: 50px;
        height: 50px;
    }

    .credito-card:hover .credito-icon {
        transform: scale(1.2);
        background: #c83f3a;
    }

    /* Animação de Aparição */
    .credito-card {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s ease forwards;
    }

    .credito-card:nth-child(1) {
        animation-delay: 0.2s;
    }

    .credito-card:nth-child(2) {
        animation-delay: 0.4s;
    }

    .credito-card:nth-child(3) {
        animation-delay: 0.6s;
    }

    .credito-card:nth-child(4) {
        animation-delay: 0.8s;
    }

    .credito-card:nth-child(5) {
        animation-delay: 1s;
    }

    .credito-card:nth-child(6) {
        animation-delay: 1.2s;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Footer Geral */
    .footer {
        background-color: #fff;
        color: #c83f3a;
        padding: 3rem 1rem;
        text-align: center;
    }
    .footer a {
        color: #c83f3a;
        text-decoration: none
    }


    /* Wrapper */
    .footer-wrapper {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Colunas do Footer */
    .footer-columns {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 2rem;
        gap: 2rem;
    }

    .footer-column {
        flex: 1;
        min-width: 200px;
        text-align: left;
    }

    .footer-column h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
        text-transform: uppercase;
        color: #c83f3a;
        font-weight: bold;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
    }

    .footer-column ul li {
        margin-bottom: 0.5rem;
    }

    .footer-column ul li a {
        color: #c83f3a;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

    .footer-column ul li a:hover {
        color: #595b59;
    }

    /* Logo */
    .footer-logo {
        width: 250px;
        margin-bottom: 1rem;
    }

    .footer-column p {
        font-size: 0.9rem;
        color: #c83f3a;
        line-height: 1.6;
    }

    /* Rodapé Inferior */
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 1rem;
        font-size: 0.8rem;
        color: #c83f3a;
    }

    /* Footer Bottom em Colunas */
    .footer-bottom-columns {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin: 0 auto;
    }

    .footer-bottom-columns p {
        margin: 0;
    }

    .footer-bottom-columns a {
        color: #c83f3a;
        text-decoration: none;
    }

    .footer-bottom-columns .terms {
        text-align: left;
    }

    .footer-bottom-columns .arbitragem {
        text-align: right;
    }


    .footer-bottom-columns a:hover {
        color: #595b59;
    }

    /* Desenvolvedor */
    .footer-developer {
        margin-top: 1rem;
        font-size: 0.8rem;
        color: #c83f3a;
    }

    .footer-developer a {
        color: #c83f3a;
        text-decoration: none;
        font-weight: bold;
    }

    .footer-developer a:hover {
        color: #595b59;
    }

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

        .footer-column {
            text-align: center;
        }

        .footer-bottom-columns {
            flex-direction: column;
            text-align: center;
        }
    }

    .section-testemunhos {
        background-color: #c83f3a;
        color: #fff;
        padding: 4rem 2rem;
        text-align: center;
    }

    .section-testemunhos h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        color: #fff;
        animation: slideInTop 1s ease forwards;
    }

    .slider {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .slider .slides {
        display: flex;
        transition: transform 0.5s ease;
    }

    .slider .slide {
        min-width: 100%;
        box-sizing: border-box;
        padding: 3rem 2rem;
        background: #fff;
        color: #c83f3a;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .slider .slide img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        border: 3px solid #c83f3a;
        object-fit: cover;
    }

    .slider .slide p {
        font-size: 1.2rem;
        line-height: 1.6;
        margin: 0;
    }

    .slider .slide h3 {
        font-size: 1.5rem;
        margin-top: 1rem;
        color: #c83f3a;
    }

    .slider .controls {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
    }

    .slider .control {
        color: #c83f3a;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .slider .control:hover {
        background-color: #fff;
    }

    @keyframes slideInTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }

    .section-parceiros {
    padding: 3rem 1rem;
    background-color: #fff;
    }

    .section-parceiros h2 {
    font-size: 1.8rem;
    color: #0072bc;
    text-align: center;
    margin-bottom: 2rem;
    }

    .parceiros-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    }

    .parceiros-container img {
    width: 100%;
    max-height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
    }

    .parceiros-container img:hover {
    transform: scale(1.1);
    }

    /* Section de Contactos */
    .section-contacto {
        background: url("../images/elisiosimoesestabelecimento.webp") no-repeat center center;
        background-size: cover;
        padding: 4rem 2rem;
        color: #fff; /* Deixa o texto branco para melhor contraste */
        position: relative;
    }

    /* Adiciona um overlay para melhorar a legibilidade do texto */
    .section-contacto::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* Escurece o fundo para melhor contraste */
        z-index: 1;
    }


    .section-contacto .contact-wrapper {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .contact-info, .form-container {
    flex: 1;
    min-width: 300px;
    }

    .contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 2rem;
    background-color: #c83f3a;
    color: #fff;
    border-radius: 10px;
    animation: fadeInLeft 1.2s ease;
    }

    .contact-info p {
    margin: 0.5rem 0;
    }

    .contact-info a {
    color: #f4f4f4;
    text-decoration: none;
    }

    .contact-info a:hover {
    color: #dadada;
    }

    .form-container {
    animation: fadeInRight 1.2s ease;
    }

    form {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    }

    form input, form textarea, form button {
    width: 100%;
    padding: 0.8rem;
    margin: 0.5rem 0;
    border: 1px solid #c83f3a;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    }

    form input:focus, form textarea:focus {
    border-color: #c83f3a;
    outline: none;
    }

    form button {
    background-color: #c83f3a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
    }

    form button:hover {
    background-color: #0059b3;
    }

    @keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
    }

    @keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
    }

    @keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }

    @keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }

    @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }