body,h1,h2,h3,h4,h5,h6 {font-family: "Lato", sans-serif;}
body, html {
  height: 100%;
  color: #222;
  line-height: 1.8;
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/files/fonts/webfonts/fa-brands-400.woff2") format("woff2"),
       url("/files/fonts/webfonts/fa-brands-400.ttf") format("truetype");
}

/* Override Font Awesome solid */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/files/fonts/webfonts/fa-solid-900.woff2") format("woff2"),
       url("/files/fonts/webfonts/fa-solid-900.ttf") format("truetype");
}

/* Create a Parallax Effect */
.bgimg-1, .bgimg-2, .bgimg-3 {
  background-attachment: fixed;
  background-position: bottom; 
  background-repeat: no-repeat;
  background-size: cover;
}

/* First image (Logo. Full height) */
.bgimg-1 {
  background-image: url('https://pluto-static.ursiluz.com/files/background.webp');
  /* 
	background-color: #E6FDF7;
	*/
	min-height: 185px;
}

.menu-movil {
background-color: #163248;
color: #FFF;
}

.w3-wide {letter-spacing: 10px;}
.w3-hover-opacity {cursor: pointer;}
.w3-hover-white:hover{color:#163248!important;background-color:#fff!important}

/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1600px) {
  .bgimg-1, .bgimg-2, .bgimg-3 {
    background-attachment: scroll;
    min-height: 185px;	
  }
}

.w3-wide {letter-spacing: 10px;}
.w3-hover-opacity {cursor: pointer;}


	
        .registro-btn {
            display: inline-block;
            padding: 12px 24px;
            font-size: 16px;
            font-weight: bold;
            color: white;
            background-color: #163248; /* Azul Ursiluz */
            border: none;
            border-radius: 8px;
            text-decoration: none;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .registro-btn:hover {
            background-color: #0056b3; /* Azul más oscuro */
            transform: translateY(-2px);
        }

        .registro-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
	
.reviews-container {
    display: flex;
    flex-wrap: wrap; /* Permite que los elementos pasen a la siguiente línea si no caben */
    justify-content: space-around; /* Distribuye el espacio entre los elementos */
    gap: 20px; /* Espaciado entre reseñas */
}

.review-box {
    background-color: #f9f9f9; /* Fondo claro */
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 30%; /* Ancho para pantallas grandes */
    min-width: 250px; /* Para evitar que sean demasiado pequeñas */
}

/* Media query para móviles */
@media screen and (max-width: 768px) {
    .reviews-container {
        flex-direction: column; /* Apilar los elementos en pantallas pequeñas */
        align-items: center; /* Centrar las cajas en la columna */
    }

    .review-box {
        width: 90%; /* Ocupa casi todo el ancho disponible */
    }
}
	
        .stars {
            color: gold;
            margin-bottom: 15px;
        }
        .reviewer-name {
            font-weight: bold;
            margin-bottom: 10px;
        }
        .review-text {
            font-style: italic;
        }
	
  .section-title {
    font-size: 24px;
    font-weight: bold;
    color: #163248;
  }
  .section-subtitle {
    font-size: 18px;
    color: #555;
  }
  .section-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
  }
  .button-primary, .button-secondary {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
	margin-bottom: 10px;
  }
  .button-primary { background-color: #163248; color: #fff; padding: 12px 24px; text-decoration: none; border-radius: 25px; font-weight:bold; display: inline-block; }
  .button-primary:hover { opacity: 0.9; }
  .button-secondary {
    background-color: #28A745;
    color: white;
  }
  .button-secondary:hover {
    background-color: #218838;
  }
  .button-telegram {
    display: block;
    width: 80%;
    max-width: 200px;
    margin: 10px auto;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #163248;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
  }
  .button-telegram i {
    margin-right: 8px;
  }
  .button-telegram:hover {
    background-color: #218838;
  }
  .link-text {
    color: #163248;
    text-decoration: none;
  }
  .link-text:hover {
    text-decoration: underline;
  }
  @media screen and (max-width: 768px) {
    .button-telegram {
      width: 100%;
    }
  }

/* Estilos generales */
.form-container {
    max-width: 350px;
    margin: auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mensajes de error */
.error-message {
    text-align: center;
    color: #FF0004;
    font-size: 14px;
    margin-bottom: 10px;
}

.success-message {
    text-align: center;
    color: green;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Inputs */
.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.password-toggle {
    position: absolute;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
}

/* Botón */
.submit-btn {
    width: 100%;
    padding: 10px;
    background: #163248;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #0056b3;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.checkbox-group input {
    margin-right: 5px;
}


        .tarifa-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #f9f9f9;
            border-radius: 12px;
            padding: 20px;
            width: 100%;
            max-width: 850px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .logo {
            width: 180px;
			max-height: 140px;
        }
        .tarifa-info {
            flex: wrap;
            padding: 0 20px;
        }
        .tarifa-info h2 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        .precios {
            font-size: 14px;
            line-height: 1.6;
        }
        .buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .buttons button {
            padding: 10px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
        }
    .btn-info {
        background: #163248;
        color: white;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        transition: background 0.3s;
        text-decoration: none;
        display: inline-block;
        border-radius: 5px;
    }
    .btn-info:hover {
        background: #0056b3;
    }

    .btn-contratar {
        background: #28a745;
        color: white;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        transition: background 0.3s;
        text-decoration: none;
        display: inline-block;
        border-radius: 5px;
    }
    .btn-contratar:hover {
        background: #1e7e34;
    }
		
	        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown button {
            background: #4CAF50;
            color: white;
            padding: 10px 20px;
            font-size: 16px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .dropdown button:hover {
            background: #45a049;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #ffffff;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
            border-radius: 5px;
            min-width: 160px;
            z-index: 1;
        }

        .dropdown-content a {
            color: black;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            border-bottom: 1px solid #f0f0f0;
            transition: background-color 0.3s;
        }

        .dropdown-content a:hover {
            background-color: #f1f1f1;
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }
	  .section-title {
    font-size: 24px;
    font-weight: bold;
    color: #163248;
  }
  .section-subtitle {
    font-size: 18px;
    color: #555;
  }
  .section-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
  }
	
  @media (max-width: 600px) {
    .footer-mobile-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 10px;
    }
    .footer-mobile-icon i {
      margin-right: 8px;
    }
    .footer-socials a {
      margin: 0 12px !important;
    }
	
  }
  
  
  .google-play-img {
    transition: opacity 0.3s ease;
  }

  .google-play-img:hover {
    opacity: 0.9;
  }
