:root {
  --primary-bg: #20412E;
  --text-color: #FFFFFF;
  --font-family: 'Arial', sans-serif;
  --container-padding: 20px;
  --logo-max-width: 400px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: 
        /* Mapa mundial transparente */
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 500"><g fill="rgba(255,255,255,0.08)" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"><path d="M150 150 Q200 120 250 150 Q300 180 350 150 Q400 120 450 150 L450 200 Q400 230 350 200 Q300 230 250 200 Q200 230 150 200 Z"/><path d="M200 280 Q250 250 300 280 Q350 310 400 280 L400 350 Q350 380 300 350 Q250 380 200 350 Z"/><path d="M480 120 Q530 90 580 120 Q630 150 680 120 Q730 90 780 120 L780 180 Q730 210 680 180 Q630 210 580 180 Q530 210 480 180 Z"/><path d="M500 200 Q550 170 600 200 Q650 230 700 200 Q750 170 800 200 L800 280 Q750 310 700 280 Q650 310 600 280 Q550 310 500 280 Z"/><path d="M750 320 Q800 290 850 320 L850 380 Q800 410 750 380 Z"/></g></svg>') center/contain no-repeat fixed,
        radial-gradient(circle at center, #4a7c59 0%, #2d5016 100%);
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
    position: relative;
}





.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a4d3a 0%, #2d7a5f 25%, #4a9d7a 50%, #2d7a5f 75%, #1a4d3a 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header {
    padding: 40px 0 20px;
    text-align: center;
}

.logo-container {
    display: inline-block;
    border-radius: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    animation: fadeInDown 1s ease-out;
}



.logo {
    max-width: 330px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    filter: brightness(1.1);
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 0;
}

.construction-badge {
    display: inline-block;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.badge-text {
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.company-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.company-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    width: 100%;
}

.card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out calc(1.2s + var(--delay, 0s)) both;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.location-card { --delay: 0s; }
.contact-card { --delay: 0.2s; }
.phone-card { --delay: 0.4s; }

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2d7a5f, #4a9d7a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    transition: transform 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a4d3a;
    margin-bottom: 15px;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.contact-link {
    color: #2d7a5f;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link:hover {
    color: #1a4d3a;
    transform: translateX(5px);
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #2d7a5f, #4a9d7a);
    transition: width 0.3s ease;
}

.contact-link:hover::after {
    width: 100%;
}

.footer {
    padding: 30px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    animation: fadeIn 1s ease-out 2s both;
}

@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 fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-title {
        font-size: 2.5rem;
    }
    
    .company-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card {
        padding: 25px;
    }
    
    .logo {
        max-width: 140px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .company-title {
        font-size: 2rem;
    }
    
    .company-subtitle {
        font-size: 1rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
        padding: 10px 20px;
    }
    
    .card {
        padding: 20px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
    }
    
    .header {
        padding: 20px 0 10px;
    }
}