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

body {
    background: #0c0c0c;
    color: white;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 10%;
    background: black;
}


nav a {
    margin-left: 30px;
    text-decoration: none;
    color: white;
    font-weight: 500;
}

.hero {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #000, #ff5a00);
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 55px;
    max-width: 800px;
}

.hero p {
    margin-top: 20px;
    font-size: 18px;
    opacity: 0.9;
}

.cta:hover {
    background: #ff7b32;
}

section {
    padding: 80px 10%;
}

.title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about img {
    width: 100%;
    border-radius: 10px;
}

.about p {
    line-height: 1.7;
}

.plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card {
    background: #111;
    border-radius: 10px;
    padding: 35px;
    border: 1px solid #222;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: #ff5a00;
}

.card h3 {
    font-size: 28px;
    color: #ff5a00;
    margin-bottom: 10px;
}

.price {
    font-size: 26px;
    margin-bottom: 10px;
}

.contract {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.card ul {
    list-style: none;
    line-height: 1.8;
}

.card li {
    margin-bottom: 6px;
}

.btn {
    margin-top: 25px;
    display: inline-block;
    background: #ff5a00;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: 600;
}

footer {
    background: black;
    text-align: center;
    padding: 30px;
    margin-top: 60px;
}

.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    color: white;
}

@media(max-width:900px) {

    .hero h1 {
        font-size: 40px;
    }

    .about {
        grid-template-columns: 1fr;
    }

}

.cta {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: #ff5a00;
    padding: 15px 35px;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: 0.3s;
}

.contato-botoes {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-whatsapp {
    background: #1f1f1f;
    border: 1px solid #25D366;
    color: #25D366;
}

.btn-whatsapp:hover {
    background: #25D366;
    color: white;
}

.instagram {
    background: #1f1f1f;
    border: 1px solid #E1306C;
    color: #E1306C;
}

.instagram:hover {
    background: #E1306C;
    color: white;
}

.cta svg {
    width: 18px;
    height: 18px;
}

.logo img {
    height: 40px;
}