/* Variáveis e Reset */
:root {
    --azul-principal: #2A5C82;
    --vermelho-destaque: #C3423F;
    --branco: #FFFFFF;
    --cinza-claro: #F5F5F5;
    --azul-escuro: #1A3A4D;
    --sombra: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transicao: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --borda: 2px solid rgba(42, 92, 130, 0.1);

    --clr-neutral-100: hsl(0, 0%, 100%);
    --clr-primary-100: hsl(205, 15%, 58%);
    --clr-primary-400: hsl(215, 25%, 27%);
    --clr-primary-800: hsl(217, 33%, 17%);
    --clr-primary-900: hsl(218, 33%, 9%);
}


/* =================== BOTÃO BASE =================== */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transicao);
    text-decoration: none;
    display: inline-block;
}


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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: var(--branco);
    color: var(--azul-escuro);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Header */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transicao);
    padding: .2em 0;
}

.header.scrolled {
    background-color: var(--branco);
    box-shadow: var(--sombra);

}

.scrolled .logo {
    width: 110px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-color: transparent;
}

.logo {
    width: 150px;
    transition: var(--transicao);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #ffffff;
    padding-left: 20px;
    border: var(--borda);
}


.nav-content {
    display: flex;
    align-items: center;
    gap: 1.5em;
    margin-right: 1em;
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-list a {
    color: var(--branco);
    text-decoration: none;
    font-weight: 500;
    font-size: .8em;
    position: relative;
    cursor: pointer;
    transition: var(--transicao);
}

.header.scrolled .nav-list a {
    color: var(--azul-escuro);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2793ff;
    transition: var(--transicao);
}

.nav-list a:hover::after {
    width: 100%;
}

.button-doar {
    width: 135px;
    height: 47px;
    background: #2793FF;
    color: #fff !important;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    text-decoration: none;
}

.button-doar:hover {
    background-color: #1A6ED8;
}

/* Menu Mobile */
.menu-mobile {
    display: none;
    background-color: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--branco);
    position: relative;
    transition: var(--transicao);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: inherit;
    transition: var(--transicao);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

@media (max-width: 992px) {
    .menu-mobile {
        display: block;
    }

    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--branco);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transicao);
    }

    .nav-list.active {
        left: 0;
    }

    .nav-list a {
        color: var(--azul-escuro);
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
        width: 100%;
    }

    .header.scrolled .nav-list a {
        color: var(--azul-escuro);
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    margin-bottom: .3em;
}



.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--branco);
    z-index: 2;
    width: 100%;
    padding: 0 1.5rem;
}

.hero-content h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Botões Hero (nova classe) */
.btn-hero {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transicao);
    text-decoration: none;
    display: inline-block;
    border: 2px solid var(--branco);
    background-color: transparent;
    color: var(--branco);
    margin: 0 10px;
}

.btn-hero:hover {
    background-color: var(--vermelho-destaque);
    border-color: var(--vermelho-destaque);
    transform: translateY(-3px);
}



.destaque {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    display: block;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Container Geral */
.container {
    max-width: 1200px;
    margin: 0 auto;

}

/* Carrossel Modernizado */
.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 40px 0;
    border: var(--borda);
    border-radius: 15px;
    margin: 2rem 0;
    padding: 20px;
    background-color: var(--branco);
    box-shadow: var(--sombra);
    border-radius: 15px;
}


/* carrousel 2*/


.scroller__inner {
    padding-block: .2em;
    display: flex;
    flex-wrap: wrap;
    gap: .4em;
}

.scroller__inner a {
    text-decoration: none;
    color: var(--branco);
    position: relative;
}

.scroller__inner a p {
    position: absolute;
    bottom: -10px;
    width: 300px;
    background-color: #000B37;
    padding: .14em 0;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    white-space: nowrap;
}

.scroller__inner img {
    border-radius: .14em;
    width: 300px;
    height: 300px;
    /* Altura adicionada */
    object-fit: cover;
    /* Adicionado para preenchimento sem distorção */
}

.scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
    --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
    --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
    --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
    --_animation-duration: 60s;
}

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}


/* Seção Sobre */
.sobre-section {
    padding: 4em 0;
    border: var(--borda);
    min-height: 9 0vh;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4em;
    align-items: center;
}

.sobre-texto {
    display: flex;
    height: 280px;
    line-height: 1.8em;
    flex-direction: column;
    justify-content: space-between;
}

.sobre-texto div h2 {
    font-weight: bold;
    font-size: 2em;
}

.sobre-texto h2 {
    margin-bottom: 1rem;
}

.sobre-imagem img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 15px 15px 0 #6b1513;
}

/* information section */
.information-section {
    background-color: black;
    display: flex;
    justify-content: center;
    padding: 4em 0 5em 0;
    color: var(--branco);
}

.icon-group {
    font-size: 10em;
    color: #e2f4ff;
}

.icon-passar {
    width: 50px;
    height: 50px;
}

.icon-passar svg {
    width: 80%;
    fill: var(--azul-escuro);
    height: 80%;
}

.splide__track {
    margin-bottom: 5em;
}

.icon-left {
    top: 55%;
    left: -45px;
}

.icon-right {
    top: 55%;
    right: -45px;
}

.content-information {
    width: 90%;
    margin: 0 auto;
}

.content-information-header {
    display: flex;
    align-items: center;
    gap: 1em;

}

.content-information-footer {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.content-information-footer .div-footer-information {
    display: flex;
    align-items: center;
    gap: 1em;
}

.icon-house-plus,
.icon-box-open {
    color: #e2f4ff;
    font-size: 3em;
}

.content-information-header div h3,
.content-information-header div h4 {
    font-size: 3.8em;
    font-weight: 800;
    font-style: italic;
}

.div-footer-information p {
    color: #E4F1FF;
    font-size: 1.45em;
}

.content-information-header div p {
    color: #E4F1FF;
    font-size: 2em;
}


/* section horarios */
.horariosf-section {
    padding: 3em 0 5em;
    color: var(--cinza-claro);
    background-color: black;
}

.horariosf-section h5 {
    font-size: 2em;
    font-weight: 800;
    color: var(--branco);
    width: 100%;
    margin-left: 4.5%;
    margin-bottom: .50em;

}

.table table {
    width: 90%;
    margin-left: auto;
    margin-right: 1em;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.table table th {
    font-size: 1.34em;
    font-weight: 800;
    border: 3px solid #fff;
    padding: .80em;
    text-align: initial;
}

.table table tbody {
    border: 3px solid #fff;
}

.table-horarios {
    text-align: center;
}

.table table tbody td {
    font-weight: 800;
    padding: .80em;
    margin-bottom: 5em;
}

.grid-table-infos {
    display: grid;
    width: 100%;
    grid-template-columns: 55% 45%;

}

.right-of-table {
    width: 84%;
    display: flex;
    flex-direction: column;
    gap: 1em;
    font-weight: 500;
}

.note {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: .48em;
    margin-left: 4.5%;
    border-radius: .23em;
    background-color: #FFDADA;
    color: #F3423F;
    font-weight: 800;
}

.note i {
    margin-left: .48em;
}

/* Botões */
.btn-primario,
.btn-secundario {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transicao);
    text-decoration: none;
    display: inline-block;
}

.btn-primario {
    background-color: transparent;
    color: var(--branco);
    border: 2px solid var(--branco);
}

.btn-primario:hover {
    background-color: var(--vermelho-destaque);
    color: var(--branco);
    transform: translateY(-3px);
}

.btn-secundario {
    background-color: transparent;
    color: var(--branco);
    border: 2px solid var(--branco);
}

.btn-secundario:hover {
    background-color: var(--branco);
    color: #2793ff;
    transform: translateY(-3px);
}

.btn-terciario {
    background-color: var(--branco);
    color: #2793ff;
    border: 2px solid var(--branco);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transicao);
    text-decoration: none;
    position: absolute;
    bottom: 30px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: fit-content;
}

.btn-terciario:hover {
    background-color: #2793ff;
    color: var(--branco);
    transform: translateY(-6px);
    border: 2px solid #2793ff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Section Nossos Serviços */

.carrossel-circulos {
    width: 90%;
    padding: 1em 0;
    margin: 0 auto;
}

.carrossel-circulos .splide__arrow--prev {
    left: -0.5em;
}

.carrossel-circulos .splide__arrow--next {
    right: -0.5em;
}

.circulo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
}

.title-servicos {
    font-weight: 800;
    font-size: 3em;
    margin-left: 2em;
    margin-bottom: 1em;
    color: var(--azul-escuro);
}

.circulo-link img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #0d6efd;
    background-color: #fff;
    padding: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.circulo-link span {
    margin-top: 12px;
    color: var(--azul-principal);
    font-weight: 600;
    font-size: 2em;
}

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

#carrosselCirculos .splide__slide img {
    width: 200px;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

#carrosselCirculos .splide__slide img:hover {
    transform: scale(1.05);

}

/* Seção Contato */
.contato-section {
    background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('/assets/img/FundoBkContt.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 1em;
    border: var(--borda);
}

.section-title {
    color: var(--azul-escuro);
    font-weight: 800;
    font-size: 1.8em;
}

.contato-grid {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 1em;
}

.contato-info {
    background-color: var(--branco);
    color: var(--azul-principal);
    font-weight: 800;
    padding: 3rem;
    border: 1px solid #003f6372;
    border-radius: 15px;
}

.contato-info a {
    color: var(--azul-principal);
    text-decoration: none;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--azul-principal);
    min-width: 30px;
    text-align: center;
}

.contato-redes {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--azul-principal);
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transicao);
    text-decoration: none;
}

.social-btn:hover {
    background-color: var(--vermelho-destaque);
    transform: translateY(-3px);
}

.contato-form {
    background-color: var(--branco);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid #003f6372;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #003f6372;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--azul-principal);
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.btn-enviar {
    background-color: var(--vermelho-destaque) !important;
    border: 2px solid var(--vermelho-destaque) !important;
    color: var(--branco) !important;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0;
    display: block;
    transition: var(--transicao);
    cursor: pointer;
}

.btn-enviar:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(195, 66, 63, 0.4);
}

/* Seção Parceiros */
.parceiros-section {
    background-color: var(--branco);
    margin: 2rem 0;
    padding: 20px;
    background-color: var(--branco);
}

.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    align-items: center;
    padding: 2rem 0;
}

.parceiro-item {
    padding: 1rem;
    background-color: var(--branco);
    border-radius: 8px;
    text-align: center;
    transition: var(--transicao);
    box-shadow: var(--sombra);
}

.parceiro-item:hover {
    transform: translateY(-5px);
}

.parceiro-item img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    transition: var(--transicao);
}

.parceiro-item:hover img {
    filter: none;
}

/* Footer */
.footer {
    background-color: var(--azul-principal);
    display: flex;
    color: var(--cinza-claro);
    justify-content: center;
    font-size: .7em;
    padding: 4em 1em 1em 1em;
}

.footer-container {
    min-width: 100%;
}

.footer a {
    color: #F5F5F5;
    text-decoration: none;
}

.footer h4 {
    font-weight: 800;
}

.footer-logo {
    width: 120px;
    border-radius: .48em;
}

.footer-columns {
    display: flex;
    justify-content: center;
    gap: 5em;

}

.footer-bottom {
    display: flex;
    flex-direction: column;
    text-align: center;
    border-top: 1px solid #4190a3;
    margin: 5em auto 1em auto;
    padding: 1em;
    width: 50%;
}

.erro {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    pointer-events: none;
    width: auto;
    max-width: 90vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.erro span {
    background-color: #2196f3;
    color: #fff;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    /* <- impede quebra de linha */
    pointer-events: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%);
    }

    to {
        opacity: 1;
        transform: translate(-50%);
    }
}



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

@media (max-width: 992px) {
    .menu-mobile {
        display: block;
        z-index: 1001;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }

    .hamburger {
        font-size: 0;
        /* Oculta o texto "Menu H" */
        width: 30px;
        height: 3px;
        background-color: var(--branco);
        display: block;
        position: relative;
        transition: background-color 0.3s ease-in-out;
    }

    .hamburger::before,
    .hamburger::after {
        content: '';
        width: 100%;
        height: 3px;
        background-color: var(--branco);
        position: absolute;
        left: 0;
        transition: all 0.3s ease-in-out;
    }

    .hamburger::before {
        top: -10px;
    }

    .hamburger::after {
        top: 10px;
    }

    .nav-list {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--branco);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transicao);
        padding: 2rem;
    }

    .nav-list.active {
        left: 0;
    }

    .nav-list a {
        color: var(--azul-escuro);
        font-size: 1.5rem;
        padding: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .header.scrolled .hamburger,
    .header.scrolled .hamburger::before,
    .header.scrolled .hamburger::after {
        background-color: var(--azul-escuro);
    }

    /* Animação para o 'X' */
    .menu-mobile.active .hamburger {
        background-color: transparent;
    }

    .menu-mobile.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
        background-color: var(--azul-escuro);
        /* Garante a cor no estado ativo */
    }

    .menu-mobile.active .hamburger::after {
        transform: rotate(-45deg);
        top: 0;
        background-color: var(--azul-escuro);
        /* Garante a cor no estado ativo */
    }
}

@media (max-width: 1200px) {
    .container {
        width: 95%;
    }
}

@media (max-width: 992px) {
    .nav-list {
        display: none;
        /* Esconde a lista de navegação principal */
        flex-direction: column;
        width: 100%;
        background-color: var(--branco);
        position: absolute;
        top: 70px;
        /* Ajuste conforme a altura do seu header */
        left: 0;
        padding: 1em 0;
        box-shadow: var(--sombra);
    }

    .nav-list.active {
        display: flex;
        /* Mostra a lista quando o menu mobile está ativo */
    }

    .nav-list a {
        color: var(--azul-escuro);
        padding: 1em 1.5em;
        border-bottom: 1px solid var(--cinza-claro);
    }

    .menu-mobile {
        display: block;
        /* Mostra o ícone do menu hamburger */
    }

    .header.scrolled .nav-list a {
        color: var(--azul-escuro);
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2em;
    }

    .sobre-imagem img {
        height: 400px;
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }

    .footer-columns {
        flex-direction: column;
        text-align: center;
        gap: 2em;
    }

    .footer-bottom {
        width: 80%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .btn-hero {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sobre-imagem img {
        box-shadow: 10px 10px 0 #6b1513;
    }

    .grid-table-infos {
        grid-template-columns: 1fr;
        gap: 2em;
    }

    .right-of-table {
        width: 90%;
        margin: 0 auto;
    }

    .table table {
        width: 100%;
        margin-left: 0;
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }

    .contato-info,
    .contato-form {
        padding: 2rem;
    }

    .parceiros-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }

    .footer-columns {
        gap: 1.5em;
    }

    .content-information-header,
    .content-information-footer {
        flex-direction: column;
        text-align: center;
    }

    .div-footer-information {
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .icon-group,
    .icon-box-open,
    .icon-house-plus {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .logo {
        width: 120px;
        padding-left: 15px;
    }

    .scrolled .logo {
        width: 90px;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .destaque {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .title-servicos {
        font-size: 2.2em;
        margin-left: 1em;
        text-align: center;
    }

    .content-information-header div h3,
    .content-information-header div h4 {
        font-size: 2.8em;
    }

    .content-information-header div p {
        font-size: 1.5em;
    }

    .div-footer-information p {
        font-size: 1.2em;
    }

    .horariosf-section h5 {
        font-size: 1.8em;
        margin-left: 0;
        text-align: center;
    }

    .table table th,
    .table table tbody td {
        padding: 0.6em;
        font-size: 1em;
    }

    .right-of-table {
        font-size: 0.9em;
    }

    .contato-info {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .info-item {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .info-item i {
        font-size: 1.5rem;
        color: #2793FF;
    }

    .social-icons {
        display: flex;
        gap: 15px;
    }

    .social-icons a {
        font-size: 1.5rem;
        color: #1A3A4D;
        transition: color 0.3s;
    }

    .social-icons a:hover {
        color: #2793FF;
    }
}