/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #f5f7fa;
    color: #1f2937;
    line-height: 1.6;
}

/* HEADER */
header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo img {
    height: 75px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    color: #000000;
    font-weight: 500;
    padding: 8px 12px;
    text-decoration: none;   /* <<< tira qualquer sublinhado */
    border-bottom: none;     /* <<< garante que não tenha linha */
    transition: color 0.3s ease, transform 0.2s ease;
}

header nav ul li a:hover {
    color: #60a5fa;
    transform: translateY(-2px);
}

header nav ul li a:hover::after {
    width: 100%;
}

/* HERO */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* OVERLAY */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 31, 68, 0.75);
    z-index: 2;
}

/* SLIDER */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* SLIDES */
.hero-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroFade 30s infinite;
}

/* DELAY INDIVIDUAL */
.hero-slider .slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slider .slide:nth-child(2) {
    animation-delay: 10s;
}

.hero-slider .slide:nth-child(3) {
    animation-delay: 20s;
}

/* CONTEÚDO */
.hero-content,
.hero img.logo {
    position: relative;
    z-index: 3;
}

.hero-content {
    text-align: center;
    color: #fff;
}

.hero img.logo {
    width: 220px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
}

.hero .line3 h1 {
    color: #e11d48;
    font-size: 4rem;
}

.hero .btn {
    margin-top: 30px;
    background: #e11d48;
    color: #fff;
    padding: 15px 40px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

.hero .btn:hover {
    transform: scale(1.05);
    background: #be123c;
}
/* IMAGENS + TEMPO */
.slide1 {
    background-image: url('../img/hero1.jpg');
    animation-delay: 0s;
}

.slide2 {
    background-image: url('../img/hero2.jpg');
    animation-delay: 10s;
}

.slide3 {
    background-image: url('../img/hero3.jpg');
    animation-delay: 20s;
}

/* CONTEÚDO */
.hero-content,
.hero img.logo {
    position: relative;
    z-index: 3;
}

.hero-content {
    text-align: center;
    color: #fff;
}

.hero img.logo {
    width: 220px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
}

.hero .line3 h1 {
    color: #e11d48;
    font-size: 4rem;
}

.hero .btn {
    display: inline-block;
    margin-top: 30px;
    background: #e11d48;
    color: #fff;
    padding: 15px 40px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

.hero .btn:hover {
    transform: scale(1.05);
    background: #be123c;
}

@keyframes heroFade {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    /* PAUSA NA TELA */
    40% {
        opacity: 1;
    }

    /* SAÍDA */
    50% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}



/* PLANOS */
.plans {
    padding: 80px 20px;
    text-align: center;
    background: #fff;
}

.plans h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.plan-cards {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.plan {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: 0.3s;
}

.plan:hover {
    transform: translateY(-10px);
}

.plan-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.plan img {
    width: 100%;
    max-width: 420px;
    border-radius: 15px;
}

/* VANTAGENS */
.advantages {
    background: #0a1f44;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.advantages h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.advantage-cards {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.advantage-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px 20px;
}

.advantage-card i {
    font-size: 2.5rem;
    color: #e11d48;
    margin-bottom: 15px;
}

/* FOOTER */
footer {
    background: #020617;
    color: #9ca3af;
    text-align: center;
    padding: 25px 15px;
}

footer a {
    color: #e11d48;
    text-decoration: none;
}
