/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f1f1f1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background-color: #1e1e1e;
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

nav a {
    font-size: 20px;
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #2ecc71;
}

.btn-login {
    background-color: #2ecc71;
    padding: 8px 16px;
    border-radius: 4px;
}

/* Slider de imagens */
.background-slider {
    width: 100%;
    height: 300px; /* altura desejada para o slider */
    overflow: hidden;
    position: relative;
    background: #000;
}

.slider-track {
    display: flex;
    width: max-content;
    animation: scroll 60s linear infinite;
}

.slider-track img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Animação de deslocamento */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Hero */
.hero {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.background-slider {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.slider-track {
    display: flex;
    animation: scroll 60s linear infinite;
    height: 100%;
}

.slider-track img {
    height: 100%;
    width: auto;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-content {
    background-color: #2a814f;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
}



/* Planos */
.planos {
    background-color: white;
    padding: 50px 20px;
    text-align: center;
}

.planos h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.planos ul {
    list-style: none;
}

.planos li {
    font-size: 18px;
    margin-bottom: 10px;
}

.planos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.plano-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 40px 30px;
    text-align: center;
    width: 280px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.plano-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.plano-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #333;
}

.plano-card p {
    font-size: 20px;
    color: #27ae60;
    font-weight: bold;
    margin-bottom: 25px;
}

.btn-contratar {
    display: inline-block;
    padding: 12px 24px;
    background-color: #2ecc71;
    color: white;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-contratar:hover {
    background-color: #27ae60;
}




/* Rodapé */
footer {
    background-color: #1e1e1e;
    color: white;
    text-align: center;
    padding: 20px 10px;
    margin-top: auto;
}

footer a {
    color: #2ecc71;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}


.teste-gratis {
    background-color: #2a814f;
    color: white;
    text-align: center;
    padding: 50px 20px;
    margin-top: 40px;
    border-radius: 8px;
}

.teste-gratis h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.teste-gratis p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn-teste {
    background-color: #1e1e1e;
    color: #2ecc71;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.btn-teste:hover {
    background-color: #fff;
    color: #1e1e1e;
}


.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #1e1e1e;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    width: 300px;
    color: white;
}

.modal-content h2 {
    margin-bottom: 20px;
}

.modal-content input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
}

.modal-content button {
    background-color: #2ecc71;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.modal-content button:hover {
    background-color: #27ae60;
}

.fechar {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
}

.indicacao {
    text-align: center;
    padding: 20px 1px;
}

.indicacao h2 {
    font-size: 26px;
}

.indicacao .beneficios {
    display: inline-block;
    text-align: left;
    margin-top: 5px;
}

.indicacao li {
    font-size: 20px;
}