/* Custom CSS for Coming Soon Page - Black Background */
:root {
    --primary-gradient: #000000;
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-overlay: rgba(0, 0, 0, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-gradient);
    min-height: 100vh;
    overflow: hidden;
    overflow-x: hidden;
    color: white;
}

/* Garantir que todos os textos sejam brancos */
h1, h2, h3, h4, h5, h6, p, span, div {
    color: white;
}

/* Sobrescrever cores do Bootstrap para fundo preto */
.text-primary {
    color: #4facfe !important;
}

.text-warning {
    color: #ffc107 !important;
}

.text-success {
    color: #28a745 !important;
}

.text-info {
    color: #17a2b8 !important;
}

.display-1, .display-2, .display-3, .display-4, .display-5 {
    color: white !important;
}

/* Textos específicos que podem estar com cores inadequadas */
.text-center h3, .text-center h4, .text-center h5 {
    color: white !important;
}

.card-title, .card-text {
    color: white !important;
}

.feature-card h5, .feature-card p {
    color: white !important;
}

.contact-item span {
    color: white !important;
}

footer p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-overlay) url('background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.content-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 1.25rem;
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out;
}

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

.logo-container {
    display: inline-block;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.company-logo {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.company-logo:hover {
    transform: scale(1.05);
}

.company-name {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.company-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 1px;
}

.icon-container {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.progress-container {
    max-width: 400px;
    margin: 0 auto;
}

.progress-wrapper {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 4px;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    background: var(--accent-gradient);
    border-radius: 50px;
    height: 16px;
    width: 75%;
    position: relative;
    animation: progressLoad 2s ease-out;
}

@keyframes progressLoad {
    from { width: 0%; }
    to { width: 75%; }
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
}

.progress-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem 0.75rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    height: 100%;
    min-height: 160px;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    height: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.feature-icon i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    background: var(--accent-gradient);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(79, 172, 254, 0.3);
}

.feature-text {
    flex: 1;
    padding-top: 0.25rem;
}

.feature-text h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: white !important;
    letter-spacing: 0.5px;
}

.feature-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.5;
    margin: 0;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-section {
margin-bottom: 1rem;
}

.social-header {
display: flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
}

.social-title {
margin: 0;
font-size: 1.1rem;
font-weight: 500;
color: white;
}

.social-links {
display: flex;
justify-content: center;
align-items: center;
gap: 0.375rem;
flex-wrap: wrap;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: var(--accent-gradient);
    color: white;
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

/* Countdown Styles */
.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 70px;
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.countdown-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-card {
        padding: 2rem 1.5rem;
        margin: 0.5rem;
        border-radius: 15px;
    }

    .company-name {
        font-size: 2rem;
    }

    .company-logo {
        width: 60px;
        height: 60px;
    }

    .display-5 {
        font-size: 2rem;
    }

    .contact-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    /* Redes sociais em mobile - layout vertical */
    .social-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-title {
        margin-bottom: 0.25rem;
    }

    .countdown-wrapper {
        gap: 0.5rem;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.75rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    /* Cards responsivos */
    .feature-card {
        padding: 1.5rem 0.6rem;
        min-height: 140px;
        border-radius: 15px;
    }

    .feature-content {
        flex-direction: column;
        text-align: center;
        gap: 0.6rem;
        align-items: center;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        border-radius: 12px;
    }

    .feature-icon i {
        font-size: 1.3rem;
    }

    .feature-text {
        text-align: center;
        padding-top: 0;
    }

    .feature-text h5 {
        font-size: 1.15rem;
        margin-bottom: 0.3rem;
    }

    .feature-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .content-card {
        padding: 1.5rem 0.5rem;
    }

    .feature-card {
        padding: 1rem 0.4rem;
    }

    .feature-text h5 {
        font-size: 1rem;
    }

    .feature-text p {
        font-size: 0.85rem;
    }

    .contact-info .row {
        flex-direction: column;
        align-items: center;
    }

    .col-auto {
        margin-bottom: 0.25rem;
    }
}

/* Largura do conteúdo principal */
.width-80 {
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Ajustes responsivos */
@media (max-width: 1199px) {
    .width-80 {
        width: 85%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .width-80 {
        width: 90%;
    }
}

@media (max-width: 576px) {
    .width-80 {
        width: 95%;
    }
}

@media (max-width: 991px) {
    .width-80 {
        width: 100%;
        max-width: none;
    }
}
