/* Estilos Gerais */
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400;700&display=swap");

body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0a0a1a; /* Fundo mais escuro */
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden; /* Evita rolagem horizontal */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header e Navegação */
header {
    background-color: #1a1a2e; /* Cor do header */
    padding: 1rem 0;
    border-bottom: 2px solid #39ff14; /* Borda verde neon */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: "Orbitron", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #39ff14; /* Cor verde neon vibrante */
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.8);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav ul li a:hover {
    color: #39ff14;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.7);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 10, 26, 0.9), rgba(10, 10, 26, 0.9)), url("https://images.unsplash.com/photo-1612214088031-404093847321?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") no-repeat center center/cover; /* Imagem de fundo futurista */
    text-align: center;
    padding: 120px 20px;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(57, 255, 20, 0.1) 0%, transparent 70%); /* Efeito neon verde */
    animation: pulse 5s infinite alternate;
}

@keyframes pulse {
    from { transform: scale(1); opacity: 0.7; }
    to { transform: scale(1.1); opacity: 1; }
}

.hero h1 {
    font-family: "Orbitron", sans-serif;
    font-size: 4.5rem;
    margin-bottom: 20px;
    color: #39ff14; /* Verde neon */
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.9);
    z-index: 1;
}

.hero p {
    font-size: 1.6rem;
    margin-bottom: 40px;
    max-width: 800px;
    color: #b0b0b0;
    z-index: 1;
}

.btn {
    background-color: #39ff14; /* Botão verde neon */
    color: #0a0a1a;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px; /* Botão arredondado */
    font-size: 1.3rem;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.7);
    z-index: 1;
}

.btn:hover {
    background-color: #6eff33;
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(57, 255, 20, 1);
}

/* Seções */
section {
    padding: 100px 20px;
    text-align: center;
    position: relative;
    background-color: #0a0a1a;
}

section h2 {
    font-family: "Orbitron", sans-serif;
    font-size: 3.5rem;
    margin-bottom: 60px;
    color: #39ff14; /* Verde neon */
    position: relative;
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.7);
}

section h2::after {
    content: "";
    width: 100px;
    height: 5px;
    background-color: #39ff14; /* Verde neon */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    border-radius: 5px;
}

/* Galeria */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    background-color: #1a1a2e;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #39ff14; /* Borda verde neon */
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(57, 255, 20, 0.6);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #39ff14; /* Borda verde neon */
}

.gallery-item h3 {
    font-family: "Orbitron", sans-serif;
    font-size: 1.8rem;
    margin: 25px 0 15px;
    color: #39ff14; /* Verde neon */
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.gallery-item p {
    font-size: 1.1rem;
    color: #b0b0b0;
    padding: 0 25px 25px;
}

/* Tipos de Cannabis */
.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.type-card {
    background-color: #1a1a2e;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    text-align: left;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #39ff14; /* Borda verde neon */
}

.type-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(57, 255, 20, 0.6);
}

.type-card h3 {
    font-family: "Orbitron", sans-serif;
    font-size: 2rem;
    color: #39ff14; /* Verde neon */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.type-card p {
    font-size: 1.2rem;
    color: #b0b0b0;
}

/* Formulário de Contato */
.contact-section form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section textarea {
    background-color: #0a0a1a;
    border: 1px solid #39ff14; /* Borda verde neon */
    padding: 18px;
    border-radius: 10px;
    color: #e0e0e0;
    font-size: 1.1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
    color: #888;
}

.contact-section input:focus,
.contact-section textarea:focus {
    border-color: #6eff33;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.8);
    outline: none;
}

.contact-section textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: #1a1a2e;
    text-align: center;
    padding: 30px 0;
    margin-top: 80px;
    border-top: 2px solid #39ff14; /* Borda verde neon */
    color: #b0b0b0;
    font-size: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

/* Responsividade */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    nav ul {
        margin-top: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 0 15px 15px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1.1rem;
    }

    section h2 {
        font-size: 2.5rem;
    }

    .gallery-grid,
    .types-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 220px;
    }

    .gallery-item h3,
    .type-card h3 {
        font-size: 1.6rem;
    }

    .gallery-item p,
    .type-card p {
        font-size: 1rem;
    }

    .contact-section input,
    .contact-section textarea {
        padding: 15px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    section h2 {
        font-size: 2rem;
    }

    nav ul li {
        margin: 0 10px 10px;
    }
}

