@charset "utf-8";
/* CSS Document */

body {
	font-family: "Roboto";
	padding: 0px;
	height: auto;
	width: 100%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
#header_top {
	padding: 0px;
    height: auto;
    width: 100%;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    max-height: 150px;
}
#top {
	padding: 0px;
	height: auto;
	width: 100%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	max-width:1300px;
	max-height:150px;
}
#logo {
	margin: 0px;
	padding: 0px;
	float: left;
	heigt: auto;
	width:100%;
	max-width: 220px;
}
#top_cont {
	margin: 0px;
	padding: 0px;
	float: right;
	height: auto;
	width: 100%;
	max-width:1070px;
}
#top_contact {
	margin: 0px;
	padding: 0px;
	height: 50px;
	width: 100%;
}
#contact {
	margin: 0px;
	padding: 0px;
	float: left;
	height: 50px;
	width: 100%;
	max-width:1050px;
	display: flex;
}


#social {
	margin: 0px;
	padding: 0px;
	float: right;
	height: 50px;
	width: 100%;
	max-width: 250px;
}
#top_menu {
	padding: 0px;
	height: 50px;
	width: 100%;
	margin-top: 4%;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#mod_slideshow {
	padding: 0px;
	height: auto;
	width: 100%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
#mod_about{
	padding: 0px;
	height: auto;
	width: 100%;
	margin-top: 4%;
	margin-right: auto;
	margin-bottom: 4%;
	margin-left: auto;
}
#about_cont{
	padding: 0px;
	height: auto;
	width: 100%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	max-width:1300px;
}
#mod_featured{
	padding: 0px;
	height: auto;
	width: 100%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	background-image: url(/images/galapagost/backgroundf.png);
	background-repeat: no-repeat;
	background-color: #031f41;
}
#featured_cont{
	padding: 0px;
	height: auto;
	width: 100%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	max-width:1300px;
}
#mod_content{
	padding: 0px;
	height: auto;
	width: 100%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
#content_cont{
	padding: 0px;
	height: auto;
	width: 100%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	max-width:1300px;
}
#mod_scheduled{
	height: auto;
	width: 100%;
	margin-top: 5%;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	background-color: #b8d4eb;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 3%;
	padding-left: 0px;
}
#scheduled_cont{
	padding: 0px;
	height: auto;
	width: 100%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	max-width:1300px;
	text-align: center;
}
#mod_footer{
	padding: 0px;
	height: auto;
	width: 100%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
#footer_cont{
	padding: 0px;
	height: auto;
	width: 100%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	max-width:1300px;
}

/* Contenedor principal del Formulario (Forma y Sombra) */
.galapagos-login-box {
    background-color: #ffffff; /* Fondo blanco limpio */
    border-radius: 12px;       /* Bordes redondeados para una forma suave */
    padding: 30px;
    max-width: 400px;          /* Controla el ancho del formulario */
    margin: 0 auto;            /* Lo centra en la pantalla */
    box-shadow: 0 8px 24px rgba(11, 60, 93, 0.08); /* Sombra suave usando un tono azul marino */
    border: 1px solid #e1e8ed;
}

/* Título del Formulario (Color del texto) */
.galapagos-login-box h3 {
    color: #0b3c5d;            /* Azul marino profundo */
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

/* Etiquetas (Labels) */
.galapagos-login-box .form-label {
    color: #328cc1;            /* Azul océano para los títulos de los campos */
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}

/* Cajas de texto / Inputs (Colores al escribir y al hacer clic) */
.galapagos-login-box .form-control {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #dcdde1;
    border-radius: 6px;        /* Forma semi-redondeada para los inputs */
    background-color: #f8f9fa;
    color: #1d2731;
    font-size: 15px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Efecto cuando el usuario hace clic para escribir (Focus) */
.galapagos-login-box .form-control:focus {
    border-color: #328cc1;     /* El borde cambia al azul océano */
    background-color: #ffffff; /* El fondo se vuelve puramente blanco */
    outline: none;
    box-shadow: 0 0 0 3px rgba(50, 140, 193, 0.15); /* Brillo de seguridad */
}

/* Botón de Envío (Forma rectangular/ovalada y colores de acción) */
.galapagos-login-box .btn-primary {
    background-color: #d9b310; /* Color dorado/arena de Galápagos */
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;        /* Mismo radio de curvatura para mantener consistencia */
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

/* Efecto cuando pasas el mouse por encima del botón (Hover) */
.galapagos-login-box .btn-primary:hover {
    background-color: #bfa00e; /* Un dorado un poco más oscuro */
}

/* Efecto cuando se hace clic en el botón */
.galapagos-login-box .btn-primary:active {
    transform: scale(0.98);    /* Efecto visual de hundimiento */
}
.logo {
    width: 100%;
    height: auto;
    max-width: 220px;
}
.phone_top {
    font-size: 10pt;
    padding-top: 4%;
}
.gptranslate_wrapper {
    margin-left: 10%;
	margin-right: 10%;
	width:25%;
}
.smedia {
    padding-top: 5%;
    font-size: 14pt;
    color: #08808a;
    width: 250px;
}
.icotrip {
    width: 100%;
    max-width: 26px;
    height: auto;
}
.sico {
    margin-right: 10%;
}
h3.txt_slider {
    text-shadow: 2px -1px 5px rgba(0, 0, 0, 1.5) !important;
}
h3.title_slider {
    text-shadow: 2px -1px 5px rgba(0, 0, 0, 1.5) !important;
}
.n2-ss-slide[aria-hidden="true"] * {
    pointer-events: none !important;
    visibility: hidden !important;
}

/* Opcional: Esto asegura que no sean focuseables mediante tabulación */
.n2-ss-slide[aria-hidden="true"] a, 
.n2-ss-slide[aria-hidden="true"] button {
    tabindex: -1 !important;
}
.title_spots {
    font-size: 25pt;
    font-weight: bold;
    color: #224e75;
}
.k3 {
    font-size: 40pt;
    color: #a3e900;
}

.stats-container {
  display: flex;
  gap: 30px;
  font-family: sans-serif; /* Ajusta a tu tipografía */
}

.stat-item {
  display: flex;
  align-items: center; /* Alinea verticalmente número y texto */
  gap: 10px;
}

.number {
  color: #c4d600; /* Color verde lima de la imagen */
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
}

.label {
  color: #2c3e50; /* Color oscuro del texto */
  font-size: 0.9rem;
  line-height: 1.1; /* Controla el espacio entre las dos líneas */
  font-weight: 600;
}
.txt_spots {
    font-size: 14pt;
    text-align: justify;
}
.tour-content {
    display: inline-block;
    margin-top: 2%;
}
.tour-hero h2 {
    font-size: 26pt;
    font-family: Sour Gummy;
    color: #ff833b;
}
.destination-titles i {
    color: #376ca1 !important;
}
.destination-titles .duration i {
    color: #376ca1 !important;
}
.tour-info h3 {
   font-family: Sour Gummy;
   color: #ff833b !important;
   border-bottom: 2px solid #ff833b !important;
}
.btn-primary {
    background-color: #376ca1 !important;
}
.btn-primary:hover{
	background-color: #FF9900 !important;
}
.textos{
	font-family: "Roboto";
}
.subitineario{
	color: #376ca1;
	font-weight: bold;	
	
}
.subtitle{
	font-family: "Permanent Marker", cursive;
	color: #376ca1;
    text-decoration: underline;
	font-size: 17pt;
}
.cancel_subt{
	color: #376ca1;
	font-weight: bold;	
}
.tour-inclusions, .tour-exclusions {
    padding-left: 3%;
}
.card-title a {
    font-size: 14pt;
    color: #376ca1 !important;
    font-family: Sour Gummy;
}
.ftitle {
	font-family: "Permanent Marker", cursive;
	color: #ff833b;
	font-size:24pt;	
}
.importann {
    color: #dc3545;
    font-weight: 900;
}
.map_txt {
    font-size: 11pt;
}
.art_subtitle {
	font-size: 40pt;
    color: #376ca1 !important;
    font-family: Sour Gummy;
}
.row-cols-md-3>* {
        width: 24.3333% !important;
    }
a.btn.btn-outline-primary {
    display: none;
}
.bb {
    width: 100%;
    height: 60px;
}
@media screen and (max-width: 480px) {
#contact {
    margin: 0px;
    padding: 0px;
    float: left;
    height: 50px;
    width: 100%;
    max-width: 480px;
    display: table;
    text-align: center;
}
#top_cont {
	padding: 0px;
	height: auto;
	width: 100%;
	max-width: 480px;
	margin-top: 5%;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#logo {
    margin: 0px;
    padding: 0px;
    heigt: auto;
    width: 100%;
    max-width: 480px;
    text-align: center;
}
#top {
    padding: 0px;
    height: auto;
    width: 100%;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    max-width: 480px;
    max-height: 150px;
}
.gptranslate_wrapper {
    margin-left: 30%;
    margin-right: 10%;
    width: 37%;
}
.smedia {
    padding-top: 5%;
    font-size: 14pt;
    color: #08808a;
    width: 250px;
    margin-top: 0%;
    text-align: center;
    width: 480px;
}
#top_menu {
    padding: 0px;
    height: 50px;
    width: 100%;
    margin-top: -18%;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}
div#maximenuck114 .maximenumobiletogglericonck {
    font-family: verdana;
    background: #f0f0f0;
    padding: 5px 10px 30px 6px;
    height: 30px;
    position: relative;
    color: #333;
}
#featured_cont {
    padding: 0px;
    height: auto;
    width: 100%;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    max-width: 480px;
}
#about_cont {
    padding: 0px;
    height: auto;
    width: 100%;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    max-width: 480px;
}
#scheduled_cont {
    padding: 0px;
    height: auto;
    width: 100%;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    max-width: 480px;
    text-align: center;
}
.ftitle {
    font-family: "Permanent Marker", cursive;
    color: #ff833b;
    font-size: 16pt;
}
.row-cols-md-3>* {
    width: 90.3333% !important;
    margin-left: 4%;
}
}