/* --- VARIÁVEIS E RESET --- */
:root {
    --bg-color: #000000;
    --text-color: #FFFFFF;
    --accent-red: #E21212;
    --card-gray: #1F1F1F;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/*CABEÇALHO*/
header{
    min-height: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
header nav ul{
    display: flex;
    justify-content: center;
    gap: 3rem;
    list-style: none;
    padding: 0.8rem 0;
}

header nav ul li a{
    text-align: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
}

header nav ul li a:hover{
    font-size: 2rem;
    transition: 0.5s;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--accent-red);
    color: #FFF;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: 0.3s;
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: scale(1.05);
    background-color: #ff1e1e;
}

.section-padding {
    padding: 20rem 0;
}

/* --- 2. SESSÃO PRINCIPAL (HERO) --- */

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    margin:auto;
    flex-wrap: wrap-reverse;
    min-height: 50rem;
}

.hero-text {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;

}

.hero-text span {
    color: var(--accent-red);
    display: block;
}

.hero-text .start-btn {
    background: var(--text-color);
    color: var(--bg-color);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    gap: .8rem;
    padding: .8rem 1.6rem;
    border-radius: .5rem;
    cursor: pointer;
    margin-top: 2rem;
}

.hero-text .start-btn i {
    font-size: 1.5rem;
}

.hero-text .start-btn:hover {
    background: var(--accent-red);
    color: var(--white);
    transition: 0.5s;
}

.hero-img img{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 550px;
}



/* --- 3. TARJAS (MARQUEE) --- */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: 15px 0;
    position: relative;
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
}

.marquee h2 {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    margin: 0 30px;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.bg-red { background-color: var(--accent-red); color: #fff; }
.bg-white { background-color: #fff; color: #000; }

/* --- 4. DESCRIÇÃO --- */
.features {
    margin-top: 6rem;
}
.features h2.section-title {
    text-align: center;
    color: var(--accent-red);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5rem;
    text-transform: uppercase;
}
.features h2.section-title span {
    color: var(--text-color);
}

.features-box {
    background-color: var(--card-gray);
    padding: 6rem;
    border-radius: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-item p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}
.image-feature {
    margin: 3rem auto;
    width: 100%;
    max-height: 40rem;
    object-fit: cover;
}
/* --- 5. PLANOS --- */
.pricing {
    text-align: center;
}

.pricing h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 800;
}

.pricing h2 span { color: var(--accent-red); }

.pricing p.subtitle {
    margin-bottom: 40px;
    color: #aaa;
}

.plans-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 10rem;
}

.plan-card {
    display: flex;
    flex-direction: column;
      gap: 1rem;
    background-color: var(--card-gray);
    padding: 3rem;
    border-radius: 1rem;
    width: 25rem;
    text-align: center;
    position: relative;
}

/* Card Destaque (Trimestral) */
.plan-card.highlight {
    border: 2px solid var(--accent-red);
    background: linear-gradient(135deg, #1F1F1F 0%, #2a0505 100%);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-red);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 15px 0;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 400;
}

.old-price {
    text-decoration: line-through;
    color: #777;
    font-size: 1rem;
    display: block;
}

.economy {
    display: block;
    background-color: #444;
    color: #FFD700; /* Dourado */
    font-size: 0.8rem;
    padding: 5px;
    text-align: center;
    border-radius: 4px;
    margin-bottom: 20px;
}

.benefits {
    margin: 20px 0;
}

.benefits li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.benefits li i {
    color: var(--accent-red);
    margin-right: 10px;
}

.plan-card button {
    width: 100%;
}

.plan-card.black-card button {
    background-color: transparent;
    border: 1px solid #555;
    color: #fff;
}
.plan-card.black-card button:hover {
    border-color: #fff;
}

/* --- 6. LOCALIZAÇÃO E HORÁRIOS --- */
.location {
    margin-top: 8rem;
}
.location h2 {
    text-align: center;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin: 3rem 0 1rem 0;
}
.location h2 i { color: var(--accent-red); }
.location h2 span { color: var(--accent-red); }

.location-box {
    background-color: var(--card-gray);
    padding: 4.5rem;
    text-align: center;
    border-radius: 1rem;
    max-width: 800px;
    margin: 4rem auto auto auto;
}

.address {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #333;
}

.address h3 { font-size: 1.5rem; margin-bottom: 10px; }
.address p { color: #ccc; margin-bottom: 5px; }

.hours h4 { color: var(--accent-red); margin-bottom: 10px; text-transform: uppercase; }
.hours p { margin-bottom: 5px; color: #ccc; }

.location-btn {
    margin-top: 2.5rem;
    background-color: transparent;
    border: 1px solid #555;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
    cursor: pointer;
}
.location-btn:hover { background-color: #333; }

.location-map{
    width: 50rem;
    height: 25rem;
    border: none;
    border-radius: 10px;
    margin-top: 3rem;
}

/* --- 7. COMERCIAL --- */
.commercial-header {
    text-align: center;
    margin: 8rem auto;
}
.commercial-header i { font-size: 2rem; margin-bottom: 10px; }
.commercial-header h2 { font-size: 1.8rem; text-transform: uppercase; }
.commercial-header span { color: var(--accent-red); }

#image-commercial {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    width: 100%;
    max-height: 38rem;
    overflow: hidden;
    object-fit: cover;
}

.commercial-box {
    background-color: var(--card-gray);
    padding: 50px;
    border-radius: 10px;
    text-align: center;
}

.commercial-intro {
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
    line-height: 1.5;
}
.commercial-intro span { color: var(--accent-red); font-weight: 700; }

.sectors {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.sector-card {
    background-color: #fff;
    color: #000;
    padding: 30px 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
}

.sector-card:hover {
    background-color: var(--accent-red);
    color: var(--text-color);
    transition: 0.3s;
}

.sector-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.sector-card h3 {
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.sector-card ul {
    text-align: left;
    padding-left: 10px;
}

.sector-card li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.coming-soon {
    color: var(--accent-red);
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 20px;
}

.disclaimer {
    font-size: 0.7rem;
    color: #777;
    margin-top: 10px;
}

/* --- 8. QUEM SOMOS --- */
.about {
    text-align: center;
    margin-bottom: 10rem;
}

.about h2 {
    font-size: 2rem;
    color: var(--accent-red);
    margin-bottom: 40px;
    text-transform: uppercase;
}
.about h2 i { margin-right: 10px; color: #fff; opacity: 0.9; }

.keywords {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.keywords p {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.6;
    color: var(--text-color);
    text-align: center;
}

.keywords span {
    color: var(--accent-red);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.image-quemSomos {
    margin-top: 40px;
    width: 100%;
    max-height: 38rem;
    object-fit: cover;
}

/* --- 9. CONTATOS --- */
.contacts h2 {
    text-align: center;
    color: var(--accent-red);
    font-size: 2rem;
    margin-top: 10rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.contacts-box {
    background-color: var(--card-gray);
    border-radius: 10px;
    padding: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-col {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.contact-col h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin:.8rem auto;
    font-size: 1rem;
    cursor: pointer;
}

.contact-item a{
    display: flex;
    align-items: center;
    gap: .7rem;
}
.contact-item a p{
    color: inherit;
    text-decoration: none;
    font-size: 1.2rem;
}

.contact-item i.fa-instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
}

.contact-item i.fa-whatsapp {
    color: #25D366;
    font-size: 1.5rem;
}

.divider {
    width: 2px;
    height: 100px;
    background-color: #fff;
    /* display: none; Mobile */
}

/* --- 10. RODAPÉ --- */
footer {
    background-color: var(--card-gray);
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer section{
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 20px;
}

.footer-box{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.footer-box h3 {
    color: var(--accent-red);
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-box ul{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-box li, .footer-box p {
    color: #ccc;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-box .image-footer{
    width: 10rem;
}

@media (min-width: 933px){
    .hero{
        display: flex;
        gap: 20rem;
    }
}