 :root {
   --primary-color: #007bff;
   --secondary-color: #6c757d;
   --success-color: #28a745;
   --danger-color: #dc3545;
   --light-color: #f8f9fa;
   --dark-color: #343a40;
   --whatsapp-color: #25D366;
   --whatsapp-hover: #128C7E;
   --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   --transition: all 0.3s ease;
 }

 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 body {
   background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
   min-height: 100vh;
   padding: 20px;
   color: #333;
 }

 .container-main {
   max-width: 1200px;
   margin: 0 auto;
   padding: 20px;
 }

 .header {
   text-align: center;
   margin-bottom: 40px;
   padding: 30px;
   background: white;
   border-radius: 15px;
   box-shadow: var(--box-shadow);
   position: relative;
   overflow: hidden;
 }

 .header::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 5px;
   background: linear-gradient(90deg, var(--primary-color), var(--success-color));
 }

 .logo {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 15px;
   margin-bottom: 15px;
 }

 .logo h1 {
   font-size: 2.5rem;
   font-weight: 700;
   color: var(--dark-color);
   margin: 0;
 }

 .logo i {
   font-size: 2.5rem;
   color: var(--primary-color);
 }

 .subtitle {
   font-size: 1.2rem;
   color: var(--secondary-color);
   max-width: 700px;
   margin: 0 auto;
   line-height: 1.6;
 }

 .section-title {
   text-align: center;
   margin: 40px 0 30px;
   font-size: 2rem;
   color: var(--dark-color);
   position: relative;
   padding-bottom: 15px;
 }

 .section-title::after {
   content: "";
   position: absolute;
   bottom: 0;
   left: 50%;
   transform: translateX(-50%);
   width: 100px;
   height: 4px;
   background: var(--primary-color);
   border-radius: 2px;
 }

 .gama-container {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 30px;
   margin-bottom: 40px;
 }

 .gama-card {
   background: white;
   border-radius: 15px;
   overflow: hidden;
   box-shadow: var(--box-shadow);
   transition: var(--transition);
   flex: 1;
   min-width: 300px;
   max-width: 380px;
   cursor: pointer;
 }

 .gama-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
 }

 .gama-img {
   width: 100%;
   height: 200px;
   object-fit: cover;
   display: block;
 }

 .gama-body {
   padding: 25px;
 }

 .gama-title {
   font-size: 1.5rem;
   margin-bottom: 15px;
   color: var(--dark-color);
 }

 .gama-text {
   color: var(--secondary-color);
   margin-bottom: 20px;
   line-height: 1.6;
 }

 .gama-features {
   list-style: none;
   margin-bottom: 25px;
 }

 .gama-features li {
   padding: 8px 0;
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .gama-features i {
   color: var(--success-color);
   font-size: 1.2rem;
 }

 .gama-price {
   font-size: 1.8rem;
   font-weight: 700;
   color: var(--primary-color);
   text-align: center;
   margin-top: 15px;
   padding: 10px;
   background: rgba(0, 123, 255, 0.1);
   border-radius: 8px;
 }

 .nav-controls {
   text-align: center;
   margin: 30px 0;
 }

 .btn-nav {
   background: var(--secondary-color);
   color: white;
   border: none;
   padding: 12px 25px;
   border-radius: 50px;
   font-size: 1.1rem;
   font-weight: 600;
   cursor: pointer;
   transition: var(--transition);
   display: inline-flex;
   align-items: center;
   gap: 10px;
 }

 .btn-nav:hover {
   background: #5a6268;
   transform: scale(1.05);
 }

 .hidden {
   display: none;
 }

 /* Tarifas */
 .tarifas-container {
   max-width: 800px;
   margin: 30px auto;
   padding: 20px;
   display: none;
 }

 .tarifas-card {
   background: white;
   border-radius: 15px;
   box-shadow: var(--box-shadow);
   padding: 30px;
   text-align: center;
 }

 .tarifas-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
   gap: 20px;
   margin: 30px 0;
 }

 .tarifa-item {
   border: 1px solid #e0e0e0;
   border-radius: 10px;
   padding: 20px;
   transition: var(--transition);
 }

 .tarifa-item:hover {
   transform: translateY(-5px);
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   border-color: var(--primary-color);
 }

 .tarifa-periodo {
   font-weight: 600;
   color: var(--dark-color);
   margin-bottom: 8px;
   font-size: 1.1rem;
 }

 .tarifa-precio {
   font-size: 1.8rem;
   font-weight: bold;
   color: var(--primary-color);
 }

 .calendario-container {
   display: flex;
   flex-wrap: wrap;
   gap: 30px;
   justify-content: center;
   margin: 40px 0 30px;
 }

 .fecha-input {
   flex: 1;
   min-width: 250px;
   text-align: left;
 }

 .fecha-input label {
   display: block;
   margin-bottom: 8px;
   font-weight: 600;
   color: var(--dark-color);
 }

 .fecha-input input {
   width: 100%;
   padding: 12px 15px;
   border: 2px solid #e0e0e0;
   border-radius: 8px;
   font-size: 1rem;
   transition: var(--transition);
 }

 .fecha-input input:focus {
   border-color: var(--primary-color);
   outline: none;
   box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
 }

 .btn-alquilar {
   background: var(--whatsapp-color);
   color: white;
   border: none;
   padding: 15px 40px;
   border-radius: 50px;
   font-size: 1.1rem;
   font-weight: 600;
   cursor: pointer;
   transition: var(--transition);
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 15px;
   margin: 30px auto 0;
 }

 .btn-alquilar:hover {
   background: var(--whatsapp-hover);
   transform: scale(1.05);
 }

 .btn-alquilar i {
   font-size: 1.5rem;
 }

 .error-mensaje {
   padding: 15px;
   border-radius: 8px;
   margin: 20px 0;
   text-align: center;
   background: var(--danger-color);
   color: white;
   font-weight: 600;
   animation: fadeIn 0.3s ease;
 }

 @keyframes fadeIn {
   from {
     opacity: 0;
     transform: translateY(-10px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 .footer {
   background: var(--dark-color);
   color: white;
   padding: 40px 20px;
   border-radius: 15px;
   margin-top: 50px;
   text-align: center;
 }

 .footer p {
   margin-bottom: 20px;
 }

 .contact-info {
   display: flex;
   justify-content: center;
   gap: 30px;
   flex-wrap: wrap;
   margin-bottom: 25px;
 }

 .contact-item {
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .contact-item i {
   font-size: 1.2rem;
   color: var(--primary-color);
 }

 .social-links {
   display: flex;
   justify-content: center;
   gap: 20px;
   margin-top: 20px;
 }

 .social-links a {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 45px;
   height: 45px;
   background: rgba(255, 255, 255, 0.1);
   border-radius: 50%;
   color: white;
   font-size: 1.2rem;
   transition: var(--transition);
 }

 .social-links a:hover {
   background: var(--primary-color);
   transform: translateY(-5px);
 }

 @media (max-width: 768px) {
   .gama-container {
     flex-direction: column;
     align-items: center;
   }

   .gama-card {
     width: 100%;
     max-width: 100%;
   }

   .logo h1 {
     font-size: 2rem;
   }

   .section-title {
     font-size: 1.8rem;
   }
 }