


        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --green-color: #27ae60;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }  
        
        .container {
            width: 90%;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 15px;
        }
     
        /* Header Styles */
        header {
            background: linear-gradient(45deg, #2F4F4F, #8B4513) ;
            color: white;
            padding: 0.5rem 0; color: var (--primary-color);
            position: sticky;
            top: 0;
            z-index: 100;
           
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: .5 rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }
        
        .logo span {
            color: var(--secondary-color);
        }

        #encabezado{
            font-size: 20px;
            font-weight: bold;
            color: rgb(207, 205, 40);
            text-decoration: none;
        }

        
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--secondary-color);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://placeholder.com/1920x1080') no-repeat center center/cover;
            height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }
        
        .hero-content {
            max-width: 800px;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        .btn {
            display: inline-block;
            background: var(--secondary-color);
            color: white;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: cubic-bezier(0.075, 0.82, 0.165, 1)
        }
        
        .btn:hover {
            background: #2980b9;
        }
        
        /* Amenities Section */
        .amenities {
            padding: 5rem 0;
            background: linear-gradient(45deg, #70c3c3, #8B4513) ;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: black;
            margin-bottom: 1rem;
        }
        
        .section-title p {
            color:  black;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .amenities-grid {
           background:  ;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }
        
        .amenity-card {
            padding-top: 5px;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .amenity-card:hover {
            transform: translateY(-10px);
        }
        
        .amenity-img {
            height: 250px;
            background-color: white;
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;            i
        }
        
        .amenity-content {
           
        }
        
        .amenity-content h3 {
            
            color: var(--primary-color);
        }
        
        /* Location Section */
        .location {
            padding: 5rem 0;
            background-color: #f2f2f2;
        }
        
        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .location-info h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }
        
        .location-list {
            list-style: none;
        }
        
        .location-list li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        
        .location-list li i {
            margin-right: 1rem;
            color: var(--secondary-color);
        }
        
        .map-container {
            height: 400px;
            background-color: #ddd;
            border-radius: 8px;
            overflow: hidden;
        }
        
        /* Gallery Section */
        .gallery {
            padding: 5rem 0;
            background-color: white;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        
        .gallery-item {
            height: 400px;
            background-color: #ddd;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 0 1rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h3 {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        
        .footer-section p, .footer-section li {
            margin-bottom: 0.8rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: var(--secondary-color);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            transition: background 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--secondary-color);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: row;
            }
            
            nav ul {
                margin-top: 1rem;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .location-content {
                grid-template-columns: 1fr;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }
    
 .division {
  background-color: rgb(89, 89, 7);
  padding: 10px;
  display: none;
  width: 180px;
  color: whitesmoke;
  font-size: 14px;
}
  
span:hover + div {
  display: block;
}

 /* Style for the accordion buttons */
        .accordion {
            
            align-items: center;
            
            color: 0000;
            cursor: pointer;
            
           
            text-align: center;
            border: none;
            outline: none;
           
            
            font-size: 1rem; /* Small text */
            transition: background-color 0.3s ease;
        }

        /* Change background on hover and when active */

        /* Estilo al pasar el cursor */



.carousel-control-next:hover {
  background-color: white; /* Azul más oscuro al pasar el cursor */
}

.carousel-control-next-icon{
        background-color: #d90f2e46;

}
.carousel-control-prev:hover {
  background-color: white; /* Azul más oscuro al pasar el cursor */
}

.carousel-control-prev-icon{
        background-color: #d90f2e46;

.active, .accordion:hover {
            background-color: 00002; /* Darker green */
        }

        /* Style the accordion panel. Hidden by default */
.panel {
            padding: 0 0px;
            background-color: white;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.2s ease-out;
            border-radius: 0 0 8px 8px;
        }
 
       .noticias-img {
            
            background-color: #ddd;
            background-position: center;
            background-size:contain;
            background-repeat: no-repeat;
           
        }

       


