@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');

/* Variáveis de Cor para facilitar a manutenção */
:root {
    --fundo-cor: #02080f; /* Preto / Fundo */
    --principal-cor: #ffac3e; /* Laranja (Antigo Azul) */
    --texto-cor: #ededed; /* Branco */
    --sombra-cor: rgba(255, 172, 62, 0.4); /* Sombra Laranja */
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--fundo-cor);
    color: var(--texto-cor);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    /* Mantenha o z-index alto */
    z-index: 10000; 
    
    /* ADICIONE ISTO: Força a renderização na GPU */
    transform: translateZ(0); 
    -webkit-transform: translateZ(0);
}

.logo {
    font-size: 1.5rem;
    color: var(--texto-cor);
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.logo:hover {
    transform: scale(1.1);
}

span {
    /* Cor principal (Laranja) */
    color: var(--principal-cor);
    /* Mantendo o gradiente, mas com a cor principal - CORREÇÃO DE ERRO DE SINTAXE */
    background: linear-gradient(
        270deg,
        rgba(255, 172, 62, 0.8) 10%,
        var(--principal-cor) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Linha "text-fill-color: transparent;" removida */
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--fundo-cor);
    animation: showRight 1s ease forwards;
    animation-delay: .4s;
}

.navbar a {
    font-size: 18px;
    color: var(--texto-cor);
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: var(--principal-cor);
}

.home {
    /* Mude de 'height: 100vh;' para 'min-height: 100vh;' */
    min-height: 100vh; 
    background: var(--fundo-cor); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative; 
}

.home-content {
    max-width: 600px;
    z-index: 10; /* Garante que o texto fique por cima do vídeo */
}

.home-content h1 {
    position: relative;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--texto-cor);
}
/* ... Animações showRight para o conteúdo da home ... */
.home-content h1::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--fundo-cor);
    animation: showRight 1s ease forwards;
    animation-delay: 1s;
}

.home-content h3 {
    position: relative;
    font-size: 32px;
    font-weight: 700;
    color: var(--principal-cor);
}

.home-content h3::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--fundo-cor);
    animation: showRight 1s ease forwards;
    animation-delay: 1.3s;
}

.home-content p {
    position: relative;
    font-size: 16px;
    margin: 20px 0 40px;
    text-align: justify;
}

.home-content p::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--fundo-cor);
    animation: showRight 1s ease forwards;
    animation-delay: 1.6s;
}

.home-content .btn-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 345px;
    height: 50px;
}

.home-content .btn-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--fundo-cor);
    animation: showRight 1s ease forwards;
    animation-delay: 1.9s;
    z-index: 2;
}

.btn-box a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100%;
    background: var(--principal-cor);
    border: 2px solid var(--principal-cor);
    border-radius: 8px;
    font-size: 19px;
    color: var(--fundo-cor);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
    transition: .3s;
}

.btn-box a:hover {
    color: var(--principal-cor);
}

.btn-box a:nth-child(2) {
    background: transparent;
    color: var(--principal-cor);
}

.btn-box a:nth-child(2):hover {
    color: var(--fundo-cor);
}

.btn-box a:nth-child(2)::before {
    background: var(--principal-cor);
}

.btn-box a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--fundo-cor);
    transition: .3s;
    z-index: -1;
}

.btn-box a:hover::before {
    width: 100%;
}

.home-sci {
    position: absolute;
    bottom: 40px;
    width: 170px;
    display: flex;
    justify-content: space-between;
    z-index: 10; /* Por cima do vídeo */
}

.home-sci::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--fundo-cor);
    animation: showRight 1s ease forwards;
    animation-delay: 2.5s;
    z-index: 2;
}

.home-sci a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--principal-cor);
    border-radius: 20%;
    font-size: 20px;
    color: var(--principal-cor);
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    transition: .3s;
}

.home-sci a:hover {
    color: var(--fundo-cor);
}

.home-sci a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--principal-cor);
    z-index: -1;
    transition: .3s;
}

.home-sci a:hover::before {
    width: 100%;
}

/* NOVO: Estilos para o Vídeo na Home */
.home-video-wrapper {
    position: absolute;
    top: 0;
    right: 30px; /* Posição à direita */
    width: 500px;
    height: 100%;
    overflow: hidden;
    z-index: 1; /* Por baixo do conteúdo de texto */
}

.home-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.home-imghover {
    position: absolute;
    top: 0;
    right: 30px;
    width: 500px;
    height: 100%;
    background: transparent;
    transition: 3s;
    z-index: 2; /* Por cima do vídeo para o efeito funcionar */
}

.home-imghover:hover {
    background: var(--fundo-cor);
    opacity: .8;
}

.home-imghover::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120%;
    height: 100%;
    background: var(--fundo-cor);
    animation: showRight 1s ease forwards;
    animation-delay: 3s;
    z-index: 100;
}

@keyframes showRight {
    100% {
        width: 0;
    }
}

/* SEÇÃO SOBRE (MANTENDO O ESTILO DE VÍDEO CIRCULAR) */
.sobre {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10rem;
    background: var(--fundo-cor);
    min-height: 100vh;
    padding: 100px 10% 50px;
}

.sobre-img img {
    display: block;
    width: 30vw;
    max-width: 400px; /* Limite para telas grandes */
    border-radius: 50%;
    box-shadow: 0 0 25px var(--principal-cor); /* Laranja */
    transition: 1s ease-in-out;
    margin-left: 10px;
}

.sobre-img img:hover {
    /* Sombra Laranja mais intensa */
    box-shadow: 0 0 25px var(--principal-cor), 0 0 50px var(--principal-cor), 0 0 180px var(--principal-cor);
}

.sobre-content h2 {
    font-size: 3rem;
    text-align: left;
}

.sobre-content p {
    position: relative;
    font-size: 16px;
    text-align: justify;
    max-width: 500px;
}

.sobre-content .btn {
    position: relative;
    display: flex;
    margin: 3rem 0;
    justify-content: space-between;
    width: 345px;
    height: 50px;
}

.sobre-content .btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--fundo-cor);
    animation: showRight 1s ease forwards;
    animation-delay: 1.9s;
    z-index: 2;
}
.btn a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: var(--principal-cor);
    border: 2px solid var(--principal-cor);
    border-radius: 8px;
    font-size: 19px;
    color: var(--fundo-cor);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
    transition: .3s;
}

.btn a:hover {
    color: var(--principal-cor);
}

.btn a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--fundo-cor);
    transition: .3s;
    z-index: -1;
}

.btn a:hover::before {
    width: 100%;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--principal-cor);
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background-color: var(--fundo-cor);
}


.heading {
    text-align: center;
    font-size: 3rem;
    background: transparent;
}

/* SEÇÃO SERVIÇOS */
/* SEÇÃO SERVIÇOS - APENAS CORREÇÕES */

.servicos {
    color: var(--fundo-cor);
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 100px 10% 50px;
    background-color: var(--principal-cor);
    gap: 3rem;
}

.servicos h2 .heading {
    color: var(--fundo-cor);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.servicos-container {
    display: grid;
    /* CORREÇÃO: Restaurado para 4 COLUNAS para manter os 4 boxes na mesma linha */
    grid-template-columns: repeat(4, 1fr); 
    gap: 2rem;
    max-width: 1400px;
    width: 100%;
    /* Centraliza os itens no container se o max-width for atingido */
    justify-content: center;
}

.servicos-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background-color: var(--fundo-cor);
    color: var(--principal-cor);
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid var(--principal-cor);
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease;
    /* Ajuste para permitir que o box ocupe bem o espaço disponível */
    flex-grow: 1; 
}

.servicos-box:hover {
    border: 3px solid var(--texto-cor);
    transform: translateY(-10px);
    box-shadow: 0 10px 20px var(--sombra-cor);
}

.servicos-box.combo {
    /* MANTIDO: Ocupa 1 coluna (no layout de 4 colunas) */
    grid-column: span 1; 
    background: linear-gradient(135deg, var(--principal-cor), #ff7e3e);
    color: var(--fundo-cor);
    border: 3px solid var(--texto-cor);
}

.servicos-box.combo:hover {
    box-shadow: 0 10px 30px var(--texto-cor);
    border: 3px solid var(--fundo-cor);
}

.servicos-info {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

.servicos-info h4 {
    font-size: 1.5rem;
    margin: 1rem 0;
    font-weight: 600;
    color: inherit;
}

.servicos-info i {
    font-size: 3rem;
    color: inherit;
}
/* CORREÇÕES FINAIS PARA A COR DO PREÇO NA SEÇÃO SERVIÇOS */

.preco {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 15px 0;
    display: block;
    /* Força o preço padrão para PRETO sobre o fundo laranja da seção */
    color: var(--fundo-cor) !important; 
    
    /* REMOVIDO: O reset de gradiente que estava quebrando as outras caixas */
}

.combo-preco {
    /* MANTÉM: Garante que o preço do combo também seja preto */
    color: var(--fundo-cor) !important; 
    font-size: 1.4rem;
    
    /* REMOVIDO: O reset de gradiente que estava quebrando as outras caixas */
}

/* NOVO: Para o Combo, onde o texto é forçado a ser preto, mas o span é afetado pelo gradiente. */
/* Se a cor preta ainda não funcionar, adicione este seletor, caso contrário, ignore-o. */
.servicos-box.combo span.combo-preco {
    /* Força a cor do texto para preto e anula a aplicação do gradiente de cor de texto */
    color: var(--fundo-cor) !important;
    -webkit-text-fill-color: var(--fundo-cor) !important;
}

.servico-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--principal-cor);
    color: var(--fundo-cor);
    border: 2px solid var(--principal-cor);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
    transition: .3s;
}

.servicos-box.combo .servico-btn {
    background: var(--fundo-cor);
    color: var(--principal-cor);
    border: 2px solid var(--fundo-cor);
}

.servico-btn:hover {
    background: var(--fundo-cor);
    color: var(--principal-cor);
    border-color: var(--principal-cor);
}

.servicos-box.combo .servico-btn:hover {
    background: var(--principal-cor);
    color: var(--fundo-cor);
    border-color: var(--fundo-cor);
}

/* MEDIA QUERY CORRIGIDA PARA RESPONSIVIDADE */
@media (max-width: 1200px) {
    /* Mudar para 2 colunas em telas menores para dar mais respiro */
    .servicos-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .servicos-box.combo {
        /* O combo agora ocupa duas colunas no layout de 2 colunas */
        grid-column: span 2; 
    }
}

@media (max-width: 800px) {
    /* Mudar para 1 coluna em telas muito pequenas */
    .servicos-container {
        grid-template-columns: 1fr;
    }
    .servicos-box.combo {
        grid-column: span 1; 
    }
}

/* SEÇÃO PORTFÓLIO */
.portifolio {
    min-height: 100vh;
    padding: 100px 10% 50px;
    background: var(--fundo-cor);
}

.portifolio-box {
    margin-top: 50px;
    margin-bottom: 50px;
}

.portifolio h3 {
    font-size: 2rem;
    color: var(--principal-cor);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--principal-cor);
    padding-bottom: 10px;
}

.sites-container, .logos-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.projeto-site {
    background: #0d1a29;
    padding: 20px;
    border-radius: 10px;
    max-width: 450px;
    border: 1px solid rgba(255, 172, 62, 0.2);
    transition: 0.3s;
}

.projeto-site:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--sombra-cor);
}

.projeto-site img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.logos-container img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    padding: 10px;
    background: var(--texto-cor);
    border-radius: 50%;
    transition: 0.3s;
}

.logos-container img:hover {
    box-shadow: 0 0 10px var(--principal-cor);
}

/* CARROSSEL DE MÍDIA SOCIAL (CSS Puro) */
.carrossel-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
    border-radius: 10px;
    background: #101c2c;
}

.carrossel-midias {
    display: inline-block;
    animation: carrossel-move 20s linear infinite;
}

.carrossel-midias img {
    width: 250px;
    height: auto;
    margin-right: 20px;
    border-radius: 5px;
    display: inline-block;
}

@keyframes carrossel-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.carrossel-wrapper:hover .carrossel-midias {
    animation-play-state: paused;
}

/* SEÇÃO DE CONTATO */
.contato {
    min-height: 80vh;
    padding: 100px 10% 50px;
    background: #111a24;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contato-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin-top: 50px;
    gap: 50px;
}

.contato-info {
    max-width: 500px;
}

.contato-info h3 {
    font-size: 2rem;
    color: var(--principal-cor);
    margin-bottom: 20px;
}

.contato-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contato-links p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.contato-links i {
    font-size: 1.5rem;
    color: var(--principal-cor);
    margin-right: 10px;
    vertical-align: middle;
}

.contato-img {
    position: relative;
    width: 350px;
    height: 350px;
}

.contato-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 25px var(--principal-cor);
    transition: 0.5s;
}

.contato-img img:hover {
    box-shadow: 0 0 50px var(--principal-cor), 0 0 100px var(--sombra-cor);
}

.contato-sci {
    position: static;
    margin-top: 30px;
}

/* =========================================================
MEDIA QUERY GERAL: TELAS MENORES QUE 800px (Mobile)
=========================================================
*/
@media (max-width: 800px) {
    
    /* 1. AJUSTES NAVBAR E LOGO */
    .header {
        padding: 20px 5%; 
    }
    .navbar {
        display: none; 
    }
    .logo {
        font-size: 1.3rem;
        position: relative; 
        z-index: 1000;
    }
    
    /* 2. CORREÇÃO DO VÃO GIGANTE (SEÇÃO HOME) */
    .home {
        flex-direction: column; 
        align-items: center;
        text-align: center;
        /* Padding superior para a navegação, e inferior ZERADO */
        padding: 80px 5% 0px !important; 
        
        /* Garantindo que a altura seja a do conteúdo */
        height: auto !important; 
        min-height: auto !important;
        
        position: static; 
        justify-content: flex-start;
    }
    
    .home-content {
        max-width: 100%;
        margin-bottom: 0px; 
    }
    
    /* PADRONIZAÇÃO DAS FONTES DA HOME */
    .home-content h1 {
        font-size: 32px; 
        line-height: 1.1;
    }
    .home-content h3 {
        font-size: 22px; 
        margin-top: 5px;
    }
    .home-content p {
        font-size: 14px; 
        margin: 10px 0 10px;
    }

/* --- DENTRO DO @MEDIA (MAX-WIDTH: 800PX) --- */

    /* Container dos botões: ajusta a largura e garante espaço entre eles */
    .home-content .btn-box {
        width: 100%;
        max-width: 340px; /* Limita a largura total para não esticar demais */
        height: 45px;     /* Reduz levemente a altura do container */
        margin: 20px auto; /* Centraliza */
        justify-content: space-between; /* Força um botão para cada ponta */
        gap: 10px;        /* Garante um espaço mínimo no meio */
    }

    /* Os botões individuais */
    .btn-box a {
        width: 48%;       /* Cada botão ocupa um pouco menos da metade */
        height: 100%;     /* Ocupa a altura definida no pai (45px) */
        font-size: 15px;  /* Reduz a fonte (era 19px) para caber o texto */
        padding: 0 5px;   /* Pequeno respiro lateral interno */
        white-space: nowrap; /* Impede que o texto "Fale Conosco" quebre em duas linhas */
    }

/* 3. CORREÇÃO DA CORUJA (AUMENTO DA ALTURA E LARGURA TOTAL) */
    .home-video-wrapper, 
    .home-imghover {
        position: relative; 
        
        /* ALTERAÇÃO 1: Largura total do espaço disponível */
        width: 100%; 
        
        /* ALTERAÇÃO 2: Aumentei a altura para 500px para ficar maior na tela */
        height: 500px; 
        
        right: auto;
        margin: 20px auto 0px; /* Um pouco mais de margem no topo */
        overflow: hidden; 
        z-index: 1;
        border-radius: 15px; /* Opcional: deixa as bordas arredondadas no mobile também */
    }
    
    .home-video {
        width: 100%;
        height: 100%;
        
        /* ALTERAÇÃO 3: 'cover' faz o vídeo esticar para tocar nas bordas sem deixar espaço vazio */
        object-fit: cover; 
        
        display: block;
    }

    .home-imghover::after {
        display: none;
    }

    /* 4. CORREÇÃO DO ÍCONE DAS REDES SOCIAIS */
    .home-sci {
        position: relative; 
        width: 100%;
        max-width: 170px;
        /* AÇÃO CRÍTICA: Margem inferior reduzida ao mínimo */
        margin: 5px auto 5px; 
        justify-content: space-around; 
        bottom: auto;
    }
    .home-sci::before {
        display: none;
    }
    
    /* 5. AJUSTES DE OUTRAS SEÇÕES (Mantidos) */
    .heading {
        font-size: 2.5rem; 
    }
    .servicos-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .servicos-box.combo {
        grid-column: span 1; 
    }
    .sobre {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 80px 5% 40px;
    }
/* --- DENTRO DO @MEDIA (MAX-WIDTH: 800PX) --- */

    .sobre-content h2 {
        /* Reduzi de 2.5rem para 32px para igualar ao título da Home */
        font-size: 32px; 
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .sobre-content p {
        /* Reduzi de 16px para 14px para igualar ao texto da Home */
        font-size: 14px; 
        line-height: 1.6; /* Melhora a leitura no mobile */
    }

    /* AÇÃO EXTRA: Correção do botão que tinha largura fixa de 345px */
    .sobre-content .btn {
        width: 100%;        /* Agora ele se adapta à tela */
        max-width: 345px;   /* Mas não passa do tamanho original */
        margin: 20px auto;  /* Centraliza o botão */
        justify-content: center; /* Garante que o texto fique no meio */
    }
/* --- DENTRO DO @MEDIA (MAX-WIDTH: 800PX) --- */

    /* 6. AJUSTES DO RODAPÉ / CONTATO (Fim da página) */
    .contato {
        padding: 60px 5% 80px; /* Mais espaço embaixo para não "morrer" no fim da tela */
        min-height: auto;      /* Remove a altura forçada, deixa o conteúdo definir o tamanho */
        text-align: center;    /* Centraliza todos os textos */
    }

    .contato-container {
        flex-direction: column; /* Empilha os itens (Texto em cima, imagem embaixo se houver) */
        gap: 40px;              /* Espaço entre o bloco de texto e a imagem/resto */
        margin-top: 0;          /* Remove margem extra do topo */
    }

    .contato-info h3 {
        font-size: 26px;        /* Título um pouco menor */
        margin-bottom: 15px;
    }

    .contato-info p {
        font-size: 14px;        /* Texto de descrição mais leve */
        margin-bottom: 30px;
    }

    /* Correção da lista de contatos (WhatsApp, Insta, Behance) */
    .contato-links {
        display: flex;
        flex-direction: column;
        gap: 15px; /* Espaço uniforme entre cada linha de contato */
    }

    .contato-links p {
        font-size: 15px; /* Tamanho ideal para leitura mobile */
        display: flex;
        justify-content: center; /* Centraliza ícone e texto */
        align-items: center;
        gap: 10px;       /* Espaço entre o ícone e o número/nome */
        margin: 0;       /* Remove margens antigas para usar o gap do container */
        white-space: nowrap; /* Tenta manter o telefone na mesma linha */
    }

    /* Se o telefone ainda quebrar, diminui só ele um pouquinho */
    .contato-links p:first-child { 
        font-size: 14px; 
    }

    .contato-links i {
        margin-right: 0; /* Remove a margem direita antiga */
        font-size: 1.3rem;
    }

    /* Ajuste dos 3 botões quadrados finais */
    .contato-sci {
        margin-top: 20px;
        display: flex;
        justify-content: center;
        gap: 20px; /* Espaço bom entre os botões */
    }
    
    .contato-sci a {
        width: 50px;  /* Botões maiores para facilitar o toque no celular */
        height: 50px;
        font-size: 1.4rem;
    }
    .contato-img {
        width: 150px;  /* Reduzi para um tamanho menor e mais discreto */
        height: 150px; /* Mantém a proporção quadrada para o círculo */
        margin: 0 auto; /* Garante que fique centralizada */
    }
}