/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
    
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background-color: #0f1926;
    color: #e0e6f0;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

/* LINKS */
a {
    text-decoration: none;
    color: inherit;
}
.featurescard{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
align-items: center
;}
/* HEADER */
header {
    background: #111c2c;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .logo img {
    width: 120px;
    object-fit: cover;
}

header nav a {
    margin-left: 25px;
    font-weight: 500;
    transition: 0.3s;
}

header nav a:hover {
    color: #00bfff;
}

/* HERO */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg,#0a1c2f,#002244);
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #00bfff;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 30px;
    color: #cfd8e8;
}

.hero .btn-primary {
    background: #00bfff;
    color: #0f1926;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero .btn-primary:hover {
    background: #008fcf;
    color: #fff;
    transform: translateY(-3px);
}
.hero img{
     object-fit: cover;
     width: 50%;
     max-width: 50%;
}
/* CONTACT CARD */
.contact-card {
    background: linear-gradient(135deg,#0a1c2f,#001f3f);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.contact-card h1 {
    color: #00bfff;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.contact-card p {
    color: #cfd8e8;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* FORMULÁRIO */
.contact-card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-card input,
.contact-card textarea {
    padding: 15px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    background-color: #1a2a42;
    color: #fff;
}

.contact-card textarea {
    resize: vertical;
    min-height: 120px;
}
/* BOTÃO WHATSAPP MODERNO */
a.btn-primary {
     display: inline-block;
    background: #00bfff;
    color: #0f1926;
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 10px 0;
}

a.btn-primary:hover {
    background: #00bfff; /* verde mais escuro */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.contact-card button.btn-primary {
    background: #00bfff;
    color: #0f1926;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-card button.btn-primary:hover {
    background: #008fcf;
    color: #fff;
    transform: translateY(-2px);
}

/* BOTÃO WHATSAPP */
.contact-card a.btn-primary {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-card a.btn-primary:hover {
    background: #008fcf;
    color: #fff;
    transform: translateY(-2px);
}

/* RESPONSIVO */
@media(max-width:768px){
    .contact-card {
        padding: 30px 20px;
    }
    .contact-card h1 {
        font-size: 2rem;
    }
}
/* CONTAINERS */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* SECTIONS */
section h2 {
    text-align: center;
    font-size: 2rem;
    color: #00bfff;
    margin-bottom: 40px;
}
/* CONTAINER */
.container {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
}

/* CARD DE SERVIÇO */
.service-card {
    background: linear-gradient(135deg,#0a1c2f,#001f3f);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.service-card h1 {
    color: #00bfff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card p {
    color: #cfd8e8;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* BOTÃO CTA */
.service-card .btn-primary {
    background: #00bfff;
    color: #0f1926;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card .btn-primary:hover {
    background: #008fcf;
    color: #fff;
    transform: translateY(-2px);
}

/* RESPONSIVO */
@media(max-width:768px){
    .service-card {
        padding: 30px 20px;
    }
    .service-card h1 {
        font-size: 2rem;
    }
}
/* CARDS */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
}

.card {
    background: #1a2a42;
    padding:60px;

    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #00bfff;
}

.card p {
    color: #cfd8e8;
    font-size: 1rem;
}

/* CTA SECTIONS */
.cta {
    background: #111c2c;
    text-align: center;
    padding: 60px 20px;
    border-radius: 15px;
    margin: 60px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.cta h2 {
    color: #00bfff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta a {
    display: inline-block;
    background: #00bfff;
    color: #0f1926;
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta a:hover {
    background: #008fcf;
    color: #fff;
    transform: translateY(-3px);
}

/* FOOTER */
footer {
    background: #111c2c;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
    color: #cfd8e8;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.5);
}

/* FORMULÁRIOS */
form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
}

form input, form textarea {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
}

form button {
    background: #00bfff;
    color: #0f1926;
    padding: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}
/* SOBRE NÓS - CARD */
.about-card {
    background: linear-gradient(135deg,#0a1c2f,#001f3f);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.about-card h1 {
    color: #00bfff;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-card p {
    color: #cfd8e8;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* RESPONSIVO */
@media(max-width:768px){
    .about-card {
        padding: 30px 20px;
    }
    .about-card h1 {
        font-size: 2rem;
    }
}
form button:hover {
    background: #008fcf;
    color: #fff;
    transform: translateY(-2px);
}

/* RESPONSIVO */
@media(max-width:768px){
    header {
        flex-direction: column;
    }
    header nav {
        margin-top: 15px;
    }
    .hero h1 {
        font-size: 2rem;
    }
}