html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.main {
    padding: 0 !important;
}

.content {
    padding: 0 !important;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    animation: slideInUp 1s ease-out 0.2s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255,107,107,0.3);
    animation: slideInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,107,107,0.4);
    background: linear-gradient(45deg, #ee5a24, #ff6b6b);
}

.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-description {
    color: #7f8c8d;
    line-height: 1.6;
}

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

/* Dashboard Stats (cards brancos) - Textos escuros */
.dashboard-container .stat-number {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50 !important;
}

.dashboard-container .stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #5a6c7d !important;
    margin-bottom: 8px;
}

.dashboard-container .stat-description {
    font-size: 0.95rem;
    color: #95a5a6 !important;
    line-height: 1.4;
}

.stats-section .stat-item {
    text-align: center;
    padding: 20px;
    color: white !important;
}

.stats-section .stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    color: white !important;
}

.stats-section .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    color: white !important;
}

/* Dashboard Stats (cards brancos) - Textos escuros - mantém as cores do home.css */
.dashboard-container .stat-number {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50 !important;
}

.dashboard-container .stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #5a6c7d !important;
    margin-bottom: 8px;
}

.dashboard-container .stat-description {
    font-size: 0.95rem;
    color: #95a5a6 !important;
    line-height: 1.4;
}

.privacy-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.privacy-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.privacy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00b894, #00a085);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0,184,148,0.3);
}

.privacy-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
}

.privacy-content {
    color: #5a6c7d;
}

.privacy-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #00b894;
}

.privacy-item:last-child {
    margin-bottom: 0;
}

.privacy-item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00b894, #00a085);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.privacy-item-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.privacy-item-content p {
    margin: 0;
    color: #5a6c7d;
    line-height: 1.5;
}

.privacy-note {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-top: 10px;
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner.hide {
    transform: translateY(100%);
}

.cookie-content {
    margin-bottom: 15px;
}

.cookie-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    background: linear-gradient(45deg, #0056b3, #007bff);
}

.btn-reject {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 25px;
    color: white;
    transition: all 0.3s ease;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.upload-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.upload-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.upload-button {
    background: linear-gradient(45deg, #00b894, #00a085);
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,184,148,0.3);
}

.upload-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,184,148,0.4);
    background: linear-gradient(45deg, #00a085, #00b894);
}

.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: floatRandom 15s infinite linear;
}

@keyframes floatRandom {
    0% { transform: translateY(100vh) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .upload-card {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .privacy-card {
        padding: 30px 20px;
    }

    .privacy-title {
        font-size: 1.6rem;
    }

    .privacy-item {
        padding: 15px;
        margin-bottom: 20px;
    }

    .privacy-item-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 15px;
    }

    .privacy-item-content h5 {
        font-size: 1rem;
    }

    .cookie-banner {
        padding: 15px 0;
    }

    .cookie-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .cookie-text {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .cookie-buttons {
        justify-content: center;
        gap: 8px;
    }

    .btn-accept,
    .btn-reject {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 100px;
    }
}



/* Responsividade */
@media (max-width: 768px) {
    .technologies-section {
        padding: 60px 0;
    }

    .tech-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .tech-logo {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .tech-img {
        width: 40px;
        height: 40px;
    }

    .tech-title {
        font-size: 1rem;
    }

    .tech-desc {
        font-size: 0.8rem;
    }

    .tech-info-grid {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .tech-card {
        padding: 18px 12px;
    }

    .tech-status-badge {
        font-size: 0.65rem;
        padding: 3px 6px;
    }
}


/* Responsividade para Planos */
@media (max-width: 768px){
    .plans-section  {
        padding: 60px 0;
    }

    .plan-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .plan-duration {
        font-size: 1.5rem;
    }

    .plan-price {
        font-size: 2rem;
    }

    .plan-card.featured::before {
        font-size: 0.6rem;
        padding: 4px 25px;
    }}

@media (max-width: 768px) {
    .upload-modal .modal-body {
        padding: 25px 20px;
    }

    .upload-section-card {
        padding: 20px 15px;
    }

    .upload-file-input {
        padding: 20px 15px;
    }
}