 .info-section {
            background-color: white;
            /* border-radius: 10px; */
            padding: 20px;
            margin-bottom: 20px;
            /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
        }
        
        .info-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

         .info-header span {
            font-size: 59px;
        }
        
        .location-info {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .weather-info {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .essentials-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .essentials-info span {
            font-size: 27px;
        }

        .weather-info span {
            font-size: 27px;
        }
        

        .location-info span {
            font-size: 27px;
        }
        
        
        .icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
        }
        
        h1 {
            font-size: 28px;
            color: #333;
            margin-bottom: 30px;
        }
        
        h2 {
            font-size: 24px;
            color: #333;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .hotels-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .sede-section-3 {
         margin-top: 123px;
        }
        .hotel-card {
            background-color: #a8c4f5;
            border-radius: 10px;
            overflow: hidden;
            width: 300px;
            height: 300px;
            position: relative;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            margin: 10px;
        }
        
        .hotel-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 15px;
            background-color: rgba(255, 255, 255, 0.7);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .pagination-btn {
            width: 30px;
            height: 30px;
            background-color: #666;
            color: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        
        @media (max-width: 768px) {
            .hotels-container {
                flex-direction: column;
                align-items: center;
            }
            
            .hotel-card {
                width: 100%;
                max-width: 350px;
            }
        }

                /* Agregar este nuevo CSS para el widget de clima */
        .weather-widget {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            padding: 15px;
            width: 100%;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            font-family: "Cambria", "Times New Roman", Georgia, serif;
            margin-top: 20px;
            border: 1px solid #e0e0e0;
        }
        
        .weather-row {
            display: flex;
            align-items: center;
            margin: 10px 0;
            padding: 8px 0;
            border-bottom: 1px dashed #e0e0e0;
        }
        
        .weather-row:last-child {
            border-bottom: none;
        }
        
        .weather-icon {
            font-size: 24px;
            margin-right: 15px;
            width: 30px;
            text-align: center;
        }
        
        .weather-text {
            font-size: 18px;
            flex-grow: 1;
        }
        
        #temperature {
            font-weight: bold;
            font-size: 20px;
            color: #e74c3c;
        }
        
        .weather-loading {
            text-align: center;
            padding: 20px;
            color: #7f8c8d;
        }
        
        .weather-error {
            color: #e74c3c;
            font-weight: bold;
        }


         .container {
            max-width: 1200px;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.92);
            border-radius: 15px;
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
            padding: 30px;
            margin-top: 20px;
        }
        
        h2 {
            text-align: center;
            color: #2c3e50;
            font-size: 2.2rem;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #3498db;
        }
        
        .carousel-container {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 25px;
            height: 320px;
        }
        
        .carousel-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
            height: 100%;
        }
        
        .hotel-card {
            flex: 0 0 25%;
            padding: 15px;
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .hotel-card:hover {
            transform: translateY(-5px);
        }
        
        .hotel-image {
            height: 180px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            position: relative;
        }
        
        .hotel-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .hotel-card:hover .hotel-image img {
            transform: scale(1.05);
        }
        
        .hotel-info {
            background: white;
            padding: 15px;
            border-radius: 0 0 10px 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: -5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            flex-grow: 1;
        }
        
        .hotel-info span:first-child {
            font-weight: 600;
            color: #2c3e50;
            font-size: 1.1rem;
        }
        
        .hotel-info span:last-child {
            font-size: 1.4rem;
            color: #3498db;
            font-weight: bold;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
        }
        
        .pagination-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            background: #3498db;
            color: white;
            font-size: 1.4rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        
        .pagination-btn:hover {
            background: #2980b9;
            transform: scale(1.1);
        }
        
        .pagination-btn:active {
            transform: scale(0.95);
        }
        
        .indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #bdc3c7;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .indicator.active {
            background: #3498db;
            transform: scale(1.2);
        }
        
        .auto-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
            color: #2c3e50;
            font-weight: 500;
        }
        
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 30px;
        }
        
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 30px;
        }
        
        .slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .slider {
            background-color: #3498db;
        }
        
        input:checked + .slider:before {
            transform: translateX(30px);
        }
        
        .status {
            margin-top: 20px;
            text-align: center;
            font-weight: 600;
            color: #2c3e50;
            background: rgba(52, 152, 219, 0.15);
            padding: 10px;
            border-radius: 8px;
        }
        
        @media (max-width: 900px) {
            .hotel-card {
                flex: 0 0 33.333%;
            }
        }
        
        @media (max-width: 600px) {
            .hotel-card {
                flex: 0 0 50%;
            }
            
            .container {
                padding: 15px;
            }
            
            h2 {
                font-size: 1.8rem;
            }
        }