* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html, body {
    background: #0b0b0b;
    color: #fff;
}

/* CONTAINER */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

/* TIPOGRAFIA */
h1 {
    font-size: 2.7rem;
    margin-bottom: 15px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

p {
    color: #bbb;
}

/* BOTÃO */
.btn {
    background: linear-gradient(45deg, #ff1e3c, #ff4d6d);
    padding: 15px 25px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 0 15px rgba(255,30,60,0.5);
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}

/* HERO */
header {
    padding: 80px 20px;
    background: radial-gradient(circle at top, #1a1a1a, #000);
}

.hero {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero img {
    width: 350px;
    opacity: 80%;
    border-radius: 173px;
    box-shadow: 0 0 30px rgba(255,30,60,0.3);
}

.hero-text {
    flex: 1;
}

/* FORM */
.form-box {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #ff1e3c;
    margin-top: 20px;
}

.form-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 6px;
    border: none;
}

.form-box button {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* SEÇÕES */
section {
    padding: 60px 20px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.box {
    background: #161616;
    padding: 20px;
    border-left: 4px solid #ff1e3c;
    border-radius: 10px;
    transition: 0.3s;
}

.box:hover {
    transform: translateY(-5px);
}

/* PREÇO */
.price {
    text-align: center;
    background: #111;
    padding: 50px;
    border-radius: 12px;
    border: 1px solid #ff1e3c;
    box-shadow: 0 0 25px rgba(255,30,60,0.3);
}

.price h2 {
    font-size: 3rem;
    color: #ff1e3c;
}

/* FAQ */
.faq {
    background: #161616;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    cursor: pointer;
}

.faq-content {
    display: none;
    color: #aaa;
    padding-top: 10px;
}

/* ANIMAÇÃO 
.fade {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s;
}

.fade.show {
    opacity: 1;
    transform: translateY(0);
}
    */

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
}

/* FOOTER */
footer {
    background: #000;
    text-align: center;
    padding: 20px;
    color: #777;
}