* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    background-color: #0E2A25;
    overflow-x: hidden;
    position: relative;
}

body::before,
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

body::before {
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -2;
}

body::after {
    background-color: #0E2A25;
    opacity: 0.8;
}

.page-wrapper {
    position: relative;
    z-index: 2;
    padding: 40px 60px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px
}

.logo {
    width: 150px
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-grow: 1
}

.text-container {
    position: relative
}

.subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8)
}

h1 {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 20px 0;
    color: #fff
}

.social-links {
    position: fixed;
    top: 20%;
    right: 60px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 1000;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    transition: color .3s ease;
}

.social-links a:hover {
    color: #4FB091;
}

/* --- Animação das Partículas --- */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1
}

.particle {
    position: absolute;
    background-color: #4FB091;
    border-radius: 20%;
    opacity: 0;
    animation: float 25s infinite linear
}

@keyframes float {
    0% {
        transform: translateY(110vh) rotate(0);
        opacity: 0
    }

    2%,
    98% {
        opacity: .4
    }

    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0
    }
}

/* --- Seção de Cards --- */
.info-cards-section {
    position: relative;
    z-index: 2;
    padding: 80px 40px;
    background-color: rgba(12, 36, 32, 0.8);
}


.cards-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto
}

.info-card {
    background-color: rgba(255, 255, 255, .05);
    border: 1px solid rgba(79, 176, 145, .2);
    border-radius: 12px;
    padding: 30px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    color: rgba(255, 255, 255, .8)
}

.info-card.card-diferenciais {
    background-color: rgba(79, 176, 145, .1)
}

.info-card .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px
}

.info-card .card-header i {
    font-size: 1.8rem;
    color: #4FB091
}

.info-card .card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff
}

.info-card p {
    line-height: 1.6
}

.info-card ul {
    list-style: none;
    padding: 0
}

.info-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.info-card ul li i {
    color: #4FB091;
    font-size: 1.1rem
}


footer {
    position: relative;
    z-index: 2;
}

/* --- ===== RESPONSIVIDADE ===== --- */
@media (max-width: 1024px) {
    .page-wrapper {
        padding: 30px;
    }

    .social-links {
        right: 20px;
        gap: 20px;
    }

    .social-links a {
        font-size: 1.8rem;
    }

    h1 {
        font-size: 4.5rem;
    }

    .logo {
        width: 120px;
    }

    .info-cards-section {
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 4rem;
    }
}