/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #1a1f3c;
}

html {
    scroll-behavior: smooth;
}

/* Cabeçalho */
header {
    background-color: #0f1429;
    padding: 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Seção Hero */
.hero {
    background-color: #0f1429;
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.cta {
    background-color: #2a3b6d;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta:hover {
    background-color: #1a1f3c;
}

/* Seção de Suplementos */
.suplementos {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.suplemento-card {
    background-color: #2a3b6d;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(26, 31, 60, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border: 1px solid #1a1f3c;
}

.suplemento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(26, 31, 60, 0.3);
}

.suplemento-card h2 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 20px;
}

.suplemento-card p {
    color: #e0e0e0;
    margin-bottom: 20px;
    font-size: 16px;
}

.suplemento-card ul {
    list-style: none;
    text-align: left;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.suplemento-card ul li {
    margin-bottom: 10px;
    color: #e0e0e0;
    position: relative;
    padding-left: 25px;
    font-size: 14px;
}

.suplemento-card ul li:before {
    content: "•";
    color: #ffffff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.suplemento-card .cta {
    margin-top: 20px;
    font-size: 0.9em;
    padding: 12px 25px;
}

.suplemento-card .cta:hover {
    transform: scale(1.05);
}

/* Rodapé */
footer {
    background-color: #0f1429;
    color: #ffffff;
    padding: 40px 20px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #2a3b6d;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

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

    .suplemento-card ul {
        grid-template-columns: 1fr;
    }
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Responsividade */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #ffb6c1;
        padding: 80px 20px;
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    nav {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 20px;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .nav-menu li a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px;
        font-size: 18px;
        white-space: nowrap;
    }

    .nav-menu li a:hover {
        background-color: rgba(255, 255, 255, 0.3);
    }
}

/* Estilos para as páginas de políticas */
.termos-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    color: #ffffff;
}

.termos-content {
    background-color: #2a3b6d;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(26, 31, 60, 0.2);
}

.termos-content h1 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
}

.termos-content h2 {
    color: #ffffff;
    margin: 25px 0 15px;
    font-size: 1.5em;
}

.termos-content p {
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.6;
}

.termos-content ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 15px;
}

.termos-content ul li {
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.termos-content ul li:before {
    content: "•";
    color: #ffffff;
    position: absolute;
    left: 0;
    font-weight: bold;
}
