/* Resetear estilos del container de Yii2 para esta página */


/* Ocultar breadcrumbs en la home */
.breadcrumb {
    display: none;
}

.contact-direct-block {
    background: rgba(242, 183, 5, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(242, 183, 5, 0.3);
}

.contact-direct-block p {
    color: #F2F2F2;
    font-size: 1.1rem;
}

.gear-icon {
    display: inline-block;
    font-size: 2rem;
    margin: 0 10px;
    animation: rotate 5s linear infinite;
    background: linear-gradient(135deg, #999, #ddd, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Segunda rueda gira al revés y más lenta */
.gear-icon:last-of-type {
    animation: rotateReverse 7s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes rotateReverse {
    from { transform: rotate(360deg); }
    to   { transform: rotate(0deg); }
}

.subscribe-form {
    max-width: 500px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease 0.9s both;
}

.subscribe-form > p {
    color: #8A8A8A;
    margin-bottom: 15px;
}

.input-group-construction {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid #F2B705;
    background: rgba(43, 43, 43, 0.8);
    color: #F2F2F2;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #FF8C00;
    background: rgba(43, 43, 43, 1);
    box-shadow: 0 0 15px rgba(242, 183, 5, 0.3);
}

.email-input::placeholder {
    color: #8A8A8A;
}

.btn-notify {
    padding: 15px 40px;
    background: linear-gradient(135deg, #F2B705 0%, #C98A00 100%);
    color: #1A1A1A !important;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn-notify:hover {
    background: linear-gradient(135deg, #FF8C00 0%, #F2B705 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(242, 183, 5, 0.4);
    color: #1A1A1A !important;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    animation: fadeInUp 1s ease 1.1s both;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(242, 183, 5, 0.1);
    border: 2px solid #F2B705;
    border-radius: 50%;
    color: #F2B705;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #F2B705;
    color: #1A1A1A;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(242, 183, 5, 0.3);
}

.features-construction {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    animation: fadeInUp 1s ease 1.3s both;
}

.feature-item {
    padding: 30px 20px;
    background: rgba(43, 43, 43, 0.5);
    border: 1px solid rgba(242, 183, 5, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #F2B705;
    background: rgba(43, 43, 43, 0.8);
    box-shadow: 0 10px 30px rgba(242, 183, 5, 0.2);
}

.feature-icon {
    color: #8A8A8A;
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    color: #F2B705;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: #D1D1D1;
    font-size: 0.9rem;
    margin: 0;
}

#formMessage {
    color: #F2B705;
    display: none;
    margin-top: 10px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .construction-title {
        font-size: 2.5rem;
    }

    .construction-subtitle {
        font-size: 1.2rem;
    }

    .logo-construction {
        max-width: 200px;
    }

    .input-group-construction {
        flex-direction: column;
    }

    .email-input {
        min-width: 100%;
    }

    .features-construction {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .construction-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .construction-subtitle {
        font-size: 1rem;
    }

    .construction-message {
        font-size: 1rem;
    }
}