
/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Variables */
:root {
    --primary-color: #22C55E;
    --primary-dark: #16A34A;
    --secondary-color: #F97316;
    --accent-color: #FBBF24;
    --cream-color: #FEF7ED;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --border-light: #E5E7EB;
    --white: #FFFFFF;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-success {
    background: #10B981;
    color: var(--white);
}

.btn-success:hover {
    background: #059669;
}

.btn-hero {
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

.btn-hero:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-gray);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream-color) 0%, var(--white) 50%, rgba(34, 197, 94, 0.05) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    margin-bottom: 32px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.title-primary {
    color: var(--primary-color);
    display: block;
}

.title-secondary {
    color: var(--text-dark);
    font-size: 36px;
    display: block;
}

.title-accent {
    color: var(--secondary-color);
    font-size: 36px;
    display: block;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: var(--text-dark);
}

.features-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(34, 197, 94, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-2px);
}

.feature-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.feature-desc {
    color: var(--text-dark);
    font-size: 12px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--white);
}

.nutritionists {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.nutritionist-card {
    display: flex;
    gap: 24px;
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.nutritionist-image {
    flex-shrink: 0;
}

.nutritionist-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center; /* mostra mais a parte superior */
}

.nutritionist-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.credentials {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 14px;
}

.nutritionist-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.value-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-gray);
}

/* Methodology Section */
.methodology {
    background: linear-gradient(135deg, var(--cream-color) 0%, var(--white) 100%);
}

.methodology-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.method-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
}

.method-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.method-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.method-card p {
    color: var(--text-gray);
}

.process-timeline h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 48px;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Partnerships Section */
.partnerships {
    background: var(--white);
}

.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.partnership-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.partnership-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.partnership-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.partnership-category {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partnership-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 8px 0;
}

.partnership-service {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}

.partnership-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 48px;
    border-radius: 20px;
    text-align: center;
}

.cta-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, var(--cream-color) 0%, var(--white) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-info span {
    color: var(--text-gray);
    font-size: 14px;
}

.testimonial-rating {
    margin-left: auto;
    color: var(--accent-color);
    font-size: 16px;
}

.testimonial-result {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 16px;
}

.testimonial-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-style: italic;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.stat-card {
    text-align: center;
    background: var(--white);
    padding: 32px 24px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-gray);
    font-weight: 500;
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.promo-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
}

.promo-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.promo-price {
    margin: 20px 0;
}

.old-price {
    font-size: 18px;
    text-decoration: line-through;
    opacity: 0.7;
}

.new-price {
    font-size: 32px;
    font-weight: 700;
    margin-left: 12px;
}

.promo-card p {
    margin-bottom: 24px;
    opacity: 0.9;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-details p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark), #111827);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    transition: var(--transition);
}

.social-link.whatsapp {
    background: #25D366;
}

.social-link.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-link:hover {
    transform: scale(1.1);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Login Button */
.login-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.login-btn:hover {
    background: #EA580C;
    transform: scale(1.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px 0;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-gray);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--border-light);
}

.modal-body {
    padding: 0 32px 32px;
}

.tabs {
    display: flex;
    margin-bottom: 24px;
    background: var(--border-light);
    border-radius: 8px;
    padding: 4px;
}

.tab-btn {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: var(--shadow);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.forgot-password {
    display: block;
    text-align: center;
    margin-top: 16px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
}

.terms-text {
    font-size: 12px;
    color: var(--text-gray);
    text-align: center;
    margin-top: 16px;
    line-height: 1.4;
}

.terms-text a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu.active {
        display: block;
    }

    .hero-title {
        font-size: 32px;
    }

    .title-secondary,
    .title-accent {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .nutritionists {
        grid-template-columns: 1fr;
    }

    .nutritionist-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .features-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .title-secondary,
    .title-accent {
        font-size: 20px;
    }

    .features-preview {
        grid-template-columns: 1fr;
    }

    .methodology-cards,
    .partnerships-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }

    section {
        padding: 60px 0;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
.logged-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    justify-content: center;
}
.logged-tab-btn {
    background: var(--cream-color);
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--text-gray);
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(34,197,94,0.06);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    outline: none;
}
.logged-tab-btn.active,
.logged-tab-btn:focus {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(34,197,94,0.09);
}
.logged-tabs-content {
    padding-top: 8px;
    min-height: 200px;
    display: flex;
    justify-content: center;
}
.logged-tab-content {
    animation: fadeIn 0.6s ease;
    background: var(--white);
    border-radius: 18px;
    margin: 0 auto;
    padding: 28px 20px;
    max-width: 440px;
    box-shadow: 0 4px 18px rgba(34,197,94,0.09);
}
.value-card.empty {
    background: var(--cream-color);
    color: var(--text-gray);
    text-align: center;
    border-radius: 14px;
    box-shadow: none;
    padding: 38px 0;
    font-size: 17px;
    opacity: 0.85;
}
.contact-form {
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    padding: 40px 28px 30px 28px;
    text-align: left;
    margin: 32px auto 0 auto;
}
.contact-form h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 18px;
}
.contact-form label {
    font-weight: 600;
    color: var(--text-dark);
}
.contact-form input,
.contact-form select {
    width: 100%;
    margin-bottom: 16px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 16px;
    padding: 10px 14px;
    transition: var(--transition);
    box-sizing: border-box;
}
.contact-form input:focus,
.contact-form select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(34,197,94,0.10);
}
.contact-form button {
    margin-top: 16px;
    font-size: 16px;
}
/* PAINEL LOGADO – Layout apenas UMA aba */
.logged-area {
    margin: 54px 0 32px 0;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    padding: 36px 0 24px 0;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.avatar {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: #f3f3f3;
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border: 3px solid var(--primary-color);
}
.profile-header h2 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}
.profile-header p {
    color: var(--text-gray);
    font-size: 16px;
}

.logged-tabs {
    display: flex;
    gap: 14px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.logged-tab-btn {
    background: var(--cream-color);
    border: none;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--text-gray);
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(34,197,94,0.06);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    outline: none;
}
.logged-tab-btn.active,
.logged-tab-btn:focus {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(34,197,94,0.09);
    outline: none;
}

/* NOVO: só UM card central por vez! */
.logged-tabs-content {
    display: block !important;
    width: 100%;
}
.logged-tab-content {
    display: none;
    width: 100%;
    max-width: 530px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 24px rgba(34,197,94,0.08);
    padding: 32px 20px;
    animation: fadeIn 0.5s;
}
.logged-tab-content.active {
    display: block;
}

.value-card, .method-card {
    background: var(--cream-color);
    border-radius: 14px;
    padding: 20px 20px 12px 20px;
    margin-bottom: 22px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(34,197,94,0.08);
}
.value-card h4, .method-card h4 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.value-card.empty, .method-card.empty {
    text-align: center;
    background: #f9f9f9;
    color: var(--text-gray);
    box-shadow: none;
    font-size: 17px;
    opacity: 0.87;
    margin: 0 auto;
    padding: 32px 0;
}

.skeleton-loader {
    width: 100%;
    height: 48px;
    background: linear-gradient(90deg,#e0e0e0 25%,#f5f5f5 50%,#e0e0e0 75%);
    background-size: 400% 100%;
    animation: skeleton 1.2s ease-in-out infinite;
    border-radius: 10px;
}
@keyframes skeleton {
    0% { background-position: 100% 0 }
    100% { background-position: 0 0 }
}

.contact-form {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 40px 28px;
    text-align: left;
    margin: 24px auto 0 auto;
}

.contact-form h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 18px;
}
.contact-form label {
    font-weight: 600;
    color: var(--text-dark);
}
.contact-form input,
.contact-form select {
    width: 100%;
    margin-bottom: 18px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 16px;
    padding: 10px 14px;
    transition: var(--transition);
    box-sizing: border-box;
}
.contact-form input:focus,
.contact-form select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(34,197,94,0.10);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}
.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}
.btn-primary:hover { background: var(--primary-dark);}
.btn-success { background: #10B981; color: var(--white);}
.btn-success:hover { background: #059669;}
.btn-full { width: 100%; }
.form-group input.error, .form-group select.error, .form-group textarea.error {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
/* Responsivo painel logado */
@media (max-width: 750px) {
    .profile-header {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 1.3rem;
        text-align: center;
    }
    .logged-tab-content, .contact-form {
        padding: 14px 7px;
        max-width: 98vw;
    }
}
@media (max-width: 550px) {
    .logged-tabs { flex-direction: column; gap: 8px; margin-bottom: 14px; align-items: stretch;}
    .logged-tab-btn {width: 100%;justify-content: center;}
}
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(24px);}
    to   {opacity: 1; transform: none;}
}
.timeline-item {
    background: var(--cream-color);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(34,197,94,0.07);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.timeline-date {
    font-weight: 700;
    color: var(--primary-color);
    min-width: 120px;
}
.timeline-type {
    font-weight: 600;
    color: var(--secondary-color);
    flex-grow: 1;
}
.timeline-desc {
    color: var(--text-gray);
    flex-grow: 2;
}

