html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

body.minimal-layout {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #333;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    overflow: hidden;
    position: relative;
}

/* Efecto de fondo animado */
body.minimal-layout::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.08) 0%, transparent 70%);
    top: -400px;
    right: -400px;
    animation: float 20s ease-in-out infinite;
}

body.minimal-layout::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.05) 0%, transparent 70%);
    bottom: -300px;
    left: -300px;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.coming-soon-container {
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
    max-width: 700px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #C8102E 0%, #a00d25 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 4px;
    animation: fadeInDown 1s ease-out 0.2s both;
    text-shadow: 0 4px 20px rgba(200, 16, 46, 0.2);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.brand-logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    animation: fadeInScale 1s ease-out 0.4s both;
}

    .brand-logo-container::before {
        content: '';
        position: absolute;
        inset: -15px;
        background: linear-gradient(135deg, rgba(200, 16, 46, 0.15), rgba(200, 16, 46, 0.05));
        border-radius: 50%;
        filter: blur(20px);
        animation: pulse 3s ease-in-out infinite;
        z-index: -1;
    }

@keyframes pulse {
    0%, 100% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.brand-logo {
    width: 180px;
    max-width: 80%;
    height: auto;
    object-fit: contain;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 40px rgba(200, 16, 46, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .brand-logo:hover {
        transform: scale(1.08) rotate(5deg);
        box-shadow: 0 15px 50px rgba(200, 16, 46, 0.35);
    }

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #C8102E;
    animation: fadeInUp 1s ease-out 0.6s both;
    position: relative;
    display: inline-block;
}

    h1::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #C8102E, transparent);
        border-radius: 2px;
    }

h2 {
    font-size: 1.3rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.8s both;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.progress-bar-container {
    width: 100%;
    max-width: 350px;
    height: 6px;
    background-color: rgba(200, 16, 46, 0.1);
    border-radius: 20px;
    margin: 30px auto;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 1s ease-out 1s both;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #C8102E 0%, #ff1744 50%, #C8102E 100%);
    background-size: 200% 100%;
    border-radius: 20px;
    animation: progressAnimation 2.5s ease-out forwards, shimmer 2s linear infinite;
    box-shadow: 0 0 10px rgba(200, 16, 46, 0.5);
}

@keyframes progressAnimation {
    to {
        width: 68%;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.countdown {
    font-size: 1.1rem;
    color: #777;
    margin-top: 25px;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.social-icons {
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 1.4s both;
}

    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        color: #C8102E;
        font-size: 1.5rem;
        margin: 0 8px;
        border: 2px solid rgba(200, 16, 46, 0.2);
        border-radius: 50%;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        background: #ffffff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

        .social-icons a:hover {
            transform: translateY(-5px) scale(1.1);
            background: linear-gradient(135deg, #C8102E, #a00d25);
            color: #ffffff;
            border-color: #C8102E;
            box-shadow: 0 8px 25px rgba(200, 16, 46, 0.4);
        }

.decorative-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C8102E, transparent);
    margin: 35px auto;
    animation: expandWidth 1.5s ease-out 1s both;
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 80px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    .brand-logo {
        width: 150px;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1rem;
    }
}