/* Estilos Globais e Reset Básico */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a; /* Tom terroso escuro para o fundo geral */
    color: #e0e0e0; /* Cor de texto clara para contraste */
    line-height: 1.6;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* Proporção 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 30px 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif; /* Fonte retrofuturista para títulos */
    color: #4CAF50; /* Verde principal */
    text-shadow: 1px 1px 2px #000000;
}

p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

a {
    color: #8BC34A; /* Verde mais claro para links */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
header {
    background-color: #2d2d2d; /* Tom terroso médio */
    padding: 15px 0;
    border-bottom: 3px solid #4CAF50; /* Detalhe verde */
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#logo {
    max-height: 60px;
    filter: drop-shadow(0 0 5px #4CAF50);
}

header h1 {
    font-size: 2.5em;
    margin: 0;
}

/* Seção Hero */
#hero {
    background-image: url('images/retrofuturistic_bg.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 60px 20px;
    border-bottom: 3px solid #38761d; /* Tom terroso escuro esverdeado */
}

#hero h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #A5D6A7; /* Verde claro para destaque */
}

#hero p {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #f0f0f0;
}

#main-course-image {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    border: 3px solid #4CAF50;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.7);
    margin-top: 20px;
}

/* Seção Benefits */
#benefits {
    background-color: #263238; /* Tom terroso azulado escuro */
    padding: 40px 0;
}

#benefits h3 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #66BB6A; /* Verde médio */
}

.benefit-item {
    background-color: #37474F; /* Tom terroso azulado médio */
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    border-left: 5px solid #4CAF50;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

.benefit-item h4 {
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 10px;
    color: #81C784; /* Verde claro */
}

/* Seção Offer */
#offer {
    background-color: #1B5E20; /* Verde escuro terroso */
    padding: 50px 0;
    text-align: center;
}

#offer h2 {
    font-size: 2.5em;
    color: #C8E6C9; /* Verde bem claro (quase branco) */
    margin-bottom: 20px;
}

#offer p {
    font-size: 1.2em;
    color: #E8F5E9; /* Verde muito claro */
}

.price {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5em;
    color: #FFEB3B; /* Amarelo neon para o preço, contrastando com o verde */
    margin: 20px 0;
    text-shadow: 0 0 10px #FFEB3B, 0 0 20px #FFEB3B;
}

.cta-button {
    display: inline-block;
    background-color: #FF9800; /* Laranja terroso para o botão CTA */
    color: #1a1a1a;
    padding: 15px 35px;
    font-size: 1.4em;
    font-family: 'Orbitron', sans-serif;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    border: 2px solid #E65100; /* Laranja escuro para borda do botão */
}

.cta-button:hover {
    background-color: #F57C00; /* Laranja mais escuro no hover */
    transform: scale(1.05);
    text-decoration: none;
}

.offer-details {
    font-size: 0.9em;
    margin-top: 15px;
    color: #A5D6A7;
}

/* Footer */
footer {
    background-color: #101010; /* Quase preto */
    text-align: center;
    padding: 20px 0;
    border-top: 3px solid #333;
}

footer p {
    margin: 0;
    font-size: 0.9em;
    color: #757575; /* Cinza para o texto do rodapé */
}

/* Responsividade */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    #logo {
        margin-bottom: 10px;
    }

    header h1 {
        font-size: 2em;
    }

    #hero h2 {
        font-size: 2.2em;
    }

    #hero p {
        font-size: 1.1em;
    }

    #main-course-image {
        max-width: 100%;
    }

    .benefit-item h4 {
        font-size: 1.4em;
    }

    .price {
        font-size: 2.8em;
    }

    .cta-button {
        font-size: 1.2em;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    h1, h2, h3 {
        font-size: 1.8em; /* Ajuste geral para títulos menores */
    }
    #hero h2 {
        font-size: 2em;
    }
    header h1 {
        font-size: 1.8em;
    }
    .price {
        font-size: 2.2em;
    }
    .cta-button {
        width: 90%;
    }
}

