@font-face {
	font-family: EstudioCreativo-Regular;
	src: url('../fonts/Estudiocreativo-Regular.ttf') format('truetype');
}

@font-face {
	font-family: Selvatica-Regular;
	src: url('../fonts/Selvatica-Regular.ttf') format('truetype');
}

/* Reset muy básico */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html,
body {
	overflow-x: hidden;
}

:root {
	--background: #1b232e;
	--verde-selvatica: #d2e823;
	--verde-oscuro: #2a4f37;
	--verde-oscuro2: #254f1a;
	--verde-claro: #94aa94;
	--cta: #d38f36;
	--acompanamiento-cta: #c2c18d;
	--azul-navy: #1a2d5a;
	--verde-musgo: #68826b;
	--crema: #f4f2ea;
}

/* FONTS */
.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;
}

.poppins-thin-italic {
	font-family: 'Poppins', sans-serif;
	font-weight: 100;
	font-style: italic;
}

.poppins-extralight-italic {
	font-family: 'Poppins', sans-serif;
	font-weight: 200;
	font-style: italic;
}

.poppins-light-italic {
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	font-style: italic;
}

.poppins-regular-italic {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-style: italic;
}

.poppins-medium-italic {
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-style: italic;
}

.poppins-semibold-italic {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-style: italic;
}

.poppins-bold-italic {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-style: italic;
}

.poppins-extrabold-italic {
	font-family: 'Poppins', sans-serif;
	font-weight: 800;
	font-style: italic;
}

.poppins-black-italic {
	font-family: 'Poppins', sans-serif;
	font-weight: 900;
	font-style: italic;
}

.selvatica-font {
	font-family: 'Selvatica-Regular', sans-serif;
}
.estudiocreativo-font {
	font-family: 'EstudioCreativo-Regular', 'Poppins', sans-serif;
}

/* END FONTS */

/* FONTS COLOR */
.text-color-white {
	color: #fff;
}
.text-color-verde-selvatica {
	color: var(--verde-selvatica) !important;
}
.text-color-verde-oscuro {
	color: var(--verde-oscuro) !important;
}
.text-color-verde-oscuro2 {
	color: var(--verde-oscuro2) !important;
}
.text-color-verde-claro {
	color: var(--verde-claro) !important;
}
.text-color-cta {
	color: var(--cta) !important;
}
.text-color-acompanamiento-cta {
	color: var(--acompanamiento-cta) !important;
}
.text-color-azul-navy {
	color: var(--azul-navy) !important;
}
.text-color-verde-musgo {
	color: var(--verde-musgo) !important;
}
/* END FONTS COLOR*/

/* BACKGROUND COLOR */
.background-color-white {
	background-color: #fff;
}
.background-color-verde-selvatica {
	background-color: var(--verde-selvatica) !important;
}
.background-color-verde-oscuro {
	background-color: var(--verde-oscuro) !important;
}
.background-color-verde-oscuro2 {
	background-color: var(--verde-oscuro2) !important;
}
.background-color-verde-claro {
	background-color: var(--verde-claro) !important;
}
.background-color-cta {
	background-color: var(--cta) !important;
}
.background-color-acompanamiento-cta {
	background-color: var(--acompanamiento-cta) !important;
}
.background-color-azul-navy {
	background-color: var(--azul-navy) !important;
}
.background-color-verde-musgo {
	background-color: var(--verde-musgo) !important;
}
.background-color-crema {
	background-color: var(--crema) !important;
}
.background-color-gradient-verdes {
	background: linear-gradient(
		var(--verde-claro) 0%,
		var(--verde-oscuro2) 80%
	);
}
/* BACKGROUND COLOR*/

/* NAVBAR */
.navbar {
	background-color: transparent;
	transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}

/* Estado con scroll */
.navbar.scrolled {
	background-color: rgba(0, 0, 0, 0.09);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(8px);
}

.navbar-brande {
	padding-right: 10px;
}

.nav-link {
	color: var(--verde-selvatica) !important;
	border-radius: 20px;
	font-family: 'EstudioCreativo-Regular', sans-serif;
	text-decoration: none;
	padding: 6px 15px !important;
	margin: 0 10px !important;
	font-weight: 400 !important;
	transition: background-color 0.3s ease, color 0.3s ease;
	text-transform: uppercase;
}

.nav-link.active,
.nav-link:hover {
	color: var(--verde-oscuro) !important;
	background-color: var(--verde-selvatica) !important;
}
/* END OF NAVBAR */

/* HERO VIDEO */

/* Banner detrás del navbar */
.banner {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	/* empuja el contenido bajo la barra fija */
	padding-top: 4rem;
}

/* Vídeo difuminado */
.banner__video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: 105%;
	height: 105%;
	transform: translate(-50%, -50%);
	object-fit: cover;
	filter: blur(4px) brightness(0.7);
	z-index: 1;
}

/* Overlay oscuro */
.banner__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 2;
}

/* Contenido central */
.banner__content {
	position: relative;
	z-index: 3;
	text-align: center;
	padding: 0 1rem;
	z-index: 4;
}
.banner__content > h1 {
	font-size: 3rem;
}

/* Scroll button */
.btn-scroll {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	color: var(--verde-selvatica);
	font-size: 1.5rem;
	text-decoration: none;
	margin: 0;
	padding: 0;
	line-height: 1;
	overflow: hidden;
	transition: background 0.3s ease;
}
.btn-scroll:hover {
	background: rgba(255, 255, 255, 0.6);
}
.btn-scroll i {
	display: block;
	margin: 0;
	padding: 0;
	line-height: 1;
}
/* Animación subir/bajar */
@keyframes scroll-bounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(5px);
	}
}
.btn-scroll {
	animation: scroll-bounce 2s ease-in-out infinite;
}

/* SVG */
.custom-shape-divider-bottom-1754070013 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
	z-index: 5;
}

.custom-shape-divider-bottom-1754070013 svg {
	position: relative;
	display: block;
	width: calc(100% + 1.3px);
	height: 86px;
	transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1754070013 .shape-fill {
	fill: var(--verde-claro);
}
/* END OF SVG */
.kicker {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	color: var(--verde-oscuro2);
	font-weight: 500;
	letter-spacing: 0.2px;
	font-size: 0.9rem;
	background-color: var(--verde-selvatica);
	border: 1px solid rgba(210, 232, 35, 0.35);
	padding: 6px 12px;
	border-radius: 999px;
}
/* END OF HERO VIDEO */

/* TYPEWRITER */
.typewriter {
	overflow: hidden; /* Ensures the content is not revealed until the animation */
	border-right: 0.15em solid var(--verde-selvatica); /* The typwriter cursor */
	white-space: nowrap; /* Keeps the content on a single line */
	margin: 0 auto; /* Gives that scrolling effect as the typing happens */
	/* letter-spacing: 0.15em; */ /* Adjust as needed */
	line-break: auto;
	animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

/* The typing effect */
@keyframes typing {
	from {
		width: 0;
	}
	to {
		width: 100%;
	}
}

/* The typewriter cursor effect */
@keyframes blink-caret {
	from,
	to {
		border-color: transparent;
	}
	50% {
		border-color: var(--verde-selvatica);
	}
}
/* END OF TYPEWRITER */

.button-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 23px;
	border: 0;
	position: relative;
	overflow: hidden;
	border-radius: 10rem;
	transition: all 0.2s ease;
	cursor: pointer;
	text-decoration: none;
	box-shadow: 0 0px 7px -5px rgba(0, 0, 0, 0.5);
	background-color: #4caf50;
	color: white;
	/* width: 100%; */
	/* max-width: 300px; */
	height: auto;
	/* gap: 10px; */
}

/* Estilos al pasar el ratón (hover) para los botones base */
.button-link:hover {
	filter: brightness(1.1); /* Ligeramente más brillante al pasar el ratón */
	transform: translateY(-2px); /* Pequeño efecto de elevación */
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Sombra más pronunciada */
	text-decoration: none; /* Asegura que no aparezca subrayado al pasar el ratón */
	color: white; /* Mantiene el texto blanco para el fondo verde */
}

/* Estilos al hacer clic (active) */
.button-link:active {
	transform: scale(0.97);
}

.button-link i {
	margin-right: 0.5rem; /* Espacio entre el icono y el texto */
	font-size: 1.2rem; /* Tamaño del icono */
}

.cssbuttons-io {
	background: linear-gradient(to right, #68826b, #68826b);
	color: #d2e823;
	overflow: hidden;
}
.button-link--gradient {
	/* Fondo degradado por defecto, como en la imagen de referencia */
	background: linear-gradient(
		90deg,
		rgba(193, 228, 248, 1) 0%,
		/* Azul claro */ rgb(136, 255, 166) 49%,
		/* Lila claro */ rgb(202, 255, 156) 100% /* Rosa claro */
	);
	color: rgb(37, 37, 37); /* Color de texto oscuro para contraste */
}

/* Hover para el tipo de botón Gradiente */
.button-link--gradient:hover {
	filter: brightness(1.05); /* Ligeramente más brillante al pasar el ratón */
	transform: translateY(-2px); /* Pequeño efecto de elevación */
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Sombra más pronunciada */
	color: rgb(33, 0, 85); /* Color de texto del hover original (morado) */
}
/* CARD HOVER */
/* Custom background color for the card to match the image */
.bg-card-dark {
	background-color: var(--background);
}

.glow-card-content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.card-servicios-container {
	position: relative;
	margin-bottom: 20px;
	height: 300px; /* Fixed height of the card */
	/* Background color, border-radius, box-shadow moved to Bootstrap classes or custom classes */
	overflow: hidden; /* Important for the glow not to spill out */
	transition: box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	color: white;
}

.glow-card-container {
	position: relative;
	overflow: hidden; /* Important for the glow not to spill out */
	transition: box-shadow 0.3s ease;
}

.glow-card-img-container {
	display: flex;
	align-items: center;
	z-index: 5;
}

.glow-card-img {
	width: 200px;
}

.glow-card-container:hover {
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5); /* Enhanced shadow on hover */
}

/* Element for the glow/light */
.glow-card-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* Radial gradient for the light effect - adjusted color and spread */
	background: radial-gradient(
		circle at var(--mouse-x) var(--mouse-y),
		rgba(209, 232, 35, 0.849) 0%,
		/* Stronger green with more opacity */ transparent 50%
			/* Fades to transparent later, making it less diffuse */
	);
	filter: blur(30px); /* Adjusted blur level for less diffusion */
	opacity: 0; /* Hidden by default */
	transition: opacity 0.3s ease; /* Smooth transition for appearance */
	pointer-events: none; /* Ensures it doesn't block mouse events on content */
	z-index: 0; /* Behind the content */
}

.glow-card-container:hover::before {
	opacity: 1; /* Becomes visible on mouse hover */
}

/* Content of the card */

.glow-card-content-wrapper {
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.card-icon-wrapper {
	background-color: rgba(76, 175, 80, 0.9);
	border-radius: 50px;
}

.card-icon {
	font-size: 1.2rem;

	z-index: 5;
	color: var(--verde-selvatica);
}

.card-icon-wrapper-blur {
	backdrop-filter: blur(5px);
	background-color: rgba(210, 232, 35, 0.4);
	border-radius: 50px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.card-title {
	font-size: 1.5rem; /* Custom font size */
	font-weight: 600; /* Custom font weight */
	margin-bottom: 0.5rem;
	margin-top: 28px;
}

.card-description {
	font-size: 0.9rem; /* Custom font size */
	/* Color handled by Bootstrap text-light or text-secondary */
}

#servicios-container {
	position: relative; /* contexto para el canvas absoluto */
	background: transparent !important; /* que no tape el canvas */
	overflow: hidden; /* recorta el canvas si se sale */
	min-height: 420px; /* da altura visible al efecto */
}

/* Asegura que el contenido quede sobre el canvas */
#servicios-container > * {
	position: relative;
	z-index: 1;
}

.step {
	background: var(--background);
	color: white;
	border: 1px solid #1d3f29;
	border-radius: 12px;
	padding: 16px;
	/* Eliminamos 'width' y 'margin' problemáticos */
	margin-bottom: 24px; /* Agrega espacio vertical entre las tarjetas */
}

/* Opcional: Centrar el texto en cada tarjeta para que se vea mejor */
.step h4,
.step p {
	text-align: center;
}

/* ===== Footer Selvática ===== */
.sv-footer {
	/* usa tokens del proyecto */
	background: var(--background); /* base oscura coherente */
	color: #e9ecef;
}
.sv-footer .sv-heading {
	color: #fff;
	letter-spacing: 0.2px;
}
.sv-footer .sv-div {
	border-color: rgba(255, 255, 255, 0.08);
}

/* enlaces del footer */
.sv-links a,
.sv-footer-minilinks a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
	font-family: 'Poppins', sans-serif;
}
.sv-links a:hover,
.sv-footer-minilinks a:hover {
	color: var(--verde-selvatica);
}

/* lista de contacto */
.sv-contact li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin: 0.4rem 0;
}
.sv-contact a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
}
.sv-contact a:hover {
	color: var(--verde-selvatica);
}
.sv-ico {
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	color: var(--verde-selvatica);
}

/* iconos sociales circulares */
.sv-social {
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: transform 0.18s ease, background 0.18s ease,
		border-color 0.18s ease;
	text-decoration: none;
}
.sv-social:hover {
	transform: translateY(-2px);
	background: rgba(210, 232, 35, 0.15); /* var(--verde-selvatica) suavizado */
	border-color: rgba(210, 232, 35, 0.35);
	color: var(--verde-selvatica);
}

/* responsivo fino */
@media (max-width: 576px) {
	.sv-footer-minilinks {
		justify-content: center;
	}
}

/* Media queries for responsiveness */
@media (max-width: 576px) {
	/* .glow-card-container {
		width: 90%;
		height: 180px;
		padding: 1rem;
	} */
	.card-title {
		font-size: 1.2rem;
	}
	.card-description {
		font-size: 0.8rem;
	}
}
/* END OF CARD HOVER */

/* CARD CLIENTES */
.card-cliente {
	background-color: var(--background);
}
.card-cliente-encabezado {
	display: flex;
	flex-direction: row;
	align-content: center;
	align-items: center;
	justify-content: flex-start;
	gap: 15px;
}
.card-cliente-img {
	border-radius: 50px;
	height: 40px;
	overflow: hidden;
}
.card-cliente-encabezado-nombre {
	display: flex;
	flex-direction: column;
	line-height: 17px;
}

/* ---------------------------------------------------- */
/* 1. CONTENEDOR PRINCIPAL: EL CÍRCULO EXTERIOR */
/* ---------------------------------------------------- */

.logo-circle-green {
	/* 1. Definición geométrica */
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	padding: 10px;

	/* 2. Estilo de Color (Verde Musgo - Estado Normal) */
	background-color: var(--acompanamiento-cta);
	border: 3px solid var(--verde-musgo); /* Borde en estado normal */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);

	/* 3. Transición Universal (todo en 0.3s) */
	transition: all 0.3s ease-in-out;
	text-decoration: none;
}

.logo-circle-green:hover {
	background-color: var(--crema); /* Fondo Hover: Verde Claro/CTA */

	/* CORRECCIÓN 1: El borde y el fondo deben ser idénticos en hover para eliminar el anillo oscuro. */
	border-color: var(--crema);

	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
	transform: scale(1.05);
}

/* ---------------------------------------------------- */
/* 2. LOGO (IMAGEN) DENTRO DEL CÍRCULO */
/* ---------------------------------------------------- */

.clientes-img-logo {
	max-width: 90%;
	max-height: 90%;
	height: auto;
	object-fit: contain;

	/* EFECTO NORMAL: Tono medio B&N (Saturación Baja, Color Apagado) */
	filter: saturate(0.2) grayscale(0.5);
	opacity: 0.9;
	transition: filter 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.logo-circle-green:hover .clientes-img-logo {
	filter: none; /* Color original al hacer hover */
	opacity: 1;
}

/* ---------------------------------------------------- */
/* 3. DOBLE CÍRCULO INTERIOR (SINCRONIZACIÓN DE COLOR) */
/* ---------------------------------------------------- */

.logo-circle-green::after {
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;

	/* CORRECCIÓN 2: El fondo en estado normal ahora es el mismo que el padre (--verde-musgo).
       Esto elimina el flash blanco al salir del hover. */
	background-color: var(--acompanamiento-cta);

	z-index: -1;
	border: 1px solid rgba(0, 0, 0, 0.05); /* Borde sutil */
	transition: all 0.3s ease-in-out; /* Mantiene la sincronización */
}

/* En Hover, el fondo del pseudo-elemento cambia a --acompanamiento-cta */
.logo-circle-green:hover::after {
	background-color: var(--crema);
	border-color: transparent; /* Ocultamos el borde sutil en hover */
}

/* ---------------------------------------------------- */
/* 4. ADAPTACIÓN A MÓVILES (Responsivo) */
/* ---------------------------------------------------- */

@media (max-width: 767px) {
	.logo-circle-green {
		width: 100px;
		height: 100px;
	}
}

/* FORM */

@media (min-width: 992px) {
	.max-width-lg-centered {
		max-width: 950px !important;
		margin-left: auto !important;
		margin-right: auto !important;
		padding: 0 15px !important;
	}
}
/* Quita bordes redondeados */
.no-radius {
	border-radius: 0 !important;
}

/* Inputs personalizados */
.custom-input {
	width: 100%;
	padding: 0.5rem;
	background-color: var(--verde-selvatica);
	color: white;
	border: none;
}

.custom-input::placeholder {
	color: rgba(255, 255, 255, 0.8);
}

/* Textarea personalizado */
.custom-textarea {
	width: 100%;
	padding: 0.5rem;
	background-color: var(--verde-selvatica);
	color: white;
	border: none;
}

.custom-textarea::placeholder {
	color: rgba(255, 255, 255, 0.8);
}

/* Efecto al hacer focus */
.custom-input:focus,
.custom-textarea:focus {
	outline: none;
	box-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
}

/* Contador de caracteres */
.char-counter {
	color: white;
}

/* Botón personalizado */
.custom-btn {
	background-color: var(--verde-oscuro2);
	color: white;
	border: none;
	padding: 0.7rem;
	font-weight: bold;
}

.custom-btn:hover {
	opacity: 0.9;
}

/* Inputs personalizados */
.custom-input,
.custom-textarea {
	width: 100%;
	padding: 0.5rem;
	background-color: rgba(0, 0, 0, 0.1); /* Un poco más oscuro que el fondo */
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.2);
	font-weight: bold; /* letra negrita */
	padding-left: 1rem; /* padding extra a la izquierda */
	font-family: 'Poppins', sans-serif;
}

.custom-input::placeholder,
.custom-textarea::placeholder {
	color: rgba(255, 255, 255, 0.8);
	font-family: 'Poppins', sans-serif;
}

/* Efecto al hacer focus */
.custom-input:focus,
.custom-textarea:focus {
	outline: none;
	border-color: white;
	box-shadow: 0 0 8px white; /* iluminación blanca */
}

/* Contador de caracteres */
.char-counter {
	color: white;
}

/* Botón personalizado */
.custom-btn {
	background-color: var(--verde-oscuro2) !important;
	color: white !important;
	border: none;
	padding: 0.7rem;
	font-weight: bold;
	font-family: 'Poppins', sans-serif !important;
}

.custom-btn:hover {
	opacity: 0.9;
}

/* Evitar el estilo feo de Google autofill */
.custom-input:-webkit-autofill,
.custom-textarea:-webkit-autofill {
	background-color: rgba(0, 0, 0, 0.1) !important;
	-webkit-box-shadow: 0 0 0px 1000px rgba(0, 0, 0, 0.1) inset !important;
	-webkit-text-fill-color: white !important;
	transition: background-color 5000s ease-in-out 0s;
}

/* Placeholder más delgado */
.custom-input::placeholder,
.custom-textarea::placeholder {
	font-weight: 300; /* delgado */
	color: rgba(255, 255, 255, 0.7); /* opcional: un poco más claro */
}

/* Texto real del input */
.custom-input,
.custom-textarea {
	font-weight: 600; /* el weight que quieras para el texto escrito */
}
/* END OF FORM */
/* FAQ */
.faq-wrapper {
	background: #f6f6f6;
	border-radius: 20px;
	max-width: 900px;
}

.accordion-button {
	border-radius: 20px !important;
	background: #fff;
	border: 2px solid transparent;
	padding: 1.1rem 1.3rem;
}

.accordion-button:hover {
	border-color: var(--verde-claro) !important;
}

.accordion-button:not(.collapsed) {
	color: #000;
	background: transparent !important;
	box-shadow: none !important;
}

.accordion-item {
	border-radius: 20px !important;
}

.accordion-item:has(.accordion-header .accordion-button:not(.collapsed)) {
	border-color: var(--verde-selvatica) !important;
	border-width: 1px !important;
	border-style: solid !important;
}

.accordion-body {
	background: #fff;
	border-radius: 0 0 20px 20px;
	padding-top: 5px !important;
}

.accordion-button:focus {
	z-index: 3;
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgba(177, 248, 9, 0.25) !important;
}

/* Móvil */
@media (max-width: 768px) {
	.faq-wrapper {
		padding: 1rem !important;
		border-radius: 10px;
		background: transparent;
	}
}
/* FIN FAQ */
/* QUEIENES SOMOS */
/* medidas & tipografía de los textos */
.qs-name {
	font-weight: 800;
	line-height: 1.1;
}
.qs-role {
	display: inline-block;
	font-weight: 700;
	font-size: 0.95rem;
}
.qs-text {
	max-width: 58ch;
	opacity: 0.95;
}

/* pastilla acento (ajusta al color de tu sistema si quieres) */
.pill-acento {
	background: #26d9b4; /* acento menta/verde-agua */
	color: #0b2a1c;
	padding: 0.35rem 0.65rem;
	border-radius: 0.5rem;
}

/* tarjeta de foto con efecto */
.profile-card {
	position: relative;
	aspect-ratio: 4/5; /* misma proporción de la referencia */
	background: #0f2d1e;
	cursor: pointer;
	user-select: none;
}
.pc-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.35s ease, transform 0.35s ease;
	will-change: opacity, transform;
}
.pc-img-1 {
	opacity: 1;
	transform: scale(1);
}
.pc-img-2 {
	opacity: 0;
	transform: scale(1.04);
}

/* hover solo en dispositivos con puntero fino */
@media (hover: hover) and (pointer: fine) {
	.profile-card:hover .pc-img-1 {
		opacity: 0;
		transform: scale(1.02);
	}
	.profile-card:hover .pc-img-2 {
		opacity: 1;
		transform: scale(1);
	}
}

/* estado alterno (para móvil) */
.profile-card.is-alt .pc-img-1 {
	opacity: 0;
	transform: scale(1.02);
}
.profile-card.is-alt .pc-img-2 {
	opacity: 1;
	transform: scale(1);
}

/* botón invisible para captar el tap y mejorar accesibilidad */
.pc-tap {
	position: absolute;
	inset: 0;
	border: 0;
	background: transparent;
	padding: 0;
}

/* reduce animaciones si el usuario lo pide */
@media (prefers-reduced-motion: reduce) {
	.pc-img {
		transition: none;
	}
}

/* END OF QUIENES SOMOS */

/* MOBILE */
@media screen and (max-width: 600px) {
	.typewriter {
		white-space: pre-line; /* Keeps the content on a single line */
	}
	.navbar.scrolled {
		background-color: rgba(0, 0, 0, 0.5);
		backdrop-filter: blur(9px);
		-webkit-backdrop-filter: blur(8px);
	}

	.row-equipo-selvatica {
		flex-direction: column-reverse !important;
		text-align: center;
	}
}
/* móvil: no exceder el viewport */
@media (max-width: 576px) {
	.banner__video {
		width: 100%;
		height: 100%;
	}
}
/* por si acaso, asegura el recorte del hero */
.banner {
	overflow: hidden;
}
