/* Reset e Estilos Globais */

@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #333;
    color: #333;
    line-height: 1.6;
    font-family: 'Rubik', sans-serif;
    font-weight: 100;
    /* Peso normal */
}



.container {
    margin: 2rem auto;
    width: 700px;
}

/* Logo */
.logo-container {
    margin: auto;
    flex-shrink: 0;
    width: 50%;
}

.brand-logo {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

/* Header */
header {
    background-color: #1a1a2e;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #9c9c9c;
    font-family: 'Rubik', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-weight: 700;
    font-size: 2.5rem;
}

h2 {
    font-weight: 600;
    font-size: 2rem;
}

h3 {
    font-weight: 500;
    font-size: 1.75rem;
}

h1,
p {
    color: #9c9c9c;
}

a {
    text-decoration: none;
}

.card {
    background-color: #46464680;
    color: #ff6500;
    padding: 10px;
    border-radius: 1rem;
}


/* Buttons */
.btn {
    border-radius: 1rem;
    background-color: #464646;
    color: #ffffff;
    padding: .5rem 1rem;
    height: 50px;
    align-content: center;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}



.btn i {

    margin-right: 8px;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);

}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-2px) rotate(3deg);
    }

    100% {
        transform: translateY(0) rotate(0);
    }
}

.btn:hover i {
    animation: float 2s ease-in-out infinite;
    transform: none;
    /* Remove a transform do hover */
}




/* Botão do Instagram */
.btn-instagram {
    background: linear-gradient(45deg,
            rgb(139, 6, 228) 0%,
            #bc1888 100%);
}


/* Botão do WhatsApp */
.btn-whatsapp {
    background: linear-gradient(45deg,
            #25d368 0%,
            #0c8f3c 100%);
}

/* Botão "Onde estamos" em laranja */
.btn-location {
    background: linear-gradient(45deg,
            #ff6500 0%,
            #b64a02 100%);
}

.btn-location:hover {
    box-shadow: #e05a00;
}


/* Alings */
.center {
    display: flex;
    justify-content: center;
}

.info-x {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.7rem 0;
}

/* Orientation */
.row {
    display: flex;
    flex-direction: column;
    gap: 3rem
}

.col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-content: space-between;

}

/* Margins */
.mt-10 {
    margin-top: 3rem;
}

.mt-5 {
    margin-top: 2rem;
}

.mt-1 {
    margin-top: 1rem;
}

.buttons-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    gap: 30px;
}

/* Grids*/
.d-flex {
    display: flex;
}

/* Grupo de botões */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 300px;
    /* Igual à largura dos cards */
}



.icon-1 {
    width: 24px;
    /* Largura */
    height: 24px;
    /* Altura */
    font-size: 24px;
    /* Para ícones de fonte como Font Awesome */
}

.icon-2 {
    width: 1rem;
    /* Largura */
    height: 1rem;
    /* Altura */
    font-size: 24px;
    /* Para ícones de fonte como Font Awesome */
}





/* Text Colors */
.text-white {
    color: white !important;
}

.xipi-background {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #0f0f1a;
    /* Fundo escuro base */
    padding: 40px;
    position: relative;
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
}

/* Efeito de partículas luminosas */
.xipi-background::before {
    pointer-events: none;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 101, 0, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(255, 101, 0, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 40% 60%, rgba(255, 101, 0, 0.12) 0%, transparent 25%);
    animation: pulse 10s infinite alternate;
}

/* Efeito de grade sutil */
.xipi-background::after {
    pointer-events: none;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 101, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 101, 0, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}


/* Animação pulsante */
@keyframes pulse {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }

    100% {
        opacity: 0.7;
        transform: scale(1);
    }
}


/* Efeito carregamento */

.card-load {
    opacity: 0;
    transform: translateY(200px) scale(1.98);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

/* Efeito de fade lateral */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Efeito de zoom */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Esposividade */
@media (max-width: 1317px) {

    .container {
        margin: 1rem auto;
        width: 600px;
    }
}

@media (max-width: 1050px) {
    .col {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-container {
        margin: auto;
        flex-shrink: 0;
        width: 50%;
    }

}

@media (max-width: 667px) {

    .logo-container {
        margin: auto;
        flex-shrink: 0;
        width: 74%;
    }

    .container {
        margin: 1rem auto;
        width: 500px;
    }

    .col {
        grid-template-columns: repeat(2, 1fr);
    }

    .buttons-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-content: space-between;
        gap: 30px;
    }

    h3 {
        font-weight: 500;
        font-size: 1.3rem;
    }

}

@media (max-width: 450px) {

    .logo-container {
        margin: auto;
        width: 90%;
    }

    .container {
        width: 100%;
    }

    .col {
        grid-template-columns: repeat(1, 1fr);
    }

    .buttons-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-content: space-between;
        gap: 30px;
    }

    h3 {
        font-weight: 500;
        font-size: 1.3rem;
    }

}