* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    background: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(64, 64, 64, 0.85));
    z-index: 1;
}
.container {
    text-align: center;
    color: white;
    padding: 3rem 2rem;
    max-width: 700px;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.logo-section {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}
.logo-triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid white;
    position: relative;
}
.logo-triangle::after {
    content: '';
    position: absolute;
    top: 15px;
    left: -15px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 26px solid #404040;
}
.company-name {
    font-size: 2.8rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}
.beta-text {
    color: white;
}
.consultoria-text {
    color: #d1d5db;
    font-size: 2.2rem;
    display: block;
    margin-top: -5px;
}
.company-tagline {
    font-size: 1rem;
    opacity: 0.9;
    color: #d1d5db;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 1px;
}
.construction-notice {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #fbbf24;
    animation: fadeInUp 1s ease-out 0.3s both;
}
.construction-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}
.progress-container {
    background: rgba(255,255,255,0.2);
    border-radius: 25px;
    padding: 4px;
    margin: 2rem 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}
.progress-bar {
    background: linear-gradient(90deg, #1f2937, #4b5563);
    height: 24px;
    border-radius: 20px;
    width: 0%;
    animation: fillProgress 3s ease-out 1s forwards;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}
.progress-text {
    position: relative;
    z-index: 3;
    opacity: 0;
    animation: fadeInText 1s ease-out 3s forwards;
}
.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 2s infinite 2s;
}
.services-preview {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    animation: fadeInUp 1s ease-out 0.9s both;
}
.services-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #d1d5db;
}
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    text-align: left;
}
.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}
.service-icon {
    font-size: 1.2rem;
}
.contact-section {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}
.contact-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #d1d5db;
}
.contact-info {
    font-size: 1rem;
    line-height: 1.8;
}
.contact-info strong {
    color: #d1d5db;
}
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}
.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(255,255,255,0.1);
    animation: float 8s ease-in-out infinite;
}
.floating-icon:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: -2s;
}
.floating-icon:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: -4s;
}
.floating-icon:nth-child(3) {
    bottom: 15%;
    left: 8%;
    animation-delay: -1s;
}
.floating-icon:nth-child(4) {
    bottom: 25%;
    right: 15%;
    animation-delay: -3s;
}
.floating-icon:nth-child(5) {
    top: 50%;
    left: 3%;
    animation-delay: -5s;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fillProgress {
    from {
        width: 0%;
    }
    to {
        width: 80%;
    }
}
@keyframes fadeInText {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}
.social-media {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.social-media p {
    margin-bottom: 1rem;
    font-weight: 500;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.social-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}
.social-icon.facebook:hover {
    background: #1877f2;
}
.social-icon.twitter:hover {
    background: #000000;
}
.social-icon span {
    font-size: 1.2rem;
}
.container {
    padding: 2rem 1.5rem;
    margin: 1rem;
}

.company-name {
    font-size: 2rem;
}

.construction-title {
    font-size: 1.5rem;
    flex-direction: column;
    gap: 5px;
}

.services-list {
    grid-template-columns: 1fr;
}

.logo-icon {
    font-size: 3rem;
}