body{
   margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}
.container1{
   
    background-image: url('../imagenes/herofondo.png');
    padding: 0 150px;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
     padding-top: 60px;
    
}

 /* Hero */
       
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            width: 100%;
        }

        .hero-text {
            z-index: 2;
            animation: slideInLeft 1s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(189, 53, 230, 0.2);
            color: #a417e1;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            border: 1px solid rgba(177, 53, 230, 0.3);
            animation: pulse 2s infinite;
            font-weight: 600;
            font-family: "Varela Round", sans-serif;
            
        }

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

        .hero-title {
            font-size: 3rem;
            font-weight: bold;
            color: white;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            font-family: "Rowdies", sans-serif;
        }

       

        .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            line-height: 1.6;
            font-family: "Varela Round", sans-serif;
        }


        .hero-image {
            position: relative;
            animation: slideInRight 1s ease-out;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-person {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .hero-person:hover {
            transform: translateY(-10px);
        }

/* RESPONSIVE STYLES */

/* Tablets y pantallas medianas */
@media (max-width: 1024px) {
    .container1 {
        padding: 0 80px;
        padding-top: 60px;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
}

/* Tablets pequeñas */
@media (max-width: 768px) {
    .container1 {
        padding: 0 40px;
        padding-top: 40px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Móviles */
@media (max-width: 480px) {
    .container1 {
        padding: 0 20px;
        padding-top: 30px;
        min-height: 90vh;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        margin-bottom: 0.8rem;
    }
}

/* Móviles muy pequeños */
@media (max-width: 320px) {
    .container1 {
        padding: 0 15px;
        padding-top: 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
}
.scroll-down-btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.pulse-ring{
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    animation: pulse 2s infinite;
}

.scroll-icon{
    position: relative;
    z-index: 2;
}

@keyframes pulse{
    0%{
        transform: scale(0.8);
        opacity: 0.7;
    }
    70%{
        transform: scale(1.2);
        opacity: 0;
    }
    100%{
        transform: scale(0.8);
        opacity: 0;
    }
}
