@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Parisienne&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {background:#fff;}
h1 {font-family:'poppins', sans-serif; font-weight:700;font-size:3vw;margin:0;}

h2 {font-family:'poppins', sans-serif; font-weight:700;}

h3 {font-family:'poppins', sans-serif; font-weight:700;}
p {font-family:'poppins', sans-serif;font-weight:400;font-size:1rem;}
.peque {font-size:1rem;text-align:center;}
.grande {font-size:5vw;margin:0;}
.verde {color:#49766A;}
.contenedor-text {text-align:center;}
.contenedor-text h2 {font-size:3vw;margin:0;color:#49766A;}
.contenedor-text p {font-size:2vw!important;}
.linea {height:6px;background:#49766A;width:50%;display:block;margin:auto;margin-top:-20px;}

/* Navegación — estilos movidos al bloque /*Header*/ más abajo */

.text-rotate {
    transform: rotateZ(-90deg);
    transform-origin: center center;
	position:absolute;bottom:0;left:-20
}
.text-rotate h2 {font-size:5vw;margin:0}
/*Header*/

.main-head {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
}

.top-head {
    display: flex;
    justify-content: space-between;
    padding: 6px 40px;
    background: #1F335F;
    color: #fff;
    align-items: center;
}
.top-head p { margin: 0; }
.contact-head { display: flex; column-gap: 50px; }
.contact-head p { color: #fff; }
.text-tophead { display: flex; align-items: center; column-gap: 50px; }
.text-tophead p { color: #fff; }
.text-tophead i { margin: 6px; font-size: 1.1rem; color: #fff; }
.text-tophead a { transition: opacity 0.2s; }
.text-tophead a:hover { opacity: 0.75; }

/* Barra de navegación principal */
.contain-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 72px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    gap: 24px;
}

/* Logo en la barra */
.nav-logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo { height: 50px; width: auto; display: block; transition: opacity 0.2s; }
.nav-logo:hover { opacity: 0.85; }

/* Nav wrapper */
.navegacion {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}

/* Lista de enlaces */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav-links li {
    list-style: none;
    font-family: "poppins", sans-serif;
    position: relative;
}

/* Enlaces principales */
.nav-links li > a {
    color: #222;
    text-decoration: none;
    font-size: clamp(10px, 0.78vw, 13px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 4px 0;
    display: inline-block;
    position: relative;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-links li > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #49766A;
    transition: width 0.25s ease;
}

.nav-links li > a:hover,
.nav-links li.current-menu-item > a,
.nav-links li.current-menu-ancestor > a {
    color: #49766A;
}

.nav-links li > a:hover::after,
.nav-links li.current-menu-item > a::after,
.nav-links li.current-menu-ancestor > a::after {
    width: 100%;
}

/* Submenú */
.nav-links .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    z-index: 1000;
    list-style: none;
    padding: 14px 0 8px;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.13);
    border: 1px solid #eee;
}

.nav-links .sub-menu::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #eee;
}

.nav-links .sub-menu a {
    color: #333;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    padding: 9px 18px;
    display: block;
    transition: background 0.15s, color 0.15s;
    letter-spacing: 0;
    white-space: nowrap;
}

.nav-links .sub-menu a::after { display: none; }
.nav-links .sub-menu li:nth-child(4):not(:has(ul)) a { color: #333; }

.nav-links li:hover > .sub-menu { display: block; }

.sub-menu a:hover { background-color: #f0f7f5; color: #49766A; }

/* Submenú anidado */
.sub-menu .sub-menu {
    top: -8px;
    left: 100%;
    transform: none;
    border-radius: 8px;
}
.sub-menu .sub-menu::before { display: none; }
.sub-menu .sub-menu a { color: #333; }
.sub-menu li:hover > .sub-menu { display: block; }

/* Botón Reservar */
.reserva {
    display: inline-flex;
    align-items: center;
    background: #49766A;
    color: #fff;
    font-family: "poppins", sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.15s ease;
}
.reserva:hover { background: #3b5f56; transform: translateY(-1px); color: #fff; }
.reserva:active { transform: translateY(0); }






.contenedor-text p {
	font-size:5vw;font-family:'poppins', sans-serif; font-weight:700;margin:0;color:#49766A;
}
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}


.blanco {color:#fff;}
.contenedor {display:flex;align-items:center;}

/*Formulario*/

/* Estilos generales del formulario */
form label {
    display: block;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

::placeholder {
    color: #000;
}

form label input,
form label textarea,
form label select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    margin: 0;
}

form label textarea {
    height: 100px; /* Ajusta el tamaño del área de texto */
    resize: vertical;
}

/* Cambia el color del borde y el fondo al enfocar */
form label input:focus,
form label textarea:focus,
form label select:focus {
    border-color: #4CAF50;
    background-color: #f9f9f9;
    outline: none;
}

/* Estilo del botón de envío */
form input[type="submit"] {
    background-color: #49766A;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-top: 0px;
    transition: background-color 0.3s ease;
    width: 100%;
    text-transform: uppercase;
}

form input[type="submit"]:hover {
    background-color: #3b5f56;
}

/* Estilo para la estructura general del formulario */
form {
    max-width: 100%; /* Limita el ancho del formulario */
    margin: 0 auto; /* Centra el formulario en la página */
    padding: 20px;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.parrafo-formulario {color:#000;}

@media (max-width:750px) {

    /* Hamburger */
    .menu-burger {
        font-size: 28px;
        background: none;
        border: none;
        cursor: pointer;
        color: #1F335F;
        line-height: 1;
        padding: 4px;
        flex-shrink: 0;
    }

    #primary-movil { padding: 0; margin: 0; }

    .grande { font-size: 10vw; }
    p { font-size: 4vw !important; text-align: left; }
    .entry-title { font-size: 6vw; }
    .contenedor-text h2 { margin: 20px; }
    .blanco { font-size: 5vw; }
    .contact-head p { display: none; }
    .top-head { display: none; }
    h1 { font-size: 5vw; }

    /* Barra de nav en móvil */
    .contain-nav { padding: 0 16px; height: 60px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
    .nav-logo { height: 38px; }

    /* Botón cerrar menú */
    .close-menu {
        font-size: 30px;
        cursor: pointer;
        position: absolute;
        top: 0;
        right: 15px;
        color: #fff;
        z-index: 1001;
    }

    /* Panel del menú móvil */
    .menu-movil-content {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: #1F335F;
        z-index: 1000;
        overflow-y: auto;
        padding: 50px 0 30px;
    }

    .menu-movil-content.active { display: block; }

    .nav-links-movil {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nav-links-movil li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links-movil li > a {
        text-decoration: none;
        color: #fff;
        display: block;
        text-align: center;
        font-family: 'poppins', sans-serif;
        font-size: 1.1rem;
        font-weight: 600;
        padding: 14px 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: background 0.2s, color 0.2s;
    }

    .nav-links-movil li > a:hover { background: rgba(255,255,255,0.08); color: #a8d5c8; }

    /* Submenús en móvil */
    .menu-movil-content .sub-menu { display: none; }

    .nav-links-movil li:has(> .sub-menu) > a {
        position: relative;
        padding-right: 40px;
    }

    .nav-links-movil li:has(> .sub-menu) > a::after {
        content: '▼';
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        opacity: 0.7;
    }

    .nav-links-movil li.active > a::after { content: '▲'; }

    .nav-links-movil li.active > .sub-menu { display: block; }

    .nav-links-movil .sub-menu {
        width: 100%;
        padding: 0;
        background: rgba(0,0,0,0.25);
    }

    .nav-links-movil .sub-menu li > a {
        font-size: 0.95rem;
        font-weight: 500;
        color: #a8d5c8;
        padding: 10px 20px 10px 36px;
        text-transform: none;
        letter-spacing: 0;
    }

    .title { font-size: 9vw; }
    .btn-interesa { width: 100%; }
}

 .faq-container {
    width: 100%;
    margin: 0 auto;
  }
  .faq-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .faq-item {
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
  }
  .faq-question {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    cursor: pointer;
  }
  .faq-answer {
    display: none;
    margin-top: 10px;
    font-size: 16px;
    color: #555;
  }
  .faq-question .toggle-icon {
    font-weight: bold;
  }
.toggle-icon {font-weight:300!important;font-size:1.5rem}
/*Footer*/
.logos-footer {display:flex;justify-content:center;column-gap:20px;}
.info-1 img{
	width:150px;
	height:165px;
	margin:0;
	padding-bottom:30px;
	
	
}
.mms {
text-align:center;	
	background:#F6F6F6;
	padding-bottom:30px;
}
.franja-footer {background:#F49817;padding:10px;}
.franja-footer a {color:#fff;text-decoration:none;}
.franja-footer p {margin:0;color:#fff;text-align:center;text-transform:uppercase;}
.franja-footer span {background:#1F335F;padding:10px;margin-left:50px}
.contenedor-footer{
	display:flex;
	background:#F6F6F6;
	font-family:"poppins", sans-serif;
	padding-top:2vw;
	margin:0;
}

.contenedor-footer h3{
	color:#000;
	font-size:1.5vw;
	color:#49766A;
	margin-bottom:0;
}
#menu-servicios {
	list-style:none;
	padding:0;
}
#menu-servicios a {
	color:#000;
	font-size:.9vw;
	text-decoration:none;
}
#menu-footer {
	list-style:none;
	padding:0;
}
#menu-footer a {
	color:#000;
	font-size:.9vw;text-decoration:none;
}
.social-icons i{
	color:#000;
	margin:10px;
	font-size:2.5vw;
	text-align:center;
}
.social-icons {
	display:flex;
	justify-content:center;
}
.contenedor-footer p {
	font-size:.9vw;
	color:#000;
	margin-top:0;
}
.info-1 {
	width:40%;
	margin-top:30px;
}
.info-2 {
	width:15%;
}
.info-3 {
	width:15%;
}
.info-4 {
	width:15%;
}
.info-4 a {
	color:#000;
}


/*Flecha scroll*/

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background:#CFC5C3;
    color: black;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 25px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: opacity 0.3s;
	font-weight:700;
}

.scroll-to-top.show {
    display: block;
}

.sinfondo {width:100px;}

@media (max-width:750px) {
    .navegacion { display: none; }
}
@media (min-width: 751px) {
    .menu-burger { display: none; }
    .menu-movil-content { display: none !important; }
}

#linea-button {position:absolute;width:100px;left:100px}
.btn-interesa {background:#49766A;color:#fff;font-family:'poppins', sans-serif; text-transform:uppercase;padding:1vw;}
.fa-arrow-right {margin-left:10px;}
.nav-previous {display:none;}
.nav-next {display:none;}
#linea-banner {width:7vw;position:absolute;}

a {text-decoration:none;}


@media (max-width: 768px) {
    .accordion-content {
        display: none;
        overflow: hidden;
    }

    .accordion-content.show {
        display: block;
    }

    .accordion-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        background: #f1f1f1;
        border: 1px solid #ddd;
        cursor: pointer;
    }
	  .accordion-arrow {
        transition: transform 0.3s ease; /* Animación suave */
    }

    .accordion-header.active .accordion-arrow {
        transform: rotate(180deg); /* Flecha hacia arriba */
    }

    .accordion-header:hover {
        background: #e0e0e0;
    }
	.info-1 {width:100%}
	
	.info-2 {width:100%}
	.info-1 i {font-size:10vw;}
	.info-3 {width:100%}
	.info-4 {width:100%}
	.contenedor-footer h3 {font-size:6vw;}
	.contenedor-footer {display:block;padding:5vw;padding-bottom:50px;}
	.franja-footer span {margin:0;}
	.franja-footer p {line-height:30px;font-size:3.5vw!important;}
	#menu-servicios a {font-size:5vw;line-height:30px;}
	#menu-footer a {font-size:5vw;line-height:30px;}
	.info-4 a {font-size:5vw;line-height:30px;}
	.accordion-content p {font-size:5vw!important;line-height:30px;}
	.sinfondo {display:none;}
	#linea-banner {display:none;}
}
@media (min-width:768px){
	.accordion-arrow {display:none;}
}
ul li {font-family:'poppins', sans-serif;}

.entry-meta {display:none;}
.attachment-post-thumbnail {display:none;}
.cat-links {display:none;}

#respond {
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
	width:90%;
	margin:auto;
}
#respond p {
	margin:0;
}
.comment-reply-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comment-form label {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
}

.comment-form input,
.comment-form textarea {
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #007bff;
}

.comment-form-comment textarea {
    resize: vertical;
    min-height: 120px;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    max-width: 100%;
}

.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #555;
	margin-top:20px!important;
}

.comment-form-cookies-consent input {
    width: auto;
}

.form-submit {
    display: flex;
    justify-content: flex-end;
}

.form-submit input[type="submit"] {

    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.form-submit input[type="submit"]:hover {
    background-color: #0056b3;
}

.comment-notes {
    font-size: 0.9rem;
    color: #555;
}

.required-field-message {
    font-weight: 600;
    color: #e74c3c;
}

.comment-form-url input {
    margin-bottom: 35px;
}

#cancel-comment-reply-link {
    color: #007bff;
    font-size: 0.9rem;
    text-decoration: none;
}

#cancel-comment-reply-link:hover {
    text-decoration: underline;
}
.comment-form-url {
    display: none;
}

@media (max-width:700px){
	li {
		font-size:1rem;
		text-align:left;
		
	}
	ul {
		padding:10px;
	}
	p {
		font-size:1rem!important;
	}
	h2 {
		font-size:1.5rem;
	}
	.contenedor-text h2 {
		font-size:2rem;
		margin:10px;
	}
	.contenedor-text p {
		font-size:1.2rem!important;
		text-align:center;
	}
	h3 {
		text-align:left;
	}
}
@media (min-width:700px){
	li {
		font-size:1rem;
		
	}
}
.bgsc-back-to-blog {
	display:none;
}
li {
	font-family:'poppins', sans-serif;
}
.sombra {
	text-shadow:1px 1px 1px #000;
}