/* Estilos específicos da página inicial */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Botão animado */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #FFB347, #FF8C00);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
    animation: pulseGlow 2.5s infinite;
}

.btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(255, 140, 0, 0.6);
}

@keyframes pulseGlow {
    0% { box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(255, 140, 0, 0.8); }
    100% { box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4); }
}

/* Hero com imagem de fundo */
.hero {
    position: relative;
    background: linear-gradient(120deg, rgba(36, 3, 58, 0.6), rgba(57, 2, 65, 0.7));
    min-height: 500px;
    display: flex;
    align-items: center;
    border-radius: 0 0 60px 60px;
    margin-bottom: 3rem;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/2bimestre/img/cena do barco.webp');
    background-size: cover;
    background-position: center 30%;
    z-index: -2;
}

.hero-bg-image {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: rgb(245, 236, 244);
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgb(248, 241, 241);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* Cards flexíveis */
.cards-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.card {
    background: rgba(68, 3, 77, 0.973);
    backdrop-filter: blur(8px);
    border-radius: 32px;
    padding: 2rem;
    text-align: center;
    flex: 1 1 260px;
    transition: all 0.4s;
    border: 1px solid rgba(255, 200, 100, 0.6);
}

.card:hover {
    transform: translateY(-12px);
    background: rgba(63, 3, 55, 0.95);
    border-color: #FFB347;
}

.card-icon {
    font-size: 3rem;
    color: #FF8C00;
    margin-bottom: 1rem;
}

/* Teaser (Torre Secreta) */
.story-teaser {
    margin: 3rem 0;
}

.teaser-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    background: rgba(101, 4, 114, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 48px;
    padding: 2rem;
}

.teaser-icon {
    flex: 1;
    min-width: 200px;
    text-align: center;
    font-size: 5rem;
    color: #B45F2B;
}

.teaser-text {
    flex: 2;
}

.teaser-text .btn {
    margin-top: 1rem;
    display: inline-block;
}

.section-title {
    text-align: center;
    margin: 2rem 0;
}

/* Media queries */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 380px;
    }
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    .teaser-icon {
        font-size: 3rem;
    }
}
body {
    background: #240236;
    color: #f5efef;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow-x: hidden;
}