```css
/* =========================================================
   REDECall - CONTATO
   Arquivo: contato.css
   ========================================================= */

/* Seção principal */

.page-content section{
    background:white;
}

#contato {
    position: relative;
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 5rem;
    background: #000000;
    color: #ffffff;
    overflow: hidden;
}

/* Container */
#contato > .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   CABEÇALHO
   ========================================================= */

#contato .text-center {
    text-align: center;
}

#contato .text-center > span {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: #f45525;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

#contato h2 {
    margin-top: 0.75rem;
    margin-bottom: 0;
    color: #ffffff;
    font-size: 3rem;
    line-height: 1.15;
    font-weight: 700;
}

#contato .text-gradient-primary {
    color: #f45525;
}

#contato .text-center > p {
    max-width: 42rem;
    margin: 1rem auto 0;
    color: #a3a3a3;
    font-size: 1.125rem;
    line-height: 1.6;
}

/* =========================================================
   CARD DE CONTATO
   ========================================================= */

#contato .max-w-2xl {
    width: 100%;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

#contato .bg-card {
    background: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

#contato .bg-card:hover {
    border-color: rgba(227, 6, 19, 0.4);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* =========================================================
   ITENS DE CONTATO
   ========================================================= */

#contato .space-y-4 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Links e endereço */
#contato .space-y-4 > a,
#contato .space-y-4 > div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 3.5rem;
}

/* Links */
#contato a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.25s ease;
}

#contato a:hover {
    color: #e30613;
}

/* =========================================================
   ÍCONES
   ========================================================= */

#contato .w-10.h-10 {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 6, 19, 0.1);
    border-radius: 0.5rem;
}

#contato svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #e30613;
    transition: transform 0.25s ease;
}

#contato a:hover svg {
    transform: scale(1.08);
}

/* =========================================================
   TEXTOS DOS ITENS
   ========================================================= */

#contato .text-xs {
    display: block;
    margin-bottom: 0.15rem;
    color: #888888;
    font-size: 0.75rem;
    line-height: 1.4;
}

#contato .text-sm.font-medium {
    display: block;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
}

#contato .text-sm.font-medium:hover {    
    color: #f45525;
}

/* =========================================================
   RESPONSIVIDADE
   ========================================================= */

@media (max-width: 1024px) {

    #contato h2 {
        font-size: 2.75rem;
    }

}

@media (max-width: 767px) {

    #contato {
        padding-top: 2rem;
        padding-bottom: 4rem;
    }

    #contato > .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    #contato .text-center {
        margin-bottom: 2.5rem;
    }

    #contato h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    #contato .text-center > p {
        font-size: 1rem;
    }

    #contato .bg-card {
        padding: 1.25rem;
    }

}

@media (max-width: 480px) {

    #contato h2 {
        font-size: 1.8rem;
    }

    #contato .bg-card {
        padding: 1rem;
    }

    #contato .space-y-4 > a,
    #contato .space-y-4 > div {
        gap: 0.65rem;
    }

    #contato .text-sm.font-medium {
        font-size: 0.8125rem;
    }

}
```