/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8a2be2; /* Roxo vibrante Omnilife */
    --primary-dark: #6a11cb;
    --primary-light: #9d4edd;
    --secondary-color: #ff4081; /* Rosa para Seytú */
    --white: #ffffff;
    --light-gray: #f8f5ff; /* Fundo roxo claro */
    --gray: #888;
    --dark-gray: #333;
    --text-color: #333;
    --text-light: #666;
    --success: #4CAF50;
    --warning: #ff9800;
    --shadow: 0 4px 12px rgba(138, 43, 226, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-hero {
    margin-top: 20px;
    font-size: 1.1rem;
    padding: 15px 40px;
}

.btn-hero i {
    margin-right: 10px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.hero h1 .highlight {
    color: var(--secondary-color);
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-light);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.note {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 30px;
    font-style: italic;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Plans Section */
.plans {
    background-color: var(--white);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.plan-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid #e0e0e0;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.2);
    border-color: var(--primary-light);
}

.plan-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 30px;
    text-align: center;
    position: relative;
}

.plan-card:nth-child(2) .plan-header {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.plan-card:nth-child(3) .plan-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d81b60 100%);
}

.plan-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--warning);
    color: var(--white);
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    width: 120px;
    text-align: center;
}

.plan-content {
    padding: 30px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.plan-features i {
    color: var(--success);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

.plan-features strong {
    color: var(--primary-color);
}

.plan-cta {
    text-align: center;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 15px;
}

.btn-plan:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-plan-primary {
    background-color: var(--primary-color);
}

.btn-plan-secondary {
    background-color: var(--secondary-color);
}

.btn-plan-secondary:hover {
    background-color: #d81b60;
}

.plan-card:nth-child(2) .btn-plan {
    background-color: #6c757d;
}

.plan-card:nth-child(2) .btn-plan:hover {
    background-color: #495057;
}

.btn-plan i {
    margin-right: 10px;
}

.plan-note {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

/* Benefits Section */
.benefits {
    background-color: var(--light-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.benefit-item:nth-child(3) .benefit-icon,
.benefit-item:nth-child(6) .benefit-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d81b60 100%);
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 15px;
    color: var(--white);
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.cta-section .btn:hover {
    background-color: transparent;
    color: var(--white);
}

/* Comparison Table */
.comparison {
    background-color: var(--white);
}

.comparison-table {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    text-align: center;
    font-weight: 600;
}

.comparison-table th:first-child {
    background-color: var(--primary-dark);
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.comparison-table tr:nth-child(even) {
    background-color: var(--light-gray);
}

.comparison-table tr:hover {
    background-color: #f0e9ff;
}

.comparison-table .success {
    color: var(--success);
    font-size: 1.2rem;
}

.comparison-table .fas.fa-times {
    color: #dc3545;
}

.disclaimer {
    margin-top: 30px;
    padding: 20px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 5px;
}

.disclaimer p {
    color: #856404;
    margin: 0;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo-text {
    margin-bottom: 20px;
}

.footer-logo-text .logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo-text .logo-subtext {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: -10px;
}

.footer-logo p {
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-links h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ccc;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
}

.btn-whatsapp {
    display: inline-block;
    padding: 10px 25px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background-color: #1da851;
    transform: translateY(-3px);
}

.btn-whatsapp i {
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.official-note {
    color: var(--primary-light);
    font-weight: 500;
}