/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f2fafe;
    color: #606060;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

header {
    background: #027bff;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

.logo {
    width: 150px;
    margin: 0 auto;
}

.landing-page {
    color: #606060;
    padding: 4rem 0;
    text-align: center;
}

.landing-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #312782;
}

.landing-page p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #606060;
}

.carousel-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.planos-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
}

.plano {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
    width: 300px;
    flex: none;
    scroll-snap-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plano:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.plano .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #312782;
}

.plano h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.plano p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #606060;
}

.details p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    color: #606060;
}

.details p i {
    margin-right: 0.5rem;
    color: #312782;
}

.btn {
    display: inline-block;
    background: #027bff;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #0056b3;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.discreet-text {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #606060;
    text-align: center;
}

.discreet-link {
    color: #027bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.discreet-link:hover {
    color: #0056b3;
}

.features {
    background: #f2fafe;
    padding: 2rem 0;
    text-align: center;
}

.features .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #312782;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.feature {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #312782;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature p {
    font-size: 1rem;
    color: #666;
}

footer {
    background: #027bff;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: auto;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer p {
    margin-bottom: 0.5rem;
    font-family: 'Quicksand', sans-serif;
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icon {
    color: #fff;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ddd;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .landing-page h1 {
        font-size: 2rem;
    }

    .landing-page p {
        font-size: 1rem;
    }

    .planos-container {
        gap: 1rem;
        padding-bottom: 1rem;
    }

    .plano {
        width: 100%;
    }

    .features-grid {
        flex-direction: column;
    }

    .carousel-btn {
        padding: 0.75rem;
    }
}
