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

    html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-image: url('img/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    }

    .container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    }

    .container-custom h2 {
    color: white;
    }

    header {
    padding: 1.5rem 0;
    background-color: rgba(0, 0, 0, 0.7);
    }

    header .container-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    }

    header .logo img {
    max-height: 60px;
    width: auto;
    height: auto;
    display: block;
    }

    header nav {
    display: flex;
    gap: 2rem;
    }

    header nav a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
    }

    header nav a:hover {
    color: #ea384c;
    }

    #blocoinicial {
    position: relative;
    width: 100%;
    min-height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
    box-sizing: border-box;
    color: white;
    text-align: center;
    overflow: hidden;
    }

    .banner-img {
    width: 100%;
    height: auto;
    max-width: 2000px;
    display: block;
    }

    #tituloprincipal {
    display: flex;
    align-items: center;
    gap: 1.5vh;
    font-size: 110%;
    font-family: 'Inter', Arial, sans-serif;
    color: white;
    }

    h1, h2 {
    margin: 0;
    }

    #Agencia {
    color: red;
    }

    .divisor-vermelho {
    width: 100%;
    height: 3px;
    background-color: #ea384c;
    margin: 2rem 0;
    }

    .services {
    padding: 3rem 0;
    color: white;
    }

    .services h2 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    font-family: 'Montserrat', sans-serif;
    }

    .services-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    }

    .image-link {
    display: block;
    width: 100%;
    max-width: 900px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
    background-color: #ea384c;
    }

    .image-link:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background-color: #ff6f61;
    }

    .image-link img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
    }

    .image-link:hover img {
    transform: scale(1.1);
    }

    @media (max-width: 768px) {
    #blocoinicial {
        min-height: 30vh;
        background-size: cover;
    }

    #tituloprincipal h1 {
        font-size: 1.5rem;
    }

    #Agencia {
        font-size: 1.8rem;
    }

    .services {
        padding-top: 1rem;
    }
    }

    @media (max-width: 500px) {
    .image-link {
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    .services {
        padding: 2rem 0.5rem;
    }

    .services h2 {
        margin-bottom: 2rem;
    }
    }

    footer {
    padding: 3rem 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: #cccccc;
    backdrop-filter: saturate(180%) blur(10px);
    }

    .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    }

    #seçao1,
    #seçao2,
    #seçao3 {
    flex: 1 1 280px;
    max-width: 350px;
    text-align: left;
    }

    footer h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ea384c;
    }

    .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    }

    .footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
    }

    .footer-links a:hover {
    color: #ea384c;
    }

    footer p {
    color: #cccccc;
    margin-bottom: 0.5rem;
    }

    #rodapecompleto {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem auto 0;
    width: 100%;
    text-align: center;
    }

    #seçao4 {
    margin-top: 1rem;
    }

    hr {
    height: 1px;
    background-color: #444;
    width: 68%;
    margin: 2rem auto;
    }

    @media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    #seçao1,
    #seçao2,
    #seçao3 {
        max-width: 100%;
        flex: 1 1 100%;
        margin-left: 7%;
        text-align: center;
    }
    }

    #seçao1 {
        margin-left: 5%;
    }
    #seçao2 {
        margin-left: 5%;
    }
    
    .min-h-screen {
    min-height: 100vh;
    }

    .flex {
    display: flex;
    }

    .flex-col {
    flex-direction: column;
    }

    .flex-grow {
    flex-grow: 1;
    }
