/* Reset CSS */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}


html {
  scroll-behavior: smooth;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  -webkit-tap-highlight-color: transparent
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  width: 100%;
}

::selection {
  background-color: var(--color-principal-variente);
  color: var(--color-texto-primario);
}

/* Global class */

:root {
  --color-principal: #6b5b40;
  --color-principal-variente: #e8c890;
  --color-secundario: #133a52;
  --color-secundario-variente: #8dafc2;
  --color-texto-primario: #241e12;
  --color-texto-contraste-claro: #f7efe4;
  --color-alternativo: #bda175;
  --color-recursos-medio: #e9c991;
  --color-recursos-alto: #bda275;
  --color-destacado: #d9a5d2;
  --color-destacado-hover: #c085b9;
  --color-tempo: #016579;
}

body {
  font-family: "Montserrat";
  line-height: 1.6;
  font-size: 14px;
  background-color: #ffffff;
  color: #333;
}

.scroll {
  display: block;
  position: relative;
  top: -80px;
}

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

.fondo-texto-primario {
  background-color: var(--color-texto-primario);
}

.fondo-texto-secundario {
  background-color: var(--color-texto-contraste-claro);
}

.fondo-secundario-variente {
  background-color: var(--color-secundario-variente);
}

.fondo-principal {
  background-color: var(--color-principal);
}

.fondo-secundario {
  background-color: var(--color-secundario);
}

.fondo-principal-variante {
  background-color: var(--color-principal-variente);
}

.color-texto-primario {
  color: var(--color-texto-primario);
}

.color-texto-secundario {
  color: var(--color-texto-contraste-claro);
}

.fuente-titular {
  letter-spacing: -2px;
  line-height: 62px;
  font-size: 41px;
  font-weight: bold;
  text-transform: capitalize;
}

.fuente-subportada {
  width: 600px;
  font-size: 33px;
  font-weight: normal;
  margin-bottom: 30px;
}

.fuente-texto {
  font-size: 20px;
  line-height: 27px;
}

.fuente-ventajas {
  font-size: 20px;
  line-height: 27px;
  max-width: 630px;
}


.fuente-subtitulo {
  font-size: 24px;
  font-weight: bold;
  line-height: 33px;
}

.fuente-titulo-seccion {
  font-size: 40px;
  font-weight: bold;
}

.fuente-entradilla {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: capitalize;
}

.btn-cta {
  background-color: var(--color-destacado);
  padding: 0.9rem 5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  line-height: 1;
  color: var(--color-texto-primario);
}

.btn-cta:hover {
  background-color: var(--color-principal-variente);
}


/* ----------- HEADER ------------- */

header {
  display: flex;
  background: #016579;
  padding: 20px 30px;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 100;
  color: var(--color-texto-contraste-claro);
}

header #contenedor_logo {
  width: 555px;
}

header #contenedor_menu {
  width: calc(100%);
  display: flex;
  align-content: center;
  justify-content: space-evenly;

}

header #contenedor_menu ul {
  width: 900px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: row;
  align-content: center;
  justify-content: space-around;


}

header #contenedor_menu ul li a {
  text-decoration: underline;
  padding: 4px 13px;
}

header #contenedor_menu ul li a:hover {
  background: var(--color-texto-primario);
  border: 1px solid var(--color-texto-contraste-claro);
  border-radius: 20px;
  padding: 4px 12px;
  text-decoration: none;

}

header #contenedor_menu .menu_smartphone {
  width: 20px;
  height: 20px;
  display: none;
}

h2 {
  margin-bottom: 15px;
  padding: 0px;
  color: var(--color-texto-primario);
}



/* ----------- FIN HEADER ------------- */

/* Portada */
.portada {
  background-color: black;
  background-image: linear-gradient(to right, #016579, rgba(54, 58, 59, 0.1)), url('../assets/img/free-macbook-pro-at-the-pool-mockup.webp');

  background-size: cover;
  background-position: center;
  height: 760px;
  display: flex;
  align-items: center;
  padding-left: 36px;
  color: white;
  margin-top: 85px;
}

.portada h1 {
  width: 600px;
  margin-bottom: 20px;
}

.why {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #231D12;
  margin: 50px auto;
  width: 100%;
}

.why-content {
  max-width: 1200px;
  margin: auto;
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 40px;
}

.mySwiper.tablet {
  display: none;
}

#contenedor_menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

#contenedor_menu ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: color 0.3s;
}

/*------SECTION WHY IRLAND------*/
/* Contenedor de las cards */

/* SLIDER */

.swiper-slide {
  display: flex;
  row-gap: 10px;
}

.contenedor-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  justify-content: center;
  margin: auto;
  width: 100%;
}

/* Estilos para cada card */
.card {
  display: flex;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 245px;
  min-height: 295px;
  transition: transform 0.3s, box-shadow 0.3s;
  flex-direction: column;
  justify-content: space-between;
  max-width: 400px;
  margin: 0 auto;
}


.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card-imagen {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


/* Estilos para el título de la card */

.line-card {
  height: 3px;
  width: 100%;
}

/* Línea separadora */
.linea-separadora {
  border-bottom: 4px solid #937E5A;
  margin: 10px 0;
}

/* Estilos para la descripción de la card */
.card-descripcion {
  margin-bottom: 20px;
}

/* Footer de la card (ícono y botón) */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

/* Estilos para el ícono */
.icono {
  font-size: 24px;
  color: #133951;
}

/* Estilos para el botón */
.menu_smartphone {
  padding: 10px 20px;
  cursor: pointer;
}


.flecha {
  width: 35px;
  height: 35px;
  background-color: #d9d9d9;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.flecha:hover {
  background-color: var(--color-destacado);
  scale: 1.1;
}

.Crecimineto {
  width: 35px;
  height: 35px;
}

.estrategia {
  width: 35px;
  height: 35px;
}

.INNIVATION {
  width: 35px;
  height: 35px;
}

.COMPLIANCE {
  width: 35px;
  height: 35px;
}

/* ESTILOS DE PARRAFOS*/
.card-categoria {
  margin-top: 0px;
}



/* estilos de galería*/
.card-list .card-item {
  list-style: none;
}

.card-list .card-item .card-link {
  width: 400px;
  display: block;
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
}

.card-list .card-link .badge {
  color: #007bff;
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 16px 0 18px;
  background: #555;
  border-radius: 50px;
}

.card-list .card-link .card-button {
  height: 35px;
  width: 35px;
  color: #231D12;
  border-radius: 50%;
  margin: 30px 0 5px;
  background: none;
  cursor: pointer;
  border: 2px solid #6b5b40;
}


.autoridad {
  background-color: #0f3754;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 40px;
  margin: 0;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 100px;
}

.autoridad-container {
  width: 15%;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.autoridad-container img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 10px;
  filter: drop-shadow(0 8px 10px rgba(255, 255, 255, 0.2));
}

.autoridad-container p {
  font-weight: bold;
  margin: 0;
}

/* choose tempo*/

.content-choose {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  margin: auto;
  gap: 15px;
  margin-top: 130px;
  margin-bottom: 100px;
  padding: 40px;
}

.choose-tempo {
  letter-spacing: -2px;
  line-height: 62px;
  font-size: 41px;
  font-weight: bold;
  text-transform: capitalize;
  width: 600px;

}

.img-choose {
  /* background: #016579; */
  width: 1200px;
  border-radius: 15px;
}

.img-choose-2 {
  background: url('../assets/img/despacho-feliz.webp') center center / cover no-repeat;
  width: 1200px;
  height: 600px;
  /* ajusta según el tamaño que quieras */
  border-radius: 15px;
  margin: 0 auto;
  display: block;
}

.choose-content {
  display: flex;
  flex-direction: row-reverse;
  max-width: 1200px;
  margin: auto;
  gap: 15px;
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 40px;
}

.content {}

.tempo-content {
  letter-spacing: -2px;
  line-height: 62px;
  font-size: 41px;
  font-weight: bold;
  text-transform: capitalize;
  width: 600px;
}

/* reseñaaaas */
.resenas {
  display: flex;
  flex-direction: column;
  align-items: center;
}



body {
  font-family: "Montserrat";
}

.comment-text {
  color: #faf5f5;
  margin-bottom: 16px;
}

.author {
  font-weight: bold;
  color: #faf5f5;
}

.resenas {
  max-width: 600px;
  /* Limita el ancho de los textos */
  width: 100%;
  /* Permite que se reduzcan si es necesario */
  flex-shrink: 1;
}


.container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: auto;
}

.column-left,
.column-center,
.column-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}


.review-card {
  background-color: #7D664A;
  color: white;
  padding: 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-score {
  font-size: 48px;
  font-weight: bold;
}

.google-review-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #A8C3D8;
  padding: 16px;
  border-radius: 20px;
  gap: 12px;
  width: 100%;
  height: auto;

}

.google-logo {
  width: 40px;
  height: 40px;
}

.stats-card {
  background-color: #D4B574;
  padding: 16px;
  border-radius: 12px;
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.stat-number {
  font-size: 24px;
  font-weight: bold;
}

.office-image {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.testimonio {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 20px;
  padding: 40px;
  margin-bottom: 20px;
  margin-top: 80px;
}

.testimonios {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 20px;
  padding: 40px;
  margin-bottom: 20px;
  margin-top: 80px;
}

/* Cada columna */
.testimonio-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background-color: #fff;
  border-radius: 20px;
  width: 100%;
  min-height: 400px;
}

.testimonio-content.primero {
  flex: 2;
}

.testimonio-title {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  row-gap: 10px;
}

.google-review-card {
  background-color: #A8C3D8;
  padding: 1.5rem;
  /* Equivale a p-6 en Tailwind */
  border-radius: 20px;
  /* Equivale a rounded-xl */
  display: flex;
  align-items: center;
  gap: 1rem;
  /* Equivale a gap-4 */
  align-items: flex-start;
  flex-direction: column;
}

/* Tarjeta en la parte inferior */
.testimonio-card {
  background-color: var(--color-principal);
  border-radius: 20px;
  color: white;
  padding: 20px;
}

.caja {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}

.resena-google,
.resena-testimonio {
  flex: 1 1 300px;
  /* crece, se encoge, mínimo 300px */
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
}

.font-semibold {
  font-weight: bold;
  font-size: 17px;
  margin-top: 15px;
}

span.text-sm {
  color: white;
}

.img-office {
  width: 100%;
  height: 390px;
  border-radius: 15px;
  background-color: #dfe6e9;
  background-image: url(https://www.strongabogados.com/assets/img/img-office.webp);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.img-office2 {
  width: 100%;
  height: 390px;
  border-radius: 15px;
  background-color: #dfe6e9;
  background-image: url(https://www.strongabogados.com/assets/img/oficina_strong_abogados_3.webp);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.resena-testimonio {
  background: var(--color-principal-variente);
  display: flex;
  justify-content: center;
  height: 168px;
  align-items: center;
  padding: 20px 10px;
  gap: 15px;
  flex-direction: row;
  border-radius: 20px;
  align-content: center;
  flex-wrap: nowrap;
}

.resena-testimonio .text-sm {
  font-size: 10px;
  font-weight: bold;
}

.resena-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 12px;
  justify-content: space-between;
}

.resena-box svg {
  height: 56px;
}

.resena-box div {
  display: flex;
  height: 89px;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: nowrap;
}



/*irland*/
.irland {
  display: flex;
  justify-content: flex-start;
  margin: 20px auto;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  padding: 40px;
  flex-wrap: nowrap;

}

.irland-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  background-color: #fff;
  border-radius: 20px;
  width: 100%;
}

.irland-content.primero {
  flex: 2;
}

.irland .fuente-texto {
  margin-bottom: 26px;
}

.icon-text {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
}

.icon-text svg {
  flex-shrink: 0;
  /* Hace que el svg no se reduzca de tamaño */
}

.icon-text p {
  font-size: 14px;
  /* Equivale a text-sm */
  line-height: 1.4;
}

.irland-img {
  width: 100%;
  height: 200px;
  background-image: url(https://www.strongabogados.com/assets/img/img-office2.webp);
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.irland-img-2 {
  max-width: 400px;
  height: 200px;
  margin: 0 auto;
  border-radius: 10px;
  background-image: url(https://www.strongabogados.com/assets/img/img-office.webp);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 16px;
}

.irland-img-3 {
  width: 100%;
  height: 200px;
  background-image: url(https://www.strongabogados.com/assets/img/non-resident-company.webp);
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.irland-img-4 {
  width: 100%;
  height: 390px;
  border-radius: 10px;
  background-image: url(https://www.strongabogados.com/assets/img/oficina_strong_abogados_4_about.webp);
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/*conoce a nuestro equipo*/

.contenedor {
  position: relative;
  height: 89px;
  margin-top: -1px;
  overflow: hidden;
}

.capa {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.capa1 {
  background-color: var(--color-recursos-medio);
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
}


.capa2 {
  background-color: var(--color-recursos-alto);
  clip-path: polygon(0% 100%, 100% 50%, 100% 100%);
}

.capa3 {
  background-color: var(--color-recursos-alto);

  clip-path: polygon(0 0, 0 50%, 100% 0);
}

.capa4 {
  background-color: var(--color-recursos-medio);
  clip-path: polygon(0 0, 0 100%, 100% 0);
}

.equipo {
  background: #6B5B40;
}

.contenedor_equipo {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 20px;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
  flex-direction: column;
}

.titulo-equipo {
  color: #fff8e1;
  text-align: left;
}

.cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  flex-direction: row;
}

.card-equipo {
  display: block;
  width: 100%;
  max-width: 200px;
  border-radius: 20px;
  background: #133a52;
  box-sizing: border-box;
}

.title-card-equipo {
  color: var(--color-principal-variente);
  text-align: center;
  padding: 2px 12px;
}

.card-descripcion-rrhh {
  color: #ffffff;
  line-height: 1.5;
  text-align: center;
  padding: 0px 12px;
}

.img-equipo {
  display: flex;
  /* Centramos el contenido */
  justify-content: center;
  align-items: center;
  max-width: 100%;
  height: auto;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.equipo-img-4 {
  width: 100%;
  /* Para que ocupe el ancho disponible */
  height: 300px;
  /* Altura fija opcional */
  border-radius: 20px 20px 0 0;
  background-image: url(https://www.strongabogados.com/assets/img/accounting.webp);
  background-size: cover;
  /* No se deforma */
  background-position: center;
  /* Siempre centrada */
}

/*Footer*/
.footer {
  background-color: #19150c;
  ;
  color: white;
  font-family: sans-serif;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 25px;
}

.footer-section {
  flex: 1 1 200px;
  margin-bottom: 30px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.newsletter-form {
  margin-top: 20px;
}

.newsletter-form label {
  display: flex;
  align-items: center;
  border-bottom: 2px solid white;
  padding-bottom: 5px;
}

.email-icon {
  margin-right: 8px;
}

.newsletter-input {
  background: transparent;
  border: none;
  color: white;
  outline: none;
  width: 100%;
}

.footer-section h4 {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
}

.footer-section p {
  margin: 6px 0;
}

.social-icons a {
  margin-right: 10px;
  font-size: 18px;
  color: white;
  text-decoration: none;
}

.footer-line {
  height: 1px;
  width: 100%;
  background: #F8F0E4;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
}

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

.footer-links a {
  color: white;
  text-decoration: none;
}

/*formuariooo*/

.contacto {
  padding: 80px 0px;
  background: #1A7587;
}

.contacto-fondo {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-principal-variente);
}

/* Fondo degradado */
.contacto-fondo-degradado {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-135deg, #8eccd8, #016579);
  z-index: 1;
}

/* Imagen PNG con transparencia */
.modelo-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 80%;
  object-fit: cover;
  display: block;
  z-index: 3;
}

/* Logo por encima */
.logo-superpuesto {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  z-index: 2;
}

.container-form {
  background: #bca062;
  display: flex;
  max-width: 900px;
  margin: 50px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 8px 10px 15px rgba(0, 0, 0, 0.2);
}

.left-panel {
  background-color: #bca062;
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.profile-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.logo {
  text-align: center;
  color: white;
}

.logo p {
  margin: 0;
  font-size: 14px;
  letter-spacing: 1px;
}

.form-panel {
  background-color: #fdf8f0;
  flex: 1;
  padding: 40px;
}

.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

input[type="text"],
input[type="email"] {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background-color: #f8f0df;
}

.full-width {
  width: 100%;
  margin-bottom: 10px;
}

.checkbox-container {
  display: block;
  font-size: 13px;
  margin: 10px 0;
}

.checkbox-container input {
  margin-right: 5px;
}

button[type="submit"] {
  background-color: var(--color-secundario);
  color: white;
  width: 100%;
  margin-top: 10px;
}

button[type="submit"]:hover {
  color: var(--color-texto-primario);
}

/*formulario cerca del footer*/
.form-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #b99e70;
  padding: 40px;
}



form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.form-row {
  max-width: 900px;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

input[type="text"],
input[type="email"] {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background-color: #f8f0df;
}

.checkbox-container {
  display: flex;
  align-items: center;
  font-size: 12px;
  margin-bottom: 20px;
}

.checkbox-container input {
  margin-right: 10px;
}

.checkbox-container a {
  color: #000;
  text-decoration: underline;
}

button[type="submitf2"] {
  background-color: #123049;
  color: white;
  padding: 12px 0;
  width: 280px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}

.redes-sociales {
  text-align: center;
  color: #231d12;
  font-family: 'Montserrat', sans-serif;
  margin: 40px 0;
}

.redes-sociales h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.redes-sociales p {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: bold;
}

.iconos-redes {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.iconos-redes a svg {
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 50%;
  transition: transform 0.2s, background-color 0.2s;
}

.iconos-redes a svg:hover {
  transform: scale(1.1);
}

.fuente-ventajas a {
  color: #241e12;       /* Color del enlace */
  text-decoration: underline; /* Subrayado */
  font-weight: bold;    /* Asegura que destaque */
}

.fuente-ventajas a:hover {
  color: #6b5b40;       /* Color al pasar el mouse */
  text-decoration: none; /* Opcional: quita el subrayado en hover */
}


/* Contenedor general */
.servicios-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 4rem 2rem;
  margin: 0 auto;
  align-items: center;
}

.servicios-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  align-items: flex-start;

}

.servicios-info p {
  margin-bottom: 2rem;
  line-height: 1.6;
}


/* Columna derecha */
.servicios-lista {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.servicio {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.servicio img {
  width: 40px;
  margin-bottom: 0.8rem;
}

.servicio h3 {
  margin-bottom: 0.5rem;
}

.servicio p {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.servicio a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3C2A21;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.3s ease;
  justify-content: space-between;
}

.servicio a:hover strong {
  color: var(--color-destacado-hover);
}

.servicio a:hover svg {
  background-color: var(--color-destacado);
  scale: 1.1;
}


/*blog*/
.news-section {
  text-align: center;
  padding: 60px 20px;
  margin: 0 auto;
  color: #1f1c16;
}

.news-container {
  display: flex;
  justify-content: space-between;
  /*flex-wrap: wrap;*/
  gap: 30px;
  margin-top: 60px;
}

.news-item {
  flex: 1 1 calc(25% - 30px);
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-item img {
  width: 100%;
  max-height: 185px;
  border-radius: 12px;
  object-fit: cover;
}

.news-item h3 {
  font-size: 1rem;
  font-weight: 500;
  margin: 15px 0;
  text-align: center;
}

.testimonios {
  display: none;
}

.hero-banner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #5CA7B6;
  /* gris del fondo */
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  color: #fff;
  overflow: hidden;
  padding-bottom: 40px;
}

.hero-content {
  max-width: 45%;
}

.hero-content h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content p {
  font-size: 1.1rem;
  color: #e5e5e5;
  margin-bottom: 30px;
}

.cta {
  background-color: #1a1a1a;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta:hover {
  background-color: #333;
}

.hero-image img {
  width: 480px;
  height: auto;
}

/*PREGUNTAS MÁS FRECUENTES*/

.faq-section {
  background: #006579;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  padding-left: 40px;
}

.izquierda-faq-section {
  width: 40%;
}

.derecha-faq-section {
  width: 60%;
}

.faq-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.faq-description {
  max-width: 500px;
  font-size: 15px;
  margin-bottom: 40px;
}

.accordion-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  padding: 15px 12px 10px 15px;
}

.accordion-header {
  cursor: pointer;
  position: relative;
}

.faq-section .accordion-header {
  font-weight: bold;
}

.accordion-header::after {
  content: '+';
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: transform 0.5s;
}

.accordion-item.open .accordion-header::after {
  content: '-';
}

.accordion-content {
  max-height: 0;
  overflow: hidden;

  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.open .accordion-content {
  max-height: 300px;

}

/* CONSENTIMIENTO COOKIE  */

.cookie-consent-banner-open {
  cursor: pointer;
}

#cookie-consent-banner {
  position: fixed;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  bottom: 20px;
  right: 20px;
  width: calc(100% - 40px);
  max-width: 700px;
  background: #fff 0 0 no-repeat padding-box;
  box-shadow: 0 3px 30px #00000057;
  border-radius: 10px;
  opacity: .95;
  font-family: system-ui, sans-serif;
  font-weight: 400;
  color: var(--color);
  z-index: 40000
}

#cookie-consent-banner p.titulo {
  text-align: center;
  font-size: 1.2em;
  line-height: 37px;
  font-weight: 700;
  margin-bottom: 5px;
  padding-top: 20px;
}

#cookie-consent-banner p {
  text-align: center;
  font-size: 1em;
  line-height: 26px;
  text-wrap: balance;
  margin-bottom: 0px;
}

#cookie-consent-banner label {
  font-size: 1em;
  line-height: 26px
}

#cookie-consent-banner label input {
  margin-right: 10px;
  width: 18px;
  height: 18px
}

#cookie-consent-banner .cookie-consent-buttons,
#cookie-consent-banner .cookie-consent-options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 10px;
  gap: 20px
}

#cookie-consent-banner .cookie-consent-buttons button {
  display: block;
  padding: 10px 25px;
  border: 0;
  border-radius: 10px;
  box-sizing: border-box;
  color: #fff;
  font-size: 1.1em;
  font-weight: 700;
  line-height: 23px
}

#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(3) {
  background-color: #595959;
  cursor: pointer
}

#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(2) {
  background-color: #595959;
  cursor: pointer
}

#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(1) {
  background-color: var(--color-destacado);
  cursor: pointer
}

#cookie-consent-banner .cookie-consent-buttons button:hover {
  background-color: var(--color-destacado-hover);
}

.grecaptcha-badge {
  bottom: 139px !important;
}

/* CORREO */
.correo-button-container {
  position: fixed;
  bottom: 87px;
  right: 5px;
  z-index: 1000
}

.correo-button-container svg {
  padding-right: 13px;
}

/* TELEFONO */
.telefono-button-container {
  position: fixed;
  bottom: 87px;
  right: 5px;
  z-index: 1000
}

.telefono-button {
  display: flex;
  align-items: center;
  background-color: var(--color-texto-primario);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
  transition: background-color .3s, box-shadow .3s
}

.telefono-button:hover {
  background-color: var(--color-destacado-hover);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
  color: #fff !important
}

.telefono-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px
}

/* WHATSAPP */
.whatsapp-button-container {
  position: fixed;
  bottom: 36px;
  right: 5px;
  z-index: 1000
}

.whatsapp-button {
  display: flex;
  align-items: center;
  background-color: #058936;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
  transition: background-color .3s, box-shadow .3s
}

.whatsapp-button:hover {
  background-color: #128c7e;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
  color: #fff !important
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px
}

@media (max-width: 1330px) {

  header #contenedor_menu ul {
    width: 685px;
  }

  .why {
    width: 90%;
  }

  .card {
    width: 20%;
  }

  .swiper-slide {
    column-gap: 15px;
  }

  .hero-content {
    max-width: 43%;
  }


}

@media (max-width: 1250px) {}


@media (max-width: 1200px) {
  .card-5 {
    display: none;
  }
}


@media (max-width: 1100px) {

  .portada {
    margin-top: 77px;
  }

  header #contenedor_logo {
    width: 250px;
  }

  header #contenedor_logo img {
    scale: 0.75;
  }

  header #contenedor_menu ul {
    width: 575px;
  }

  #contenedor_menu ul {
    gap: 0px;
  }

  .why {
    width: 80%;
  }

  .mySwiper.desktop {
    display: none;
  }

  .mySwiper.tablet {
    display: block;
  }

  .card {
    width: 50%;
  }

  .irland-content:nth-child(1) {
    display: none;
  }

  .articulo-4 {
    display: none;
  }

  .hero-content {
    max-width: 43%;
  }

}

/* Table */
@media only screen and (min-width: 1024px) {
  .telefono-button-container {
    display: none;
  }
}

@media only screen and (max-width: 1024px) {
  .correo-button-container {
    display: none;
  }
}

@media (max-width: 1024px) {

  #contenedor_menu ul li a {
    font-size: 14px;
  }

  header #contenedor_menu ul {
    justify-content: center;
  }

}

@media (max-width: 992px) {
  .news-item {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 930px) {

  .card-4,
  .card-5 {
    display: none;
  }

  .hero-banner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column-reverse;

  }

  .hero-content {
    max-width: 70%;
  }


}

@media (max-width: 900px) {
  .servicios-container {
    grid-template-columns: 1fr;
  }

  .servicios-lista {
    grid-template-columns: 1fr;
  }

  .servicios-container {
    grid-template-columns: none;
  }

  .faq-section {
    flex-direction: column;
  }

  .izquierda-faq-section {
    width: 80%;
    margin-top: 40px;
  }

  .derecha-faq-section {
    width: 80%;
  }

  .img-choose-2 {
    display: none;

  }

  .img-choose {
    display: none;
    justify-content: center;

  }

  .choose-content {
    justify-content: center;
}

}

/* Smartphone */
@media (max-width: 760px) {

  header #contenedor_menu ul {
    width: 800px;
    display: none;
  }

  .card-1,
  .card-2,
  .card-3 {
    flex: 1 1 clamp(120px, 30%, 200px);
  }

  header #contenedor_menu ul {
    display: flex;
    width: 190px;
    background: var(--color-principal-variente);
    position: fixed;
    top: 96px;
    right: -252px;
    flex-direction: column;
    align-items: center;
    align-content: flex-start;
    flex-wrap: wrap;
    padding: 20px 14px;
    border-radius: 0px 0px 0px 20px;
    row-gap: 10px;
    transition: right 0.4s ease;
  }

  header #contenedor_menu ul a {
    font-size: 16px;
    color: var(--color-texto-primario);
    font-weight: 500;
  }

  header #contenedor_menu ul a:hover {
    color: var(--color-texto-contraste-claro)
  }

  header #contenedor_menu .mostrar-menu {
    right: 0px !important;
  }

  header #contenedor_menu {
    width: 50%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row-reverse;
  }

  header #contenedor_menu .menu_smartphone {
    display: block;
  }

  .portada {
    margin-top: 89px;
  }

  .fuente-titular {
    letter-spacing: -1px;
    line-height: 42px;
    font-size: 50px;
    padding: 15px;
  }

  .fuente-subportada {
    width: 100%;
    font-size: 22px;
    margin-bottom: 20px;
  }

  .fuente-texto {
    font-size: 19px;
    line-height: 24px;
    padding: 15px;
  }

  .fuente-subtitulo {
    font-size: 18px;
    font-weight: bold;
    line-height: 26px;
  }

  .fuente-titulo-seccion {
    font-size: 28px;
    font-weight: bold;
  }

  .fuente-entradilla {
    font-size: 1rem;
    font-weight: 700;
    text-transform: capitalize;
  }

  .faq-category {
    flex-direction: column;
    margin: 15px;
  }

  .faq-icon {
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }

  .faq-header {
    font-size: 1rem;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-link {
    align-self: flex-end;
    margin-top: 5px;
  }

  .portada h1 {
    width: 90%;
    line-height: 51px;
  }

  .why-content {
    padding-left: 0px;
  }

  .fuente-subportada {
    width: 90%;
  }

  .testimonio.main-container {
    display: none;
  }

  .testimonios {
    display: flex;

  }

  .irland-content:nth-child(2) {
    display: none;
  }

  .irland-content:nth-child(3) {
    padding: 0px;
  }

  .articulo-3 {
    display: none;
  }

  .contacto-fondo {
    display: none;
  }

  .faq-section {
    padding: 60px 0px;
    padding-left: 0px;
  }



  .choose-content {
    display: flex;
    justify-content: center;
  }

  .choose {
    /* padding: 60px 0px; */
    max-width: 100%;
    align-items: center;
  }


}


@media (max-width: 600px) {

  header #contenedor_menu {
    width: calc(100% - 304px);
  }

  .swiper-slide {
    flex-direction: column;
  }

  .card {
    width: 90%;
  }

  .news-item {
    flex: 1 1 100%;
  }

  #cookie-consent-banner h3 {
    font-size: 20px;
    line-height: 25px
  }

  #cookie-consent-banner p {
    font-size: 14px;
    line-height: 16px
  }

  #cookie-consent-banner .cookie-consent-buttons {
    flex-direction: column
  }

  .tempo-content {
    width: 90%;
  }

  .choose-tempo {
    width: 90%;
  }

  .btn-cta {
   padding: 0.9rem 2rem;
  }
}

@media (max-width: 480px) {
  .caja {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
  }

  .main-container {
    padding: 0px 0px !important;
  }

  .testimonio-title {
    padding: 0px;
  }

  .btn-cta {
    margin-left: 15px;
  }

  .icon-text {
    padding: 0px 15px;
  }

  .testimonios {
    padding: 0px;
  }

  .testimonio-card {
    width: calc(80%);
    margin: 0 auto;
  }

  .caja {
    gap: 19px;
    height: 396px;
    width: 90%;
    margin: auto;
    padding-bottom: 30px;
  }

  form {
    display: flex;
    width: 79%;
    margin: 0 auto;
    align-items: stretch;
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }


  .form-panel {
    padding: 0px;
  }

  .form-panel .fuente-titulo-seccion {
    padding-left: 15px;
  }

  .container-form {
    margin: 0px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
  }

  .iconos-redes {
    gap: 0px;
  }

}

@media (max-width: 350px) {

  header {
    height: 49px;
    align-items: center;
  }

  header #contenedor_logo {
    width: 189px;
  }

  header #contenedor_menu {
    width: 60px;
  }
}