/* Reset e Variáveis */
:root {
    --primary-color: #2e0e0e;
    --secondary-color: #fcca13;
    --text-color: #252525;
    --light-color: #fff;
    --dark-color: #000;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.6;
    color: var(--text-color);
}

/* Utilitários */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

.btn {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 15px;
    transition: var(--transition);
    text-align: center;
}

.btn--primary {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 12px 50px;
}

.btn--primary:hover,
.btn--primary:focus {
    color: var(--dark-color);
    font-weight: 700;
    box-shadow: 1px 1px 15px #ffc800;
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: var(--primary-color);
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 1px 5px var(--primary-color);
}

.header__title {
    font-family: "Roboto Serif", serif;
    text-transform: uppercase;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--light-color);
    font-weight: 500;
    text-align: center;
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 2rem auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9; /* Mantém proporção do vídeo */
}

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

.header__tagline {
    font-family: "Roboto", sans-serif;
    font-size: 1.1rem;
    color: var(--light-color);
    text-align: center;
    font-weight: 500;
    line-height: 1.6;
    text-transform: uppercase;
    margin: 2rem 0;
    font-style: italic;
}

.cta-button {
    text-align: center;
    margin: 2rem 0;
}

/* Seções Gerais */
section {
    padding: 4rem 0;
}

/* Intro Section */
.intro {
    background-color: var(--light-color);
}

.intro h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: var(--shadow);
    margin-bottom: 2rem;
    text-align: center;
}

.intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    text-align: center;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background-image: linear-gradient(to top, #00000015, #fff);
}

.features h2 {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 3rem;
    text-shadow: var(--shadow);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    background-color: #e9e9e9;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-family: "Roboto", sans-serif;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 1rem;
}

.feature-card p {
    font-family: "Roboto", sans-serif;
    font-weight: 450;
    color: var(--text-color);
    line-height: 1.6;
    flex-grow: 1;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.cta-section h3 {
    text-transform: uppercase;
    color: var(--light-color);
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
}

.cta-content {
    margin-bottom: 2rem;
}

.cta-content p {
    font-family: "Roboto", sans-serif;
    font-weight: 450;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}


.img-selo img{
    width: 100px;
}

.btn-wpp img {
    width: 80px;
}

.btn-wpp {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.btn-wpp img:hover {
    transform: translateY(-5px);
    width: 82px;
    transition: all .7s ease;
}

.pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.pricing p {
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
}

.price-old {
    text-decoration: line-through;
    color: #ccc;
}

.price-new {
    color: var(--secondary-color);
    font-size: 1.4rem;
}

/* Footer */
.footer {
    background-color: #1a0a0a;
    color: var(--light-color);
    padding: 2rem 0;
    text-align: center;
}

/* Media Queries */
@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    .header {
        padding: 1.5rem 0;
    }
    
    .video-container {
        margin: 1.5rem auto;
    }

    .header__tagline {
        font-size: 1rem;
        margin: 1.5rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .btn--primary {
        padding: 10px 30px;
        font-size: 0.9rem;
    }

    .btn-wpp img {
        width: 50px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 2rem 0;
    }
    
    .header {
        padding: 1rem 0;
    }
    
    .video-container {
        margin: 1rem auto;
    }
    
    .header__tagline {
        font-size: 0.9rem;
        margin: 1rem 0;
    }
    
    .btn--primary {
        padding: 8px 25px;
        font-size: 0.85rem;
    }

    .btn-wpp img {
        width: 50px;
    }

    .btn-wpp {
        right: 15px;
    }
}