@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400&family=Playfair+Display:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header .container {
    position: relative;
    z-index: inherit;
}

body {
    background-color: #0d1b2a;
    font-family: 'Lilita One', serif;
    color: #333;
    background-image: linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.1) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.1) 75%, rgba(255, 255, 255, 0.1) 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.1) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.1) 75%, rgba(255, 255, 255, 0.1) 76%, transparent 77%, transparent), linear-gradient(138deg, #1b415d, #292368);
    background-size: 100px 100px, 100px 100px, cover;
}

.sg-button {
    border: none;
    align-content: center;
    background: linear-gradient(180deg, #fb0, #f39a00);
    box-shadow: inset 1.36251px -1.36251px 0px #000000, inset -1.36251px 1.36251px 0px #000000, inset -1.36251px -1.36251px 0px #000000, inset 1.36251px 1.36251px 0px #000000, inset 0px 4.08752px 0.681253px #edd28e, inset 0px -4.08752px 1.36251px #774c00;
    border-color: #040404ba;
    height: 54px;
    width: 250px;
    text-transform: uppercase;
    border-radius: 6px;
    font-family: 'Lilita One';
    color: white;
    display: inline-grid;
}

.sg-button-blue {
    background: linear-gradient(180deg, #0091ff, #0087ef);
    box-shadow: inset 1.36251px -1.36251px 0px #000000, inset -1.36251px 1.36251px 0px #000000, inset -1.36251px -1.36251px 0px #000000, inset 1.36251px 1.36251px 0px #000000, inset 0px 4.08752px 0.681253px #57ace0, inset 0px -4.08752px 1.36251px #0c456d;
}

.sg-button-red {
    background: linear-gradient(180deg, #ff2d6a, #8e1010);
    box-shadow: inset 1.36251px -1.36251px 0px #000000, inset -1.36251px 1.36251px 0px #000000, inset -1.36251px -1.36251px 0px #000000, inset 1.36251px 1.36251px 0px #000000, inset 0px 4.08752px 0.681253px #f57285, inset 0px -4.08752px 1.36251px #66160d;
}

header, footer {
    background-color: #14212f;
    color: #fff;
    padding: 20px 0;
}

header nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: #3b82f6;
}

.description {
    font-family: 'Lilita One', cursive;
    color: #9ca3af;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.container-connnect {
    background: linear-gradient(180deg, #14212f 36%, #0d1b2a 69%);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: box-shadow 0.3s ease;
}

.container-connnect:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.text-border-2 {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

a.w-full {
    display: inline-block;
    background-color: #3b82f6;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-family: 'Lilita One', cursive;
}

a.w-full:hover {
    background-color: #2563eb;
}

.secure-icon {
    color: #3b82f6;
    margin-right: 5px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

.grid {
    display: grid;
    gap: 20px;
}

@media (min-width: 768px) {
    .grid-cols-1 {
        grid-template-columns: 1fr;
    }
    .grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card h3, .card h4 {
    color: #3b82f6;
    margin-bottom: 10px;
}

.card p {
    color: #555;
    line-height: 1.6;
}

/* Additional styles from Stumble Labs */
.hero-section {
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('/assets/hero-bg.jpg') center/cover;
    position: relative;
}


.font-lilita {
    font-family: 'Lilita One', cursive;
    color: #fff;
    font-weight: 100;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 1rem;
    font-family: 'Lilita One', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    color: #fff;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-button {
    background: #3b82f6;
    border: none;
    padding: 1rem;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: #2563eb;
    transform: scale(1.05);
}

/* Button Styles */


.sg-button:hover {
    background: linear-gradient(180deg, #ff9900 0%, #ff6600 100%);
    transform: translateY(-2px);
}
.sg-button-blue:hover {
    background: linear-gradient(180deg, #0088f0, #0080e2);
    box-shadow: inset 1.36251px -1.36251px 0px #000000, inset -1.36251px 1.36251px 0px #000000, inset -1.36251px -1.36251px 0px #000000, inset 1.36251px 1.36251px 0px #000000, inset 0px 4.08752px 0.681253px #3b9bd7, inset 0px -4.08752px 1.36251px #083e65;
}

.sg-button-red:hover {
    background: linear-gradient(180deg, #fa0048, #470606);
}

.text-stroke {
    text-shadow: 1.75px 3.0625px 0 #191919, 1.616825px 0.669725px 0 #191919, 1.237425px 1.237425px 0 #191919, 0.669725px 1.616825px 0 #191919, 3.0625px 1.75px 0 #191919, -0.669725px 1.616825px 0 #191919, -1.237425px 1.237425px 0 #191919, -1.616825px 0.669725px 0 #191919, -1.75px 0 0 #191919, -1.616825px -0.669725px 0 #191919, -1.237425px -1.237425px 0 #191919, -0.669725px -1.616825px 0 #191919, 0 -1.75px 0 #191919, 0.669725px -1.616825px 0 #191919, 1.237425px -1.237425px 0 #191919, 1.616825px -0.669725px 0 #191919;
}

/* Scrollbar Styles */
* {
    scrollbar-width: thin;
    scrollbar-color: #1f3c5c #00000036;
}

*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background: #00000036;
}

*::-webkit-scrollbar-thumb {
    background-color: #1f3c5c;
    border-radius: 10px;
    border: 2px solid #ffffff;
}

.first-section {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* Garante que a seção não interfira no menu */
    z-index: 1; /* Mantém a seção abaixo do menu */
}

.first-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.first-section h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Lilita One', cursive;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.first-section p {
    font-size: 1.1rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 20px;
    /* font-family: 'Merriweather', serif; */
}

.first-section .sg-button {
    margin-top: 20px;
/*     padding: 15px 30px; */
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.2s ease;
}

/* Estilos para lidar com auto-fill */
input:-webkit-autofill {
    background-color: transparent !important;
    color: #fff !important;
    font-family: 'Lilita One', cursive;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    /* box-shadow: 0 0 0px 1000px #0d1b2a inset;  */
    transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
}

input:-webkit-autofill::first-line {
    font-family: 'Lilita One', cursive;
    color: #fff;
}

input:-moz-autofill {
    background-color: transparent !important;
    color: #fff !important;
    font-family: 'Lilita One', cursive;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
}

input:-moz-autofill:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
}

#language-selector {
    background-color: #1f2937;
    color: #fff;
    border: 1px solid #374151;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 9999; /* Garante que o botão do menu esteja acima */
    position: relative;
}
#language-selector:hover {
    border-color: #3b82f6;
}

#language-menu {
    position: absolute;
    z-index: 1000; /* Garante que o menu esteja acima de outros elementos */
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 4px;
    padding: 5px 0;
    top: 60px; /* Ajuste para posicionar o menu abaixo do botão */
    left: auto;
    right: 10px; /* Ajuste conforme necessário */
}

.container {
    position: relative; /* Remove o z-index desnecessário */
}