/* ===== COMPONENT-SPECIFIC STYLES ===== */

/* ===== FORM STYLES ===== */
.form__input.error,
.form__textarea.error {
    border-color: var(--error-color);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.field-error {
    color: var(--error-color);
    font-size: var(--small-font-size);
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.field-error::before {
    content: '⚠';
    font-size: 0.875rem;
}

.character-counter {
    text-align: right;
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    margin-top: 0.25rem;
}

.character-counter.warning {
    color: var(--warning-color);
}

.character-counter.error {
    color: var(--error-color);
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 1rem 1.5rem;
    z-index: var(--z-modal);
    transform: translateX(100%);
    transition: var(--transition);
    max-width: 400px;
}

.toast.show {
    transform: translateX(0);
}

.toast--success {
    border-left: 4px solid var(--success-color);
}

.toast--error {
    border-left: 4px solid var(--error-color);
}

.toast--warning {
    border-left: 4px solid var(--warning-color);
}

.toast__content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast__icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.toast--success .toast__icon {
    color: var(--success-color);
}

.toast--error .toast__icon {
    color: var(--error-color);
}

.toast--warning .toast__icon {
    color: var(--warning-color);
}

.toast__message {
    font-weight: var(--font-medium);
    color: var(--text-color);
}

/* ===== LOADING STATES ===== */
.btn--loading {
    position: relative;
    color: transparent !important;
}

.btn--loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1rem;
    height: 1rem;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== TOOLTIPS ===== */
.tooltip {
    position: absolute;
    background: var(--background-color-dark);
    color: var(--text-color);
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: var(--small-font-size);
    box-shadow: var(--shadow-lg);
    z-index: var(--z-tooltip);
    pointer-events: none;
    white-space: nowrap;
}

.tooltip::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--background-color-dark);
}

/* ===== FOCUS INDICATORS ===== */
.focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== ANIMATION CLASSES ===== */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.aos-animate {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    transition: var(--transition);
}

.preloader--hidden {
    opacity: 0;
}

.preloader__content {
    text-align: center;
}

.preloader__spinner {
    width: 3rem;
    height: 3rem;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto var(--mb-1);
}

.preloader__text {
    color: var(--text-color-light);
    font-weight: var(--font-medium);
}

/* ===== ACTIVE LINK STYLES ===== */
.nav__link.active-link {
    color: var(--primary-color);
}

.nav__link.active-link::after {
    width: 100%;
}

/* ===== HOVER EFFECTS ===== */
.feature__card:hover .feature__icon {
    transform: scale(1.1);
}

.about__value:hover .about__value-icon {
    transform: rotate(5deg);
}

.privacy__feature:hover .privacy__feature i {
    transform: scale(1.1);
}

/* ===== RESPONSIVE COMPONENTS ===== */
@media screen and (max-width: 768px) {
    .toast {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .toast.show {
        transform: translateY(0);
    }
    
    .tooltip {
        display: none;
    }
    
    .btn--large {
        width: 100%;
        justify-content: center;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .nav,
    .scrollup,
    .footer__social,
    .cta,
    .contact__form {
        display: none !important;
    }
    
    .hero,
    .about,
    .features,
    .privacy,
    .faq {
        page-break-inside: avoid;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .btn {
        border: 1px solid var(--text-color) !important;
        background: none !important;
        color: var(--text-color) !important;
    }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
    :root {
        --border-color: #000000;
        --text-color: #000000;
        --background-color: #ffffff;
    }
    
    .btn--primary {
        background: #000000 !important;
        color: #ffffff !important;
    }
    
    .btn--outline {
        border-color: #000000 !important;
        color: #000000 !important;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero__scroll {
        animation: none;
    }
    
    .btn--loading::after {
        animation: none;
    }
    
    .preloader__spinner {
        animation: none;
    }
}

/* ===== DARK MODE ENHANCEMENTS ===== */
@media (prefers-color-scheme: dark) {
    .toast {
        background: var(--background-color-light);
        border-color: var(--border-color);
    }
    
    .tooltip {
        background: var(--background-color-light);
        border: 1px solid var(--border-color);
    }
    
    .tooltip::before {
        border-top-color: var(--background-color-light);
    }
    
    .preloader {
        background: var(--background-color);
    }
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */
@media (prefers-reduced-motion: no-preference) {
    .feature__card,
    .about__value,
    .privacy__feature {
        transition: var(--transition);
    }
    
    .feature__card:hover,
    .about__value:hover,
    .privacy__feature:hover {
        transform: translateY(-2px);
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-color-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color-dark);
}

/* ===== SELECTION STYLES ===== */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* ===== FOCUS STYLES FOR KEYBOARD NAVIGATION ===== */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== SKIP LINK FOR ACCESSIBILITY ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: var(--border-radius);
    z-index: var(--z-modal);
    transition: var(--transition);
}

.skip-link:focus {
    top: 6px;
}

/* ===== ERROR BOUNDARY STYLES ===== */
.error-boundary {
    padding: 2rem;
    text-align: center;
    background: var(--background-color-light);
    border: 1px solid var(--error-color);
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.error-boundary__title {
    color: var(--error-color);
    margin-bottom: var(--mb-1);
}

.error-boundary__message {
    color: var(--text-color-light);
    margin-bottom: var(--mb-2);
}

/* ===== LOADING SKELETON ===== */
.skeleton {
    background: linear-gradient(90deg, var(--background-color-light) 25%, var(--background-color) 50%, var(--background-color-light) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton--text {
    height: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 0.5rem;
}

.skeleton--title {
    height: 1.5rem;
    width: 60%;
}

.skeleton--button {
    height: 2.5rem;
    width: 120px;
    border-radius: var(--border-radius);
}

/* ===== UTILITY CLASSES ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--mb-1); }
.mb-2 { margin-bottom: var(--mb-2); }
.mb-3 { margin-bottom: var(--mb-3); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--mb-1); }
.mt-2 { margin-top: var(--mb-2); }
.mt-3 { margin-top: var(--mb-3); }

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.grid {
    display: grid;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

/* ===== ABOUT COMPANY SECTION ===== */
.about-company {
    background: var(--background-color);
    padding: var(--section-padding) 0;
}

.about-company__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.about-company__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-company__title {
    font-size: var(--h3-font-size);
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: var(--font-semi-bold);
}

.about-company__description {
    font-size: var(--normal-font-size);
    color: var(--text-color-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-company__values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about-company__value {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-company__value-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-company__value-content h4 {
    font-size: var(--normal-font-size);
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: var(--font-semi-bold);
}

.about-company__value-content p {
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    line-height: 1.5;
}

.about-company__cta {
    margin-top: 2rem;
}

.about-company__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-company__img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* Responsive para About Company */
@media (max-width: 768px) {
    .about-company__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-company__image {
        order: -1;
    }
    
    .about-company__title {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    .about-company__description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .about-company__values {
        gap: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .about-company__value {
        padding: 0.75rem;
        border-radius: 0.75rem;
        background: var(--background-color-light);
    }
    
    .about-company__value-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .about-company__value-content h4 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }
    
    .about-company__value-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .about-company__cta {
        margin-top: 1.5rem;
    }
    
    .about-company__cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-company__values {
        gap: 1rem;
    }
    
    .about-company__value {
        padding: 0.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .about-company__value-icon {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.9rem;
    }
    
    .about-company__value-content h4 {
        font-size: 0.9rem;
    }
    
    .about-company__value-content p {
        font-size: 0.8rem;
    }
    
    .about-company__title {
        font-size: 1.1rem;
    }
    
    .about-company__description {
        font-size: 0.9rem;
    }
    
    .about-company__cta .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 576px) {
    .about-company__values {
        gap: 1rem;
    }
    
    .about-company__value {
        gap: 0.75rem;
    }
    
                .about-company__value-icon {
                width: 2.5rem;
                height: 2.5rem;
                font-size: 1rem;
            }
        }
        
        /* ===== APP MASCULINO - FORÇA ===== */
.masculine-app {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.masculine-app::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.masculine-app__container {
    position: relative;
    z-index: 2;
}

.masculine-app__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.masculine-app__text {
    color: #ffffff;
}

.masculine-app__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.masculine-app__title .highlight {
    color: #ff6e40;
    text-shadow: 0 0 20px rgba(255, 110, 64, 0.3);
}

.masculine-app__subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.masculine-app__description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #b0b0b0;
}

.masculine-app__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.masculine-app__feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.masculine-app__feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.masculine-app__feature-icon {
    font-size: 1.5rem;
    min-width: 2rem;
    text-align: center;
}

.masculine-app__feature span {
    font-weight: 500;
    color: #ffffff;
}

.masculine-app__cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.masculine-app__coming-soon {
    background: linear-gradient(135deg, #ff6e40 0%, #ff8a65 100%);
    color: #ffffff;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 110, 64, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 8px 25px rgba(255, 110, 64, 0.3);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 12px 35px rgba(255, 110, 64, 0.4);
    }
}

.masculine-app__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive para App Masculino */
@media (max-width: 768px) {
    .masculine-app__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .masculine-app__title {
        font-size: 2.5rem;
    }
    
    .masculine-app__subtitle {
        font-size: 1.2rem;
    }
    
    .masculine-app__coming-soon {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .masculine-app__title {
        font-size: 2rem;
    }
    
    .masculine-app__subtitle {
        font-size: 1.1rem;
    }
    
    .masculine-app__coming-soon {
        font-size: 0.8rem;
        padding: 0.7rem 1.2rem;
    }
    
    .masculine-app__features {
        gap: 0.8rem;
    }
    
    .masculine-app__feature {
        padding: 0.8rem;
    }
}

/* ===== SU CONTROLE LOGO ===== */
.su-logo {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            width: 100%;
            height: 100%;
        }
        
        .su-logo__container {
            text-align: center;
            background: white;
            border-radius: 1.5rem;
            padding: 2.5rem 2rem;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            border: 2px solid #f1f5f9;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            min-width: 250px;
            max-width: 100%;
        }
        
        .su-logo__container:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
        }
        
        .su-logo__container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff6e40, #1a1a2e);
        }
        
        .su-logo__text {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1;
            text-align: center;
        }
        
        .su-logo__su {
            font-size: 3rem;
            color: #ff6e40;
            text-shadow: 0 2px 4px rgba(255, 110, 64, 0.2);
            font-weight: 800;
            display: inline-block;
            vertical-align: baseline;
        }
        
        .su-logo__controle {
            font-size: 2.2rem;
            color: #1a1a2e;
            font-weight: 700;
            display: inline-block;
            vertical-align: baseline;
        }
        
        .su-logo__registered {
            font-size: 1rem;
            color: #1a1a2e;
            font-weight: 600;
            margin-left: 0.25rem;
        }
        
        .su-logo__tagline {
            font-size: 1.2rem;
            color: #64748b;
            font-weight: 600;
            letter-spacing: 1px;
            margin-top: 1rem;
            animation: fadeInUp 0.8s ease-out 0.3s both;
            text-transform: uppercase;
            font-family: 'Inter', sans-serif;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Logo */
        @media screen and (max-width: 768px) {
            .su-logo__container {
                padding: 2rem 1.5rem;
                min-width: 200px;
            }
            
            .su-logo__su {
                font-size: 2.5rem;
            }
            
            .su-logo__controle {
                font-size: 1.8rem;
            }
            
            .su-logo__tagline {
                font-size: 1.1rem;
                letter-spacing: 0.8px;
            }
        }
        
        @media screen and (max-width: 480px) {
            .su-logo__container {
                padding: 1.5rem 1rem;
                min-width: 160px;
            }
            
            .su-logo__su {
                font-size: 2.5rem;
            }
            
            .su-logo__controle {
                font-size: 1.8rem;
            }
            
            .su-logo__su {
                font-size: 2rem;
            }
            
            .su-logo__controle {
                font-size: 1.5rem;
            }
            
            .su-logo__registered {
                font-size: 0.8rem;
                color: #1a1a2e;
                font-weight: 600;
            }
            
            .su-logo__tagline {
                font-size: 0.95rem;
                letter-spacing: 0.6px;
            }
        }
        
        /* ===== ABOUT CREATOR SECTION ===== */
        .about-creator {
            background: var(--background-color);
            padding: var(--section-padding) 0;
        }
        
        .about-creator__container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--container-padding);
        }
        
        .about-creator__content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .about-creator__title {
            font-size: var(--h3-font-size);
            color: var(--text-color);
            margin-bottom: 1.5rem;
            font-weight: var(--font-semi-bold);
        }
        
        .about-creator__description {
            font-size: var(--normal-font-size);
            color: var(--text-color-light);
            line-height: 1.6;
            margin-bottom: 2rem;
        }
        
        .about-creator__highlight {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: white;
            border-radius: 1rem;
            box-shadow: 0 4px 16px rgba(0,0,0,0.06);
            border-left: 4px solid var(--primary-color);
        }
        
        .about-creator__highlight-icon {
            width: 3rem;
            height: 3rem;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            flex-shrink: 0;
        }
        
        .about-creator__highlight-content h4 {
            font-size: var(--normal-font-size);
            color: var(--text-color);
            margin-bottom: 0.5rem;
            font-weight: var(--font-semi-bold);
        }
        
        .about-creator__highlight-content p {
            font-size: var(--small-font-size);
            color: var(--text-color-light);
            line-height: 1.5;
        }
        
        .about-creator__image {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .about-creator__avatar {
            position: relative;
        }
        
        .about-creator__avatar-circle {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3.5rem;
            box-shadow: 0 8px 32px rgba(168,85,247,0.3);
            overflow: hidden;
            position: relative;
        }

        /* ESPAÇO PARA SUA FOTO - SUBSTITUA O CONTEÚDO ABAIXO */
        .about-creator__avatar-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        /* Comentário para você: SUBSTITUA ESTA DIV PELA SUA FOTO */
        /* 
        <div class="about-creator__avatar-circle">
            <img src="images/david-oliveira.jpg" alt="David Oliveira - Criador do TAAI">
        </div>
        */
        
        .about-creator__avatar-glow {
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            background: radial-gradient(circle, rgba(168,85,247,0.2) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }
        
        /* ===== CREATOR MODAL ===== */
        .creator-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
        }
        
        .creator-modal.show {
            display: flex;
        }
        
        .creator-modal__overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(4px);
        }
        
        .creator-modal__content {
            position: relative;
            background: white;
            border-radius: 1.5rem;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            animation: modalSlideIn 0.3s ease-out;
        }
        
        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .creator-modal__header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 2rem 1rem;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .creator-modal__title {
            font-size: 1.5rem;
            color: var(--text-color);
            font-weight: var(--font-semi-bold);
        }
        
        .creator-modal__close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-color-light);
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .creator-modal__close:hover {
            background: #f3f4f6;
            color: var(--text-color);
        }
        
        .creator-modal__body {
            padding: 2rem;
        }
        
        .creator-modal__author {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: #f8fafc;
            border-radius: 1rem;
        }
        
        .creator-modal__author-avatar {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }
        
        .creator-modal__author-info h4 {
            font-size: 1.1rem;
            color: var(--text-color);
            margin-bottom: 0.25rem;
            font-weight: var(--font-semi-bold);
        }
        
        .creator-modal__author-info span {
            font-size: 0.9rem;
            color: var(--text-color-light);
        }
        
        .creator-modal__message {
            line-height: 1.7;
        }
        
        .creator-modal__message p {
            margin-bottom: 1.5rem;
            color: var(--text-color);
            font-size: 1rem;
        }
        
        .creator-modal__signature {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #e5e7eb;
            text-align: right;
        }
        
        .creator-modal__signature p {
            color: var(--text-color);
            font-style: italic;
            margin-bottom: 0;
        }
        
        /* Responsive para About Creator */
        @media screen and (max-width: 768px) {
            .about-creator__content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            
            .about-creator__image {
                order: -1;
            }
            
            .about-creator__title {
                font-size: 1.25rem;
                line-height: 1.3;
            }
            
            .about-creator__description {
                font-size: 0.95rem;
                line-height: 1.6;
            }
            
            .about-creator__highlight {
                padding: 1.25rem;
                margin-bottom: 1.5rem;
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            
            .about-creator__highlight-icon {
                width: 2.5rem;
                height: 2.5rem;
                font-size: 1rem;
                margin: 0 auto;
            }
            
            .about-creator__highlight-content h4 {
                font-size: 0.95rem;
                margin-bottom: 0.5rem;
            }
            
            .about-creator__highlight-content p {
                font-size: 0.85rem;
                line-height: 1.4;
            }
            
            .about-creator__avatar-circle {
                width: 150px;
                height: 150px;
                font-size: 2.5rem;
            }
            
            .creator-modal__content {
                width: 90%;
                max-width: 500px;
                margin: 2rem auto;
            }
            
            .creator-modal__header {
                padding: 1.5rem;
            }
            
            .creator-modal__body {
                padding: 1.5rem;
            }
        }
        
        @media screen and (max-width: 480px) {
            .about-creator__avatar-circle {
                width: 120px;
                height: 120px;
                font-size: 2rem;
            }
            
            .about-creator__highlight {
                padding: 1rem;
                margin-bottom: 1rem;
            }
            
            .about-creator__highlight-icon {
                width: 2.25rem;
                height: 2.25rem;
                font-size: 0.9rem;
            }
            
            .about-creator__highlight-content h4 {
                font-size: 0.9rem;
            }
            
            .about-creator__highlight-content p {
                font-size: 0.8rem;
            }
            
            .about-creator__title {
                font-size: 1.1rem;
            }
            
            .about-creator__description {
                font-size: 0.9rem;
            }
            
            .creator-modal__content {
                width: 95%;
                margin: 1rem auto;
            }
            
            .creator-modal__header {
                padding: 1rem;
            }
            
            .creator-modal__body {
                padding: 1rem;
            }
        } 

/* ===== COOKIE CONSENT POPUP ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: var(--z-modal);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-consent__text h3 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cookie-consent__text p {
    color: var(--text-color-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-consent__text a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-consent__text a:hover {
    color: var(--primary-dark);
}

.cookie-consent__actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-consent__actions .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 1rem;
    }
    
    .cookie-consent__content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-consent__actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-consent__actions .btn {
        flex: 1;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .cookie-consent__text h3 {
        font-size: 1rem;
    }
    
    .cookie-consent__text p {
        font-size: 0.85rem;
    }
    
    .cookie-consent__actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-consent__actions .btn {
        max-width: none;
    }
} 