@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    text-decoration: none;
    color: #48566a;
}

html,
body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* HEADER */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

body {
    padding-top: 90px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 50px;
}

header .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

nav {
    justify-self: center;
    display: flex;
    gap: 30px;
}

nav a {
    position: relative;
    padding-bottom: 5px;
}

nav a:hover {
    color: #2563eb;
}

nav a.active {
    color: #2563eb;
    font-weight: 700;
}

nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #2563eb;
}

header img {
    width: 100%;
    max-width: 120px;
}

.menu-toggle {
    display: none;
}

h2 {
    color: #191c1e;
    font-size: 42px;
    font-weight: 900;
}

/* SECTIONS */

section {
    scroll-margin-top: 90px;
}

/* HERO */

.hero {
    background: linear-gradient(to bottom right, #f6f7fb, #e6eafe);
    padding: 80px 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 600px;
}

.hero h1 {
    color: #191c1e;
    font-weight: 900;
    font-size: 72px;
    line-height: 70px;
    letter-spacing: -3px;
}

.hero h1 span {
    color: #0037b0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* BOTÕES */

.btn-start {
    padding: 15px;
    background-color: #0037b0;
    border-radius: 999px;
    color: white;
    font-weight: 700;
    border: none;
    transition: transform 0.2s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.btn-start:hover {
    transform: scale(1.05);
}

.btn-locations {
    background-color: white;
    border-radius: 999px;
    padding: 15px;
    color: #0037b0;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.btn-locations:hover {
    background-color: rgb(230, 230, 230);
}

/* IMAGEM HERO */

.hero-image {
    max-width: 100%;
    transform: rotate(2deg);
    transition: transform 0.8s ease;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    display: block;
    width: 100%;
}

.hero-image:hover {
    transform: rotate(0deg);
}

/* HOW IT WORKS */

.section-how-it-works {
    padding: 80px 0;
    background-color: #f3f4f6;
}

.section-how-it-works .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.how-it-works-title {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

.how-it-works-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 280px;
    gap: 20px;
    transition: transform 0.2s ease;
}

.how-it-works-step:hover {
    transform: scale(1.05);
}

.step-icon {
    background-color: #dce1ff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.step-icon i {
    font-size: 22px;
    color: #191c1e;
    transition: color 0.2s ease;
}

.how-it-works-step:hover .step-icon {
    background-color: #0037b0;
}

.how-it-works-step:hover .step-icon i {
    color: white;
}

.how-it-works-content {
    display: flex;
    justify-content: center;
    gap: 40px;
}

/* FEATURES */

.section-features {
    padding: 80px 0;
    background-color: #f8f9fb;
}

.section-features .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.features-details {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.details-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 7%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.details-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.details-text-description {
    display: flex;
    flex-direction: column;
}

.description-item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.description-item:last-child {
    border-bottom: none;
}

.description-item:hover .details-icon {
    background-color: #0037b0;
}

.description-item:hover .details-icon i {
    color: white;
}

.description-item-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.description-item-text h3 {
    color: #191c1e;
    font-size: 16px;
}

.details-text-title {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.details-icon {
    background-color: #dce1ff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.details-icon i {
    font-size: 16px;
    color: #0037b0;
    transition: color 0.2s ease;
}

/* PRICES */

.section-prices {
    padding: 80px 0;
    background-color: #f3f4f6;
}

#prices .container {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.prices-title {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

.prices-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px
}

.prices-content h3 {
    font-size: 22px;
    color: #191c1e;
}

.price-card {
    border: 1px solid white;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 30px;
    transition: color 0.2s ease;
    background-color: white;
}

.price-card:hover {
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.price-card-value {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

.price-card-value p {
    font-size: 42px;
    font-weight: 900;
    color: #191c1e;
}

.price-card-value span {
    font-size: 18px;
}

.price-card-item i {
    color: #0037b0;
}


/* LOCATIONS */

.section-locations {
    padding: 80px 0;
    background-color: #f8f9fb;
}

#locations .container {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.locations-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.location-card {
    width: 100%;
    height: 100%;
    max-width: 400px;
    max-height: 450px;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: color 0.2s ease;
}



.card-image {
    height: 230px;
    background: linear-gradient(135deg, #2d2d2d, #555);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: filter 0.3s ease;
}

.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #191c1e;
}

.address {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.4;
}

.card-content a {
    margin-top: 10px;
    padding: 12px;
    border-radius: 999px;
    border: none;
    background: #e5e7eb;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.2s ease;
}

.location-card:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.location-card:hover img {
    filter: grayscale(0%);
}

.location-card:hover i {
    color: #0037b0;
}

.location-card:hover a {
    background-color: #0037b0;
    color: white;
}

.locations-content {
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* CONTACT */

.section-contact {
    padding: 80px 0;
    background-color: white;
}

#contact .container {
    display: flex;
    flex-direction: column;
    gap: 70px;
    align-items: center;
}

.contact-card {
    width: 100%;
    max-width: 800px;
    background-color: #f3f4f6;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px 40px 30px 40px;
    gap: 20px;
    border-radius: 30px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.contact-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-user-data {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
}

.contact-form span {
    color: #1b1d1f;
    font-size: 12px;
    font-weight: 600;
}

.contact-form input {
    padding: 20px;
    border-radius: 999px;
    border: none;
    height: 50px;
}

.contact-form textarea {
    padding: 20px;
    border-radius: 30px;
    border: none;
    height: 80px;
    max-width: 100%;
    min-width: 100%;
    min-height: 80px;
}

.btn-submit {
    padding: 15px;
    background-color: #0037b0;
    border-radius: 999px;
    color: white;
    font-weight: 700;
    border: none;
    transition: transform 0.2s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.btn-submit:hover {
    transform: scale(1.02);
}

/* FOOTER */

.footer {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #cbd5e1;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand img {
    width: 100%;
    max-width: 140px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.5;
}

.footer-column h4 {
    color: white;
    margin-bottom: 10px;
}

.footer-column a,
.footer-column p {
    display: block;
    font-size: 14px;
    margin-top: 6px;
    color: #cbd5e1;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #60a5fa;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.footer-column p {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column i {
    color: #60a5fa;
}

.footer-column strong {
    color: white;
    display: block;
    margin-top: 10px;
}


/* SMARTPHONE */
@media (max-width: 768px) {

    .container {
        padding: 10px 20px;
    }

    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
    }

    .nav-links {
        width: 220px;
        position: absolute;
        top: 80px;
        right: 20px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 20px;
        padding: 24px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition:
            opacity 0.2s ease,
            transform 0.2s ease,
            visibility 0.2s;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: flex;
    }

    .hero h1 {
        font-size: 3rem;
        line-height: 1.1;
    }

    .hero {
        padding-bottom: 30px;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .hero-image {
        max-width: 100%;
        border-radius: 50px;
        transform: rotate(0deg);
        transition: none;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    }

    h2 {
        font-size: 2rem;
        line-height: 1.1;
    }

    .prices-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 30px
    }

    .locations-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .section-how-it-works {
        padding: 30px 0;
    }

    .how-it-works-content {
        margin-bottom: 30px;
    }

    .section-features {
        padding: 30px 0;
    }

    .details-image img {
        max-width: 280px;
    }

    .how-it-works-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .how-it-works-step {
        align-items: center;
        width: 100%;
        max-width: 280px;
        gap: 20px;
        align-items: flex-start;
        background-color: white;
        padding: 30px 40px;
        border-radius: 30px;
    }

    .features-details {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
    }

    .section-prices {
        padding: 30px 0;
    }

    .section-locations {
        padding: 30px 0;
    }


    .section-contact {
        padding: 30px 0;
    }
    .contact-user-data {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 40px;
    }

}