/* ===================================================
   QUENET TORRENT INSTITUTE - ESTILOS PRINCIPALES
   =================================================== */

/* ---------------------------------------------------
   RESET Y VARIABLES
   --------------------------------------------------- */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-green: #aed688;
	--primary-green-dark: #9bc76e;
	--dark-teal: #5c6b73;
	--dark-teal-light: #c2dfe3;
	--dark-bg: #253237;
	--light-gray: #f5f5f5;
	--lighter-gray: #fafafa;
	--white: #ffffff;
	--text-dark: #333333;
	--text-medium: #555555;
	--text-light: #666666;
	--border-color: #e0e0e0;
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
	--transition: 0.3s ease;
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 24px;
}

/* ---------------------------------------------------
     BASE
     --------------------------------------------------- */
html {
	scroll-behavior: smooth;
}

html, body {
	width: 100vw;
	min-height: 100%;
	overflow-x: hidden;
}

/* ---------------------------------------------------
   TOP BAR - Barra superior informativa
   --------------------------------------------------- */
.top-bar-wrapper {
	background: #b0e3fa;
}

.top-bar {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 6px 20px;
	max-width: 1400px;
	margin: 0 auto;
	gap: 0;
	text-align: center;
}

.top-bar span {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.5px;
	color: #1a5276;
	white-space: nowrap;
	text-transform: uppercase;
}

.top-bar span:not(:last-child)::after {
	content: "•";
	margin: 0 20px;
	opacity: 0.5;
}

/* Responsive */
@media (max-width: 900px) {
	.top-bar span {
		font-size: 9px;
		letter-spacing: 0.4px;
	}

	.top-bar span:not(:last-child)::after {
		margin: 0 12px;
	}
}

@media (max-width: 600px) {
	.top-bar {
		padding: 5px 10px;
	}

	.top-bar span {
		font-size: 7px;
		letter-spacing: 0.2px;
	}

	.top-bar span:not(:last-child)::after {
		margin: 0 8px;
	}
}

/* Legacy classes - keeping for compatibility */
.top-bar__content,
.top-bar__contact,
.top-bar__phone,
.top-bar__email {
	display: none;
}

/* ---------------------------------------------------
   BREADCRUMBS - Migas de pan
   --------------------------------------------------- */
.breadcrumbs {
	padding: 15px 0;
	background: #f8f9fa;
	border-bottom: 1px solid #eee;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0 auto;
	padding: 0 20px;
	max-width: 1200px;
	font-size: 13px;
}

.breadcrumbs li {
	display: flex;
	align-items: center;
	color: #666;
}

.breadcrumbs li:not(:last-child)::after {
	content: '›';
	margin-left: 8px;
	color: #999;
	font-size: 14px;
}

.breadcrumbs a {
	color: #0066cc;
	text-decoration: none;
	transition: color 0.2s ease;
}

.breadcrumbs a:hover {
	color: #004499;
	text-decoration: underline;
}

.breadcrumbs li:last-child {
	color: #333;
	font-weight: 500;
}

@media (max-width: 768px) {
	.breadcrumbs ol {
		font-size: 12px;
		padding: 0 15px;
	}
}

body {
	font-family: 'Archivo', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	color: var(--primary-green);
}

ul {
	list-style: none;
}

address {
	font-style: normal;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

blockquote {
	padding-top: 16px;
	color: var(--text-light);
	font-style: italic;
	margin: 20px 0;
	text-align: left;
	position: relative;
	font-size: .9rem;
}

blockquote::before {
	content: "";
	background-color: var(--primary-green);
	margin-right: 8px;
	height: 2px;
	width: 20px;
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
}

/* ---------------------------------------------------
     BOTONES
     --------------------------------------------------- */
.btn-primary {
	display: inline-block;
	background-color: var(--primary-green);
	color: var(--white);
	padding: 14px 32px;
	border-radius: 30px;
	border: none;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all var(--transition);
	text-align: center;
}

.btn-primary:hover {
	background-color: var(--primary-green-dark);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(174, 214, 136, 0.4);
}

.btn-secondary {
	display: inline-block;
	background-color: transparent;
	color: var(--dark-teal);
	padding: 10px 24px;
	border-radius: 30px;
	border: 2px solid var(--primary-green);
	font-weight: 600;
	font-size: 0.85rem;
	cursor: pointer;
	transition: all var(--transition);
}

.btn-secondary:hover {
	background-color: var(--primary-green);
	color: var(--white);
}

.btn-link {
	color: var(--dark-teal);
	font-weight: 600;
	font-size: 0.95rem;
	transition: all var(--transition);
}

.btn-link:hover {
	color: var(--primary-green);
	padding-left: 5px;
}

.btn-block {
	width: 100%;
}

.btn-nav {
	padding: 10px 24px;
	font-size: 0.85rem;
}

.btn-doctor {
	display: inline-block;
	background-color: var(--primary-green);
	color: var(--white);
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 500;
	transition: all var(--transition);
	margin-bottom: .5rem;
}

.btn-doctor:hover {
	background-color: var(--primary-green-dark);
	color: var(--white);
	transform: translateY(-2px);
}

/* ---------------------------------------------------
     HEADER
     --------------------------------------------------- */
.main-header {
	background-color: var(--white);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 0;
}

.logo img {
	height: 26px;
	width: auto;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 18px;
}

.main-nav>a,
.main-nav .menu-link {
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--text-dark);
	padding: 6px 0;
	position: relative;
	letter-spacing: 0.02em;
}

.main-nav>a::after,
.main-nav .menu-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-green);
	transition: width var(--transition);
}

.main-nav>a:hover::after,
.main-nav .menu-link:hover::after {
	width: 100%;
}

.main-nav>a.btn-nav {
	padding: 8px 16px;
	font-size: 0.75rem;
}

.main-nav>a.btn-nav:hover::after {
	content: none;
}

/* Megamenu */
.menu-item {
	position: relative;
}

.submenu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--white);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	padding: 20px;
	min-width: 800px;
	max-width: 95vw;
	display: none;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	z-index: 100;
}

.menu-item:hover .submenu {
	display: grid;
}

.submenu-section {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.submenu-title {
	font-weight: 700;
	color: var(--dark-teal);
	font-size: 0.8rem;
	padding-bottom: 6px;
	border-bottom: 2px solid var(--primary-green);
	margin-bottom: 2px;
}

.submenu a {
	font-size: 0.78rem;
	color: var(--text-light);
	padding: 3px 0;
	transition: all var(--transition);
	line-height: 1.3;
}

.submenu a:hover {
	color: var(--dark-teal);
	padding-left: 8px;
}

/* Language selector */
.lang-selector {
	margin-left: 8px;
}

.lang-selector .lang-current {
	font-weight: 600;
	font-size: 0.85rem;
	padding: 6px 12px;
	background: var(--light-gray);
	border-radius: var(--radius-sm);
}

.submenu-lang {
	min-width: 80px !important;
	padding: 12px !important;
	display: none;
	grid-template-columns: 1fr !important;
}

.lang-selector:hover .submenu-lang {
	display: block;
}

.submenu-lang a {
	display: block;
	padding: 8px 12px !important;
	text-align: center;
	font-weight: 500;
	border-radius: var(--radius-sm);
}

.submenu-lang a:hover {
	padding-left: 12px !important;
	background: var(--light-gray);
}

.submenu-lang a.active {
	background: var(--primary-green);
	color: var(--white);
}

.submenu-lang a.active:hover {
	background: var(--primary-green-dark);
	color: var(--white);
}

/* Mobile menu button */
.mobile-menu-btn {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
	background: none;
	border: none;
	cursor: pointer;
}

.mobile-menu-btn span {
	display: block;
	width: 25px;
	height: 2px;
	background-color: var(--text-dark);
	transition: all var(--transition);
}

/* ---------------------------------------------------
     SECCIÓN: HERO
     --------------------------------------------------- */
.hero {
	position: relative;
	min-height: 500px;
	display: flex;
	align-items: center;
	background: url('../img/quenetitorrent-1024x400.webp') center center / cover no-repeat;
	color: var(--white);
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(18, 54, 73, 0.9) 0%, rgba(31, 92, 115, 0.85) 100%);
}

.hero-inner {
	position: relative;
	z-index: 1;
}

.hero-content {
	max-width: 850px;
}

.hero-tag {
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--primary-green);
	margin-bottom: 16px;
}

.hero h1 {
	font-size: 3.75rem;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 20px;
	text-wrap-style: balance;
}

.hero-subtitle {
	font-size: 1.5rem;
	line-height: 1.35;
	font-weight: 100;
	margin-bottom: 1.5rem;
}

/* ---------------------------------------------------
     SECCIONES GENERALES
     --------------------------------------------------- */
section {
	padding: 5rem 0;
}

.section-header {
	text-align: center;
	max-width: 920px;
	margin: 0 auto 35px;
}

.section-header h2,
.section-header h3 {
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--dark-teal);
	margin-bottom: 16px;
	line-height: 1.1;
}

.section-tag {
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-size: 0.75rem !important;
	font-weight: 600;
	color: var(--primary-green) !important;
	margin-bottom: 12px;
}

.section-header p {
	font-size: 1.5rem;
	color: var(--text-light);
	line-height: 1.35;
	font-weight: 100;
	margin-bottom: 1.5rem;
}

.section-cta {
	text-align: center;
	margin-top: 40px;
}

/* ---------------------------------------------------
     SECCIÓN: FEATURES (Equipo multidisciplinar)
     --------------------------------------------------- */
.features {
	background-color: var(--white);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
}

.feature-card {
	background-color: var(--light-gray);
	border-radius: var(--radius-md);
	padding: 28px;
	transition: all var(--transition);
	opacity: 0;
	transform: translateY(20px);
}

.feature-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.feature-card h3 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--dark-teal);
	margin-bottom: 12px;
}

.feature-card p {
	font-size: 0.9rem;
	color: var(--text-light);
	line-height: 1.6;
}

.feature-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
	background-color: var(--white);
}

/* ---------------------------------------------------
     SECCIÓN: CONTACTO
     --------------------------------------------------- */
.contact-section {
	background: linear-gradient(135deg, var(--dark-teal) 0%, var(--dark-teal-light) 100%);
	color: var(--white);
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.contact-info .section-tag {
	color: var(--primary-green);
}

.contact-info h2 {
	font-size: 2.5rem;
	margin-bottom: 30px;
	line-height: 1.1;
}

.contact-benefits {
	margin-bottom: 30px;
}

.contact-benefits li {
	display: flex;
	gap: 16px;
	margin-bottom: 20px;
	align-items: flex-start;
}

.check-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background-color: rgba(174, 214, 136, 0.2);
	border-radius: 50%;
	color: var(--primary-green);
	font-weight: bold;
	flex-shrink: 0;
}

.contact-benefits strong {
	display: block;
	margin-bottom: 4px;
}

.contact-benefits span {
	font-size: 0.9rem;
	opacity: 0.9;
}

.contact-details p {
	margin-bottom: 8px;
}

.contact-details a {
	color: var(--primary-green);
}

.contact-form-box {
	background-color: var(--white);
	color: var(--text-dark);
	border-radius: var(--radius-lg);
	padding: 32px;
	box-shadow: var(--shadow-lg);
}

.contact-form-box h3 {
	font-size: 1.3rem;
	color: var(--dark-teal);
	margin-bottom: 8px;
}

.contact-form-box>p {
	font-size: 0.9rem;
	color: var(--text-light);
	margin-bottom: 24px;
}

.contact-form .form-group {
	margin-bottom: 16px;
}

.contact-form label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	font-size: 0.95rem;
	font-family: inherit;
	transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--primary-green);
}

.contact-form textarea {
	resize: vertical;
	min-height: 100px;
}

.form-check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.form-check input {
	width: auto;
	margin-top: 3px;
}

.form-check label {
	font-weight: 400;
	font-size: 0.85rem;
}

.form-check a {
	color: var(--dark-teal);
	text-decoration: underline;
}

/* ---------------------------------------------------
     SECCIÓN: PACIENTES INTERNACIONALES
     --------------------------------------------------- */
.international {
	background-color: var(--lighter-gray);
}

.international-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.international-image img {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
}

.international-content .section-tag {
	margin-bottom: 12px;
}

.international-content h2 {
	font-size: 2.4rem;
	line-height: 1.1;
	color: var(--dark-teal);
	margin-bottom: 20px;
}

.international-content p {
	font-size: 1.125rem;
	color: var(--text-light);
	line-height: 1.7;
	margin-bottom: 24px;
}

/* ---------------------------------------------------
     SECCIÓN: POR QUÉ ELEGIRNOS
     --------------------------------------------------- */
.why-us {
	background-color: var(--white);
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.why-card {
	background-color: var(--light-gray);
	border-radius: var(--radius-md);
	padding: 28px;
	border: 2px solid transparent;
	transition: all var(--transition);
	opacity: 0;
	transform: translateY(20px);
}

.why-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.why-card h3 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--dark-teal);
	margin-bottom: 12px;
}

.why-card p {
	font-size: 0.9rem;
	color: var(--text-light);
	line-height: 1.6;
}

.why-card:hover {
	border-color: var(--primary-green);
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

/* ---------------------------------------------------
     SECCIÓN: CASOS REALES (VIDEOS VERTICALES 9:16)
     --------------------------------------------------- */
.cases {
	background-color: var(--lighter-gray);
}

.cases-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.case-card {
	background-color: var(--white);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: all var(--transition);
	opacity: 0;
	transform: translateY(20px);
}

.case-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.case-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

/* Video vertical 9:16 */
.case-video-vertical {
	position: relative;
	padding-bottom: 177.78%;
	/* 16/9 = 1.7778 para vertical */
	height: 0;
	overflow: hidden;
	background-color: #000;
}

.case-video-vertical iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.case-content {
	padding: 20px;
}

.case-content h3 {
	font-size: 1.125rem;
	color: var(--dark-teal);
	margin-bottom: 10px;
}

.case-content p {
	font-size: 0.85rem;
	color: var(--text-light);
	margin-bottom: 16px;
	line-height: 1.5;
}

/* ---------------------------------------------------
     SECCIÓN: UNIDADES ESPECIALIZADAS
     --------------------------------------------------- */
.specialties {
	background-color: var(--white);
}

.specialties-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 28px;
}

.specialty-card {
	background-color: var(--white);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: all var(--transition);
	opacity: 0;
	transform: translateY(20px);
}

.specialty-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.specialty-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.specialty-image {
	overflow: hidden;
}

.specialty-image img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	transition: transform var(--transition);
}

.specialty-card:hover .specialty-image img {
	transform: scale(1.05);
}

.specialty-content {
	padding: 24px;
}

.specialty-content h3 {
	font-size: 1.15rem;
	color: var(--dark-teal);
	margin-bottom: 12px;
}

.specialty-content p {
	font-size: 0.9rem;
	color: var(--text-light);
	line-height: 1.6;
	margin-bottom: 16px;
}

/* ---------------------------------------------------
     SECCIÓN: EQUIPO MÉDICO (DOCTORES - FOTOS CUADRADAS)
     --------------------------------------------------- */
.team {
	background-color: var(--lighter-gray);
}

.team-row {
	display: flex;
	gap: 2rem;
	margin-bottom: 6rem;
	flex-wrap: wrap;
	justify-content: center;
}

/* .team-row-4 {
	grid-template-columns: repeat(4, 1fr);
}

.team-row-3 {
	grid-template-columns: repeat(3, 1fr);
	max-width: 1200px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.team-row-2 {
	grid-template-columns: repeat(2, 1fr);
	max-width: 600px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
} */

.doctor-card {
	width: calc(33% - 1.5rem);
	text-align: center;
	opacity: 0;
	transform: translateY(20px);
	transition: all var(--transition);
	padding: 1rem;
	border-radius: var(--radius-xl);
	background: linear-gradient(145deg, #ffffff, #f0f0f0);
	box-shadow: 20px 20px 30px #c8c8c8,
		-20px -20px 30px #ffffff;
}

.doctor-card.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Fotos cuadradas con bordes redondeados */
.doctor-photo {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	margin: 0 auto 1.5rem;
	overflow: hidden;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	background-color: var(--light-gray);
}

.doctor-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform var(--transition);
}

.doctor-card:hover .doctor-photo img {
	transform: scale(1.05);
}

.doctor-card h3 {
	font-size: 1.125rem;
	color: var(--dark-teal);
	margin-bottom: 4px;
	font-weight: 600;
}

.doctor-specialty {
	font-size: 0.85rem;
	color: var(--text-light);
	margin-bottom: 12px;
}

/* ---------------------------------------------------
     SECCIÓN: TRATAMIENTOS AVANZADOS
     --------------------------------------------------- */
.treatments {
	background-color: var(--white);
}

.treatments-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 28px;
}

.treatments-list {
	display: flex;
	flex-direction: column;
	gap: 28px;
	max-width: 800px;
	margin: 0 auto;
}

.treatments-list .treatment-card {
	display: grid;
	grid-template-columns: 300px 1fr;
	align-items: center;
}

.treatments-list .treatment-image img {
	height: 100%;
	min-height: 200px;
}

@media (max-width: 768px) {
	.treatments-list .treatment-card {
		grid-template-columns: 1fr;
	}
}

.treatment-card {
	background-color: var(--white);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: all var(--transition);
	opacity: 0;
	transform: translateY(20px);
}

.treatment-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.treatment-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.treatment-image {
	overflow: hidden;
}

.treatment-image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform var(--transition);
}

.treatment-card:hover .treatment-image img {
	transform: scale(1.05);
}

.treatment-content {
	padding: 24px;
}

.treatment-content h3 {
	font-size: 1.15rem;
	color: var(--dark-teal);
	margin-bottom: 12px;
}

.treatment-content p {
	font-size: 0.9rem;
	color: var(--text-light);
	line-height: 1.6;
	margin-bottom: 16px;
}

/* ---------------------------------------------------
     RESPONSIVE
     --------------------------------------------------- */
.blog-section {
	background-color: var(--lighter-gray);
	padding: 4rem 0;

	h2 {
		text-align: center;
		font-size: 2.5rem;
		margin-bottom: 3rem;
		color: var(--dark-teal);
	}

	h3 {
		font-size: 1.25rem;
		margin: 1rem 0;
		color: var(--dark-teal);
	}

	p {
		font-size: 0.95rem;
		color: var(--text-light);
		line-height: 1.6;
		margin-bottom: 1.5rem;
	}

	img {
		border-radius: var(--radius-md);
		box-shadow: var(--shadow-md);
		margin-bottom: 1.5rem;
	}

	.blog-grid {
		display: grid;
		grid-template-columns: repeat(3, minmax(300px, 1fr));
		gap: 2rem;
	}
}

/* ---------------------------------------------------
     RESPONSIVE
     --------------------------------------------------- */
@media (min-width: 1570px) {
	.container {
		max-width: 1440px;
	}
}

@media (max-width: 1024px) {
	.container {
		max-width: 980px;
	}

	.hero h1 {
		font-size: 2.2rem;
	}

	.contact-wrapper,
	.international-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.team-row-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.team-row-3 {
		grid-template-columns: repeat(3, 1fr);
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.doctor-card {
		width: calc(50% - 1.5rem);
	}

	.blog-section .blog-grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(300px, 1fr));
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	.hero-inner {
		padding: 60px 0;
	}

	.hero h1 {
		font-size: 2.6rem;
	}

	/* section {
		padding: 60px 0;
	} */

	.section-header h2 {
		font-size: 2.4rem;
	}

	.doctor-card {
		width: calc(50% - 1.5rem);
	}



	/* Videos verticales en móvil - 2 columnas */
	.cases-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.societies-logos {
		gap: 30px;
	}

	.societies-logos img {
		height: 40px;
	}

	.commitment-contact {
		flex-direction: column;
		gap: 24px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}

	.footer-legal {
		flex-wrap: wrap;
		justify-content: center;
	}

	.blog-section .blog-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}

	.btn-primary {
		padding: 12px 24px;
		font-size: 0.85rem;
	}

	.contact-form-box {
		padding: 24px;
	}

	.team-row {
		gap: 1rem;
	}

	.doctor-card {
		padding: .5rem;
	}


	.doctor-card h3 {
		font-size: 0.9rem;
	}

	.doctor-specialty {
		font-size: 0.75rem;
	}

	.btn-doctor {
		padding: 6px 14px;
		font-size: 0.75rem;
	}

	/* Videos verticales en móvil pequeño - 2 columnas más compactas */
	.cases-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.case-content {
		padding: 12px;
	}

	.case-content h3 {
		font-size: 0.85rem;
	}

	.case-content p {
		font-size: 0.75rem;
		margin-bottom: 10px;
	}

	.cases-grid,
	.specialties-grid,
	.treatments-grid {
		grid-template-columns: 1fr;
	}

	/* Excepción: mantener videos en 2 columnas */
	.cases-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.blog-section .blog-grid {
		grid-template-columns: 1fr;
		gap: 4rem;
	}
}

/* ---------------------------------------------------
     ANIMACIONES DE ENTRADA
     --------------------------------------------------- */
.feature-card,
.why-card,
.specialty-card,
.doctor-card,
.treatment-card,
.case-card {
	transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Delays escalonados */
.features-grid .feature-card:nth-child(1) {
	transition-delay: 0.1s;
}

.features-grid .feature-card:nth-child(2) {
	transition-delay: 0.2s;
}

.features-grid .feature-card:nth-child(3) {
	transition-delay: 0.3s;
}

.features-grid .feature-card:nth-child(4) {
	transition-delay: 0.4s;
}

.features-grid .feature-card:nth-child(5) {
	transition-delay: 0.5s;
}

.team-row .doctor-card:nth-child(1) {
	transition-delay: 0.1s;
}

.team-row .doctor-card:nth-child(2) {
	transition-delay: 0.2s;
}

.team-row .doctor-card:nth-child(3) {
	transition-delay: 0.3s;
}

.team-row .doctor-card:nth-child(4) {
	transition-delay: 0.4s;
}

/* ============================
   PÁGINA DE PATOLOGÍAS
   (bloques específicos)
============================ */

/* Intro patologías: ajusta separación y ancho */
#intro-patologias {
	background-color: var(--lighter-gray);
}

#intro-patologias .section-header {
	margin-bottom: 24px;
}

#intro-patologias h2 {
	font-size: 3rem;
	color: var(--dark-teal);
}

#intro-patologias p {
	font-size: 1rem;
	color: var(--text-light);
	line-height: 1.8;
}

#intro-patologias h3 {
	font-size: 1.2rem;
	margin-bottom: 12px;
	color: var(--dark-teal);
}

#intro-patologias ul {
	list-style: disc;
	padding-left: 20px;
}

#intro-patologias li {
	margin-bottom: 8px;
	font-size: 0.95rem;
	color: var(--text-medium);
}

/* Grid de patologías (reutiliza el estilo de specialties) */
.specialties#listado-patologias {
	background-color: var(--white);
}

#listado-patologias .section-header h2 {
	font-size: 2.6rem;
}

#listado-patologias .section-header p {
	max-width: 700px;
	margin: 0 auto;
}

/* Ajustes menores para las cards de patologías */
#listado-patologias .specialty-card h3 {
	font-size: 1.05rem;
}

#listado-patologias .specialty-card p {
	font-size: 0.9rem;
}

/* Equipo en página de patologías */
.team .section-header p {
	max-width: 700px;
	margin: 0 auto;
}

.team-row-3 {
	/* display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 900px; */
	margin: 0 auto;
}

/* Responsive específico */
@media (max-width: 768px) {
	#intro-patologias {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.team-row-3 {
		/* grid-template-columns: repeat(2, 1fr); */
	}
}

@media (max-width: 480px) {
	.team-row-3 {
		/* grid-template-columns: 1fr; */
	}
}

/* ESPECIALIDADES - ESTILOS ESPECÍFICOS */
.intro-patologias {
	background-color: var(--lighter-gray);
}

.intro-patologias .section-header {
	margin-bottom: 24px;
}

.intro-patologias h2 {
	font-size: 3rem;
	color: var(--dark-teal);
}

.intro-patologias p {
	font-size: 1.5rem;
	color: var(--text-light);
	line-height: 1.35;
	font-weight: 100;
	margin-bottom: 1.5rem;
}

.intro-patologias h3 {
	font-size: 1.2rem;
	margin-bottom: 12px;
	color: var(--dark-teal);
}

.hero {
	background-image: url('../img/carcinomatosis.webp');
}

@media (max-width: 768px) {
	.intro-patologias {
		padding: 50px 0;
	}
}

/* CSS FAQ DESPLEGABLES (añadir al style.css) */

.faq-container {
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 16px;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	overflow: hidden;
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.faq-item summary {
	padding: 20px 24px;
	font-weight: 600;
	color: var(--dark-teal);
	cursor: pointer;
	list-style: none;
	background: var(--light-gray);
	transition: all var(--transition);
	position: relative;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::before {
	content: '▶';
	float: right;
	transition: transform 0.3s ease;
	font-size: 0.8rem;
}

.faq-item[open] summary::before {
	transform: rotate(90deg);
}

.faq-item summary:hover {
	background: var(--primary-green);
	color: var(--white);
}

.faq-content {
	padding: 24px;
	color: var(--text-light);
	line-height: 1.7;
}

.faq-content strong {
	color: var(--dark-teal);
}

.faq-content ul {
	padding-left: 20px;
	margin: 12px 0;
}

.faq-content li {
	margin-bottom: 8px;
}

@media (max-width: 768px) {
	.faq-content {
		padding: 20px 16px;
	}

	.faq-item summary {
		padding: 16px;
		font-size: 0.95rem;
	}
}

/* ---------------------------------------------------
   VIDEO SECTION
   --------------------------------------------------- */
.video-section {
	padding: 5rem 0;
	background: linear-gradient(135deg, var(--dark-bg) 0%, #1a2328 100%);
}

.video-wrapper {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: center;
}

.video-content {
	color: var(--white);
}

.video-content .section-tag {
	background: rgba(174, 214, 136, 0.15);
	color: var(--primary-green);
}

.video-content h2 {
	font-size: 2rem;
	margin: 16px 0 20px;
	font-weight: 600;
	line-height: 1.3;
}

.video-content > p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
	margin-bottom: 24px;
}

.video-highlights {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.video-highlights li {
	display: flex;
	align-items: center;
	gap: 12px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
}

.video-highlights li::before {
	content: '✓';
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background: var(--primary-green);
	color: var(--dark-bg);
	border-radius: 50%;
	font-size: 12px;
	font-weight: 700;
	flex-shrink: 0;
}

.video-player {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.video-placeholder {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	background-size: cover;
	background-position: center;
	background-color: var(--dark-teal);
	cursor: pointer;
}

.video-placeholder::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	transition: background var(--transition);
}

.video-placeholder:hover::before {
	background: rgba(0, 0, 0, 0.2);
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: var(--primary-green);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dark-bg);
	transition: all var(--transition);
	z-index: 1;
}

.play-button:hover {
	transform: translate(-50%, -50%) scale(1.1);
	background: var(--primary-green-dark);
}

.play-button svg {
	margin-left: 4px;
}

.video-embed {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.video-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media (max-width: 992px) {
	.video-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.video-content {
		text-align: center;
	}

	.video-highlights {
		align-items: center;
	}
}

@media (max-width: 768px) {
	.video-section {
		padding: 4rem 0;
	}

	.video-content h2 {
		font-size: 1.6rem;
	}

	.play-button {
		width: 64px;
		height: 64px;
	}

	.play-button svg {
		width: 48px;
		height: 48px;
	}
}

/* ---------------------------------------------------
   RESPONSIVE - ESCALADO DE MENÚ PARA PANTALLAS INTERMEDIAS
   --------------------------------------------------- */

/* Pantallas grandes (hasta 1500px) */
@media (max-width: 1500px) {
	.main-nav {
		gap: 14px;
	}
	.main-nav>a,
	.main-nav .menu-link {
		font-size: 0.75rem;
	}
	.main-nav>a.btn-nav {
		padding: 7px 14px;
		font-size: 0.7rem;
	}
}

/* Pantallas medianas (hasta 1350px) */
@media (max-width: 1350px) {
	.main-nav {
		gap: 10px;
	}
	.main-nav>a,
	.main-nav .menu-link {
		font-size: 0.7rem;
	}
	.main-nav>a.btn-nav {
		padding: 6px 12px;
		font-size: 0.65rem;
	}
	.logo img {
		height: 24px;
	}
}

/* ---------------------------------------------------
   RESPONSIVE - MENÚ MÓVIL
   --------------------------------------------------- */
@media (max-width: 1200px) {
	/* Mostrar botón hamburguesa */
	.mobile-menu-btn {
		display: flex;
		z-index: 1001;
	}

	/* Animación hamburguesa a X */
	.mobile-menu-btn.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.mobile-menu-btn.active span:nth-child(2) {
		opacity: 0;
	}

	.mobile-menu-btn.active span:nth-child(3) {
		transform: rotate(-45deg) translate(5px, -5px);
	}

	/* Navegación móvil */
	.main-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		max-width: 400px;
		height: 100vh;
		background: var(--white);
		flex-direction: column;
		align-items: stretch;
		padding: 80px 24px 40px;
		gap: 0;
		box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
		transition: right 0.3s ease;
		overflow-y: auto;
		z-index: 1000;
	}

	.main-nav.nav-open {
		right: 0;
	}

	/* Links principales */
	.main-nav > a,
	.main-nav .menu-link {
		padding: 16px 0;
		font-size: 1.1rem;
		border-bottom: 1px solid var(--border-color);
		display: block;
		width: 100%;
	}

	.main-nav > a::after,
	.main-nav .menu-link::after {
		display: none;
	}

	/* Botón CTA móvil */
	.main-nav > a.btn-nav {
		margin-top: 24px;
		text-align: center;
		border-bottom: none;
	}

	/* Menú item con submenú */
	.menu-item {
		width: 100%;
		border-bottom: 1px solid var(--border-color);
	}

	.menu-item .menu-link {
		border-bottom: none;
		position: relative;
		padding-right: 30px;
	}

	.menu-item .menu-link::before {
		content: '+';
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		font-size: 1.5rem;
		font-weight: 300;
		color: var(--dark-teal);
		transition: transform 0.3s ease;
	}

	.menu-item.submenu-open .menu-link::before {
		content: '−';
	}

	/* Submenú móvil */
	.submenu {
		position: static;
		transform: none;
		box-shadow: none;
		min-width: 100%;
		max-width: 100%;
		padding: 0 0 16px 16px;
		display: none;
		grid-template-columns: 1fr;
		gap: 0;
		background: var(--light-gray);
		margin: 0 -24px;
		padding: 16px 24px 16px 40px;
		width: calc(100% + 48px);
	}

	.menu-item:hover .submenu {
		display: none;
	}

	.menu-item.submenu-open .submenu {
		display: block;
	}

	/* Secciones del submenú - desplegables en móvil */
	.submenu-section {
		margin-bottom: 0;
		border-bottom: 1px solid var(--border-color);
	}

	.submenu-section:last-child {
		border-bottom: none;
	}

	.submenu-title {
		font-size: 0.95rem;
		padding: 12px 0;
		margin-bottom: 0;
		position: relative;
		cursor: pointer;
		display: block;
		font-weight: 600;
	}

	.submenu-title::after {
		content: '+';
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		font-size: 1.2rem;
		font-weight: 300;
		color: var(--dark-teal);
	}

	.submenu-section.section-open .submenu-title::after {
		content: '−';
	}

	/* Links dentro de la sección - ocultos por defecto solo si hay submenu-title */
	.submenu-section:has(.submenu-title) > a:not(.submenu-title) {
		display: none;
		font-size: 0.9rem;
		padding: 10px 0 10px 16px;
		border-top: 1px solid rgba(0,0,0,0.05);
	}

	/* Si NO hay submenu-title, mostrar los links directamente */
	.submenu-section:not(:has(.submenu-title)) > a {
		display: block;
		font-size: 0.9rem;
		padding: 10px 0 10px 16px;
		border-top: 1px solid rgba(0,0,0,0.05);
	}

	.submenu-section.section-open > a:not(.submenu-title) {
		display: block;
	}

	.submenu a:hover {
		padding-left: 20px;
		color: var(--primary-green);
	}

	/* Selector de idioma móvil */
	.lang-selector {
		margin-left: 0;
		margin-top: 16px;
		border-bottom: none;
	}

	.lang-selector .lang-current {
		display: none;
	}

	.submenu-lang {
		position: static;
		display: flex !important;
		flex-direction: row;
		gap: 12px;
		padding: 0 !important;
		background: transparent;
		box-shadow: none;
		min-width: auto !important;
	}

	.submenu-lang a {
		padding: 10px 20px !important;
		background: var(--light-gray);
		border-radius: var(--radius-sm);
		font-size: 0.9rem;
	}

	.submenu-lang a.active {
		background: var(--primary-green);
		color: var(--white);
	}

	/* Overlay cuando menú está abierto */
	body.menu-open::before {
		content: '';
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.5);
		z-index: 999;
	}
}

/* Responsive general adicional */
@media (max-width: 768px) {
	.container {
		padding: 0 16px;
	}

	section {
		padding: 3rem 0;
	}

	.hero {
		min-height: 400px;
		padding: 80px 0 60px;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1.1rem;
	}

	.section-header h2,
	.section-header h3 {
		font-size: 1.6rem;
	}

	.section-header p {
		font-size: 1.1rem;
	}

	.contact-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.why-grid {
		grid-template-columns: 1fr;
	}

	.team-row {
		grid-template-columns: 1fr;
	}

	.doctor-card {
		max-width: 100%;
	}
}

/* ===================================================
   BOTÓN STICKY MÓVIL - Ir al formulario
   =================================================== */
.mobile-sticky-btn {
	display: none;
}

@media (max-width: 768px) {
	.mobile-sticky-btn {
		display: block;
		position: fixed;
		bottom: 20px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 999;

		background: linear-gradient(135deg, #4caf50 0%, #43a047 100%);
		color: white;

		padding: 14px 28px;
		border-radius: 50px;

		font-size: 16px;
		font-weight: 600;
		text-decoration: none;
		text-align: center;

		box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);

		transition: all 0.3s ease;

		/* Animación sutil */
		animation: pulse-soft-green 2s infinite;
	}

	.mobile-sticky-btn:hover {
		transform: translateX(-50%) translateY(-3px);
		box-shadow: 0 6px 25px rgba(76, 175, 80, 0.5);
	}

	.mobile-sticky-btn:active {
		transform: translateX(-50%) translateY(-1px);
	}

	/* Ocultar cuando el usuario está en el formulario */
	.mobile-sticky-btn.hidden {
		opacity: 0;
		pointer-events: none;
	}

	/* Animación sutil del botón verde */
	@keyframes pulse-soft-green {
		0%, 100% {
			box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
		}
		50% {
			box-shadow: 0 4px 25px rgba(76, 175, 80, 0.6);
		}
	}
}

/* ===================================================
   VIDEOS DE YOUTUBE - Estilo moderno con fondo oscuro
   =================================================== */

/* Sección de video explicativo (texto izquierda, video derecha) */
.video-explicativo {
	background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	padding: 80px 0;
	margin: 60px 0;
}

.video-explicativo .container {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: center;
}

.video-explicativo-content {
	color: white;
}

.video-explicativo-tag {
	display: inline-block;
	background: rgba(76, 175, 80, 0.2);
	color: #4caf50;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
}

.video-explicativo h2 {
	font-size: 36px;
	font-weight: 700;
	color: white;
	margin: 0 0 25px;
	line-height: 1.2;
}

.video-explicativo p {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 15px;
}

.video-explicativo ul {
	list-style: none;
	padding: 0;
	margin: 30px 0 0;
}

.video-explicativo ul li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.95);
}

.video-explicativo ul li::before {
	content: "✓";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: rgba(76, 175, 80, 0.2);
	color: #4caf50;
	border-radius: 50%;
	flex-shrink: 0;
	font-weight: bold;
	font-size: 16px;
}

.video-explicativo-player {
	position: relative;
	background: #1a1a1a;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-explicativo-player::before {
	content: "";
	display: block;
	padding-top: 56.25%; /* 16:9 ratio */
}

.video-explicativo-player iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* Responsive */
@media (max-width: 992px) {
	.video-explicativo .container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.video-explicativo h2 {
		font-size: 28px;
	}

	.video-explicativo {
		padding: 60px 0;
	}
}

/* ESTILO ANTIGUO - Mantener para retrocompatibilidad */
.video-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	background: #000;
	border-radius: 8px;
	margin: 30px 0;
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.video-container-vertical {
	position: relative;
	padding-bottom: 177.78%;
	height: 0;
	overflow: hidden;
	max-width: 315px;
	margin: 0 auto;
	background: #000;
	border-radius: 8px;
}

.video-container-vertical iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.videos-grid {
	display: grid;
	grid-template-columns: 1fr 315px;
	gap: 30px;
	margin: 40px 0;
	align-items: start;
}

.videos-grid .video-wrapper {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.videos-grid .video-label {
	font-size: 14px;
	color: #666;
	font-weight: 600;
	text-align: center;
}

.video-section {
	margin: 50px 0;
}

.video-section h3 {
	margin-bottom: 20px;
	color: var(--dark-teal);
}

.video-section p {
	margin-bottom: 20px;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.videos-grid {
		grid-template-columns: 1fr;
	}

	.video-container-vertical {
		max-width: 280px;
	}
}

/* ===================================================
   SECCIÓN DE CLÍNICAS
   =================================================== */

.clinicas-section {
	padding: 80px 0;
	background: #f8f9fa;
}

.clinicas-section h2 {
	font-size: 2.5rem;
	color: var(--primary-color);
	text-align: center;
	margin-bottom: 15px;
}

.section-subtitle {
	text-align: center;
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 50px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.clinicas-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-top: 40px;
}

.clinica-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clinica-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.clinica-image {
	width: 100%;
	height: 250px;
	overflow: hidden;
}

.clinica-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.clinica-card:hover .clinica-image img {
	transform: scale(1.05);
}

.clinica-content {
	padding: 30px;
}

.clinica-content h3 {
	font-size: 1.5rem;
	color: var(--primary-color);
	margin-bottom: 8px;
	font-weight: 700;
}

.clinica-location {
	font-size: 0.95rem;
	color: #0066cc;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 15px;
}

.clinica-description {
	color: #555;
	line-height: 1.6;
	margin-bottom: 20px;
}

.clinica-address {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	background: #f8f9fa;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 25px;
}

.clinica-address .icon {
	font-size: 1.3rem;
	flex-shrink: 0;
}

.clinica-address p {
	font-size: 0.95rem;
	color: #555;
	line-height: 1.5;
	margin: 0;
}

.clinica-card .btn-primary {
	display: inline-block;
	width: auto;
	margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
	.clinicas-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

@media (max-width: 768px) {
	.clinicas-section {
		padding: 60px 0;
	}

	.clinicas-section h2 {
		font-size: 2rem;
	}

	.clinica-image {
		height: 200px;
	}

	.clinica-content {
		padding: 25px;
	}

	.clinica-content h3 {
		font-size: 1.3rem;
	}
}
