@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
	font-family: Roboto;
    margin: 0;
    padding: 0;
}

/*----------HEADER----------*/
.header {
	background-color: #272525;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
        
.header-container {   
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
        
.logo {
    display: flex;
    align-items: center;
}

.logo img{
	height: 45px;
	width: auto;
}
        
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}
        
.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #E8AE30;
}

/*----------BANNER----------*/
.slides img{
    width: 100%;
    height: 500px;
    object-fit: cover;
}


/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}


/*
.banner {
    background: url(../imagenes/fondo.webp);
    position: relative;
    overflow: hidden;
    padding: 150px 0;
    color: white;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
}
*/
.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-title {
    margin-bottom: 20px;
    line-height: 1.2;
    font-size: 35px;
    font-weight: 800;
}

.footer {
            background-color: #272525;
            color: white;
            padding: 2rem 1rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            align-items: start;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-self: start;
        }

        .logo {
            max-width: 150px;
            height: auto;
        }

        .footer-section h3 {
            color: #ffffff;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            border-bottom: 2px solid #E8AE30;
            padding-bottom: 0.5rem;
            display: inline-block;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #E8AE30;
        }

        .contact-info {
            list-style: none;
        }

        .contact-info li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: #555;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            justify-content: flex-start;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background-color: #555;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        .social-link:hover {
            background-color: #E8AE30;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .footer-logo {
                justify-self: center;
                margin-bottom: 1rem;
            }

            .footer-section h3 {
                font-size: 1.2rem;
            }

            .social-links {
                justify-content: center;
            }

            .contact-info li {
                justify-content: center;
            }

            .banner{
                padding: 120px 0;
            }
        }

        @media (max-width: 480px) {
            .footer {
                padding: 1.5rem 0.5rem;
            }
            
            .footer-container {
                gap: 1.5rem;
            }

            .footer-section h3 {
                font-size: 1.1rem;
            }

            .social-links {
                gap: 0.5rem;
            }

            .social-link {
                width: 35px;
                height: 35px;
            }

            .logo {
                max-width: 120px;
            }

            .banner{
                padding: 100px 0;
            }

            .banner-title{
                font-size: 20px;
            }
        }

 /*----------RESPONSIVE----------*/
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}