:root {
	--brand-green: #80b94f;
	--text-dark: #2b2f33;
	--text-soft: #666a70;
	--page-bg: #ffffff;
	--card-bg: #ffffff;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Poppins", "Segoe UI", Tahoma, sans-serif;
	background: var(--page-bg);
	color: var(--text-dark);
}

 .nosotros-page-wrap {
            max-width: 1050px;
            margin: 0 auto;
            padding: 2rem 1rem 5rem;
			display: flex;
			flex-direction: column;
			align-items: center;
			text-align: center;
			width: 100%;
        }

		.nosotros-mision-section,
		.nosotros-servicios-section {
			max-width: 920px;
			margin: 0 auto 4rem;
		}

        .nosotros-hero {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            margin-bottom: 4rem;
        }

        .nosotros-hero img {
            width: 100%;
            display: block;
            object-fit: cover;
        }

        .nosotros-section-title {
            text-align: center;
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            color: #111111;
            margin-bottom: 2.5rem;
            font-weight: 700;
        }

        .mision-card {
            background-color: var(--brand-green, #80b94f);
            border-radius: 16px;
            padding: 3.5rem 2.5rem;
            text-align: center;
            color: #ffffff;
            box-shadow: 0 15px 35px rgba(128, 185, 79, 0.25);
            margin: 0 auto 5rem;
            max-width: 800px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .mision-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(128, 185, 79, 0.35);
        }

        .mision-icon {
            display: block;
			width: min(400px, 100%);
			max-width: 100%;
            height: auto;
            margin: 0 auto 1.5rem; /* Centrado horizontalmente con margen inferior */
            filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
        }

        .mision-card h3 {
            font-size: 2.2rem;
            margin: 0 0 1rem;
            color: #ffffff;
            font-weight: 700;
        }

        .mision-card p {
            font-size: 1.15rem;
            line-height: 1.7;
            margin: 0 auto;
            opacity: 0.95;
            max-width: 650px;
        }

        .servicios-list {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
			width: 100%;
        }

		.nosotros-mision-section,
		.nosotros-servicios-section {
			width: 100%;
		}

        .servicio-card {
            display: flex;
            align-items: stretch;
            background-color: var(--brand-green, #80b94f);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
			width: 100%;
        }

        .servicio-card:hover {
            transform: translateY(-3px) scale(1.01);
            box-shadow: 0 16px 35px rgba(128, 185, 79, 0.2);
        }

        /* Alternar imagen izquierda/derecha */
        .servicio-card:nth-child(even) {
            flex-direction: row-reverse;
        }

        .servicio-img {
            flex: 0 0 45%;
            max-width: 45%;
            position: relative;
            background: #f5f5f5;
        }

        .servicio-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            min-height: 320px;
        }

        .servicio-text {
            flex: 1;
            padding: 3rem 2.5rem;
            color: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .servicio-text h3 {
            font-size: 1.8rem;
            margin: 0 0 1rem;
            color: #ffffff;
            font-weight: 700;
        }

        .servicio-text p {
            font-size: 1.15rem;
            line-height: 1.6;
            margin: 0;
            opacity: 0.95;
        }

        @media (max-width: 850px) {
            .servicio-card, .servicio-card:nth-child(even) {
                flex-direction: column;
            }
            .servicio-img {
                flex: 0 0 100%;
                max-width: 100%;
            }
            .servicio-img img {
                min-height: 250px;
                max-height: 300px;
            }
            .servicio-text {
                padding: 2.5rem 2rem;
                text-align: center;
            }
        }

		@media (max-width: 600px) {
			.nosotros-mision-section,
			.nosotros-servicios-section {
				margin-bottom: 2.5rem;
			}

			.mision-card {
				padding: 2rem 1.25rem;
				margin-bottom: 3rem;
				border-radius: 14px;
			}

			.mision-icon {
				width: min(72vw, 260px);
				margin-bottom: 1rem;
			}

			.mision-card h3 {
				font-size: 1.5rem;
			}

			.mision-card p {
				font-size: 1rem;
				line-height: 1.55;
			}

			.nosotros-section-title {
				font-size: clamp(1.5rem, 7vw, 2rem);
				margin-bottom: 1.5rem;
			}

			.servicio-img img {
				min-height: 200px;
				max-height: 240px;
			}

			.servicio-text {
				padding: 1.6rem 1.25rem;
			}

			.servicio-text h3 {
				font-size: 1.35rem;
			}

			.servicio-text p {
				font-size: 1rem;
				line-height: 1.55;
			}
		}

.container {
	width: min(1180px, 92%);
	margin: 0 auto;
}

.sticky-wrapper {
	position: relative;
	z-index: 1200;
	width: 100%;
	display: flex;
	flex-direction: column;
	background-color: var(--brand-green);
	transition: box-shadow 180ms ease;
}

.sticky-wrapper.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.site-header {
	background: var(--page-bg);
	padding-top: 20px;
}

.header-top {
	background: var(--card-bg);
}

.header-top-inner {
	min-height: 150px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.brand {
	display: inline-flex;
	align-items: center;
}

.brand img {
	width: auto;
	max-width: 440px;
	max-height: 220px;
	display: block;
}

.urgency-box {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
}

.phone-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.8rem;
	height: 2.8rem;
	flex: 0 0 auto;
	color: #4a4f55;
	line-height: 0;
}

.phone-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.urgency-text p {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--text-soft);
	line-height: 1.2;
}

.urgency-text a {
	display: inline-block;
	margin-top: 0.1rem;
	color: var(--text-dark);
	text-decoration: none;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
}

.main-nav {
	margin-top: 0;
	background: var(--brand-green);
	position: relative;
	z-index: 100;
	width: 100%;
	left: 0;
	right: 0;
	display: block;
	min-height: 64px;
	overflow-x: clip;
	transition: box-shadow 180ms ease;
	will-change: transform;
}

.main-nav.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1200;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.main-nav .container {
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 64px;
}

.menu-toggle {
	display: none;
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 3px;
	background: #ffffff;
	border-radius: 999px;
	transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span + span {
	margin-top: 5px;
}

.mobile-nav-brand {
	display: none;
}

.main-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	gap: 0.4rem 1.25rem;
}

.announcement-menu-item {
	order: 99;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	flex-wrap: nowrap;
	width: 100vw;
	margin: 0.35rem calc(50% - 50vw) 0;
	padding: 0.02rem 0.95rem;
	background: #ffffff;
	border-radius: 0;
	box-shadow: none;
	color: #003a13;
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.35;
	text-align: center;
	white-space: normal;
}

.announcement-icon {
	flex: 0 0 auto;
	order: 0;
	margin-left: 0;
	width: 46px;
	height: 46px;
	display: block;
	color: #ffffff;
	opacity: 0.95;
	object-fit: contain;
	transform: none;
	transform-origin: center;
}

.announcement-menu-item span {
	display: inline-block;
	order: 0;
	flex: 0 1 auto;
	min-width: 0;
	max-width: min(900px, calc(100% - 56px));
	white-space: normal;
}

.mobile-menu-contact {
	display: none;
}

.main-menu a {
	display: block;
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 1rem;
	font-weight: 700;
	padding: 1.1rem 1.3rem;
	letter-spacing: 0;
	white-space: nowrap;
}

.main-menu a:hover {
	background: rgba(255, 255, 255, 0.14);
}

main {
	padding: 0;
}

.hero-slider {
	position: relative;
	width: 100%;
	aspect-ratio: 2 / 1;
	height: auto;
	min-height: 0;
	overflow: visible;
	margin-bottom: 2.2rem;
}

.hero-slider-images {
	position: relative;
	width: 100%;
	height: 100%;
}

/* Es importante que las imágenes dentro tengan esta configuración */
.hero-slider-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: center;
}

.hero-slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	overflow: hidden;
}

.hero-slide.active {
	opacity: 1;
	z-index: 1;
}

/* Hide old img elements if present and prefer background-image */
.hero-slide img {
	display: none;
}

.hero-slide .hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.08);
	z-index: 1;
}

.hero-slide .hero-content {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	text-align: right;
	max-width: min(1080px, 88%);
	margin: 0 auto;
}

.hero-slider-dots {
	position: absolute;
	bottom: 1rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.8rem;
	z-index: 3;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(158, 158, 158, 0.75);
	border: none;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.3s ease;
}

.dot:hover {
	background: rgba(122, 122, 122, 0.9);
	transform: scale(1.1);
}

.dot.active {
	background: rgba(88, 88, 88, 1);
	width: 16px;
	height: 12px;
	border-radius: 6px;
}

.hero-slider-nosotros {
	position: relative;
	min-height: 240px;
	background-image: url("../img/nosotros/IMAGEN-NOSOTROS.jpg");
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.hero-overlay {
	position: flex;
	inset: 0;
	background: rgba(0, 0, 0, 0.12);
}

.hero-content {
	position: relative;
	z-index: 1;
	min-height: 640px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	text-align: right;
}

.hero-content h1 {
	margin: 0;
	color: #ffffff;
	font-size: clamp(1.7rem, 3.5vw, 3rem);
	line-height: 1.15;
	font-weight: 700;
	text-shadow: 2px 2px 0 rgba(8, 0, 0, 0.884);
}

.hero-button {
	margin-top: 1.8rem;
	display: inline-block;
	padding: 0.85rem 2.2rem;
	border: 0;
	border-radius: 8px;
	background: rgba(86, 186, 0, 0.78);
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-button:hover {
	background: rgba(86, 186, 0, 0.95);
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(12, 46, 1, 0.32);
}

@media (min-width: 681px) {
	.hero-slider {
		aspect-ratio: 16 / 6.5;
		max-height: 520px;
		overflow: hidden;
	}

	.hero-slider .hero-content {
		min-height: 0;
	}
}

.call-modal {
	position: fixed;
	inset: 0;
	z-index: 2200;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	opacity: 0;
	transition: opacity 0.28s ease;
}

.call-modal.is-open {
	display: flex;
	opacity: 1;
}

.call-modal__backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	padding: 0;
	background: linear-gradient(150deg, rgba(11, 34, 4, 0.8), rgba(50, 96, 16, 0.66));
	backdrop-filter: blur(3px);
	cursor: pointer;
}

.call-modal__card {
	position: relative;
	z-index: 1;
	width: min(520px, 100%);
	padding: 1.4rem 1.2rem 1.2rem;
	border-radius: 22px;
	background: radial-gradient(circle at top right, #f3ffd7 0%, #ffffff 46%, #eef8e3 100%);
	box-shadow: 0 28px 70px rgba(8, 33, 1, 0.42);
	animation: callModalIntro 0.38s cubic-bezier(0.24, 0.82, 0.25, 1);
}

.call-modal__close {
	position: absolute;
	right: 0.85rem;
	top: 0.85rem;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	background: #e9f3de;
	color: #2e6312;
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
}

.call-modal__close:hover {
	background: #d8eac6;
	transform: rotate(90deg);
}

.call-modal__eyebrow {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #3b7f14;
}

.call-modal h2 {
	margin: 0.35rem 0 0.35rem;
	font-size: clamp(1.4rem, 4vw, 2rem);
	line-height: 1.12;
	color: #18240c;
}

.call-modal__subtitle {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.45;
	color: #4c5844;
}

.call-modal__list {
	margin-top: 1rem;
	display: grid;
	gap: 0.75rem;
}

.call-modal__option {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-areas:
		"name cta"
		"number cta";
	align-items: center;
	column-gap: 0.5rem;
	padding: 0.95rem 0.95rem;
	border-radius: 14px;
	background: linear-gradient(120deg, #ffffff 0%, #f4faeb 100%);
	border: 1px solid #dce9ce;
	text-decoration: none;
	transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

button.call-modal__option {
	width: 100%;
	text-align: left;
	font-family: inherit;
	cursor: pointer;
	appearance: none;
	outline: none;
}

.call-modal__option:hover {
	transform: translateY(-2px) scale(1.01);
	border-color: #7db749;
	box-shadow: 0 12px 24px rgba(62, 105, 34, 0.22);
}


.call-modal__option--whatsapp {
	background: linear-gradient(120deg, #ffffff 0%, #eefbf1 100%);
	border-color: #d3ecd9;
}

.call-modal__option--whatsapp:hover {
	border-color: #25d366;
	box-shadow: 0 12px 24px rgba(37, 211, 102, 0.22);
}

.call-modal__option--whatsapp .call-modal__name {
	color: #075e54;
}

.call-modal__option--whatsapp .call-modal__number {
	color: #128c7e;
}

.call-modal__option--whatsapp .call-modal__cta {
	color: #0c693a;
	background: #dcf8c6;
}

.call-modal__name {
	grid-area: name;
	font-size: 1.02rem;
	font-weight: 700;
	color: #1f3311;
}

.call-modal__number {
	grid-area: number;
	font-size: 0.92rem;
	color: #4f6541;
}

.call-modal__cta {
	grid-area: cta;
	align-self: center;
	justify-self: end;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #2f6d0f;
	padding: 0.5rem 0.75rem;
	border-radius: 999px;
	background: #e3f3d3;
}

body.call-modal-open {
	overflow: hidden;
}

@keyframes callModalIntro {
	0% {
		opacity: 0;
		transform: translateY(14px) scale(0.96);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.hero-content-bottom {
	justify-content: flex-end !important;
	align-items: center !important;
	padding-bottom: 5rem;
}

.hero-content-bottom .hero-button {
	margin-top: 0;
}

.support-section {
	background: linear-gradient(135deg, #f8fbf5 0%, #ffffff 100%);
	padding: 4rem 0;
	overflow: hidden;
	width: 100%;
}

.support-grid {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 3rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.support-text {
	flex: 1;
	min-height: 400px;
	background: transparent;
	padding: 0;
	border-left: 6px solid var(--brand-green);
	border-radius: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding-left: 2rem;
}

.support-text h2 {
	margin: 0 0 1.2rem;
	font-size: clamp(1.8rem, 2.5vw, 2.5rem);
	line-height: 1.2;
	color: #111111;
	font-weight: 700;
}

.support-text p {
	margin: 0 0 1.8rem;
	font-size: 1.05rem;
	line-height: 1.6;
	max-width: 50ch;
	color: #555555;
}

.support-button {
	display: inline-block;
	padding: 1.2rem 2.5rem;
	border: none;
	border-radius: 6px;
	background: var(--brand-green);
	color: #ffffff;
	text-decoration: none;
	font-size: 1.05rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(128, 185, 79, 0.25);
	min-width: 160px;
	text-align: center;
}

.support-button:hover {
	background: #73a23f;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(128, 185, 79, 0.35);
}

.support-image {
	flex: 1;
	min-height: 400px;
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.support-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #ffffff;
	padding: 2rem;
}

.plans-section {
	position: relative;
	padding: 4.35rem 0 4.6rem;
	background: #ffffff;
	overflow: hidden;
}



.plans-section h2 {
	position: relative;
	margin: 0 auto;
	text-align: center;
	max-width: 20ch;
	font-size: clamp(2.1rem, 2.8vw, 3.15rem);
	line-height: 1.14;
	letter-spacing: -0.02em;
	color: #1b1f24;
}

@media (min-width: 1024px) {
	.plans-section h2 {
		max-width: none;
		width: fit-content;
		white-space: nowrap;
	}
}

.plans-grid {
	position: relative;
	margin-top: 2.85rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1.5rem;
}

.plans-section .plan-card {
	position: relative;
	isolation: isolate;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 0;
	background: linear-gradient(180deg, #ffffff 0%, #fbfcfa 100%);
	min-height: 100%;
	border-radius: 24px;
	border: 1px solid rgba(224, 232, 219, 0.9);
	box-shadow: 0 18px 42px rgba(11, 24, 15, 0.11), 0 4px 12px rgba(11, 24, 15, 0.05);
	transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, filter 260ms ease;
}

.plans-section .plan-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 6px;
	background: linear-gradient(90deg, #6ca83b, #80b94f 50%, #a3d66d);
	opacity: 0.95;
	transition: opacity 260ms ease, height 260ms ease;
	pointer-events: none;
	z-index: 3;
}

.plans-section .plan-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 28px 60px rgba(15, 30, 20, 0.18), 0 8px 18px rgba(15, 30, 20, 0.08);
	border-color: rgba(128, 185, 79, 0.58);
	filter: saturate(1.02);
}

.plans-section .plan-card:hover::before {
	height: 7px;
}

.plans-section .plan-card img {
	width: 100%;
	height: 244px;
	object-fit: cover;
	display: block;
	filter: saturate(1.04) contrast(1.01);
	transform: scale(1);
	transition: transform 420ms ease, filter 320ms ease;
}

.plans-section .plan-card:hover img {
	transform: scale(1.07);
	filter: saturate(1.1) contrast(1.03);
}


.plans-section .plan-body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	flex: 1;
	padding: 1.25rem 1.18rem 1.15rem;
	gap: 0.95rem;
	width: 100%;
	position: relative;
	z-index: 2;
}


.plans-section .plan-body h3 {
	margin: 0;
	color: #14191a;
	font-size: clamp(1.36rem, 1.45vw, 1.68rem);
	line-height: 1.06;
	font-weight: 700;
	letter-spacing: -0.015em;
}


.plans-section .plan-body a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.68rem 1.15rem;
	background: linear-gradient(135deg, #4f8d25, #6ca83b 55%, #8dca54 100%);
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.72rem;
	letter-spacing: 0.09em;
	font-weight: 700;
	border-radius: 999px;
	box-shadow: 0 10px 22px rgba(95, 159, 49, 0.28);
	transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}

.plans-section .plan-body a:hover {
	transform: translateY(-2px) scale(1.015);
	box-shadow: 0 14px 28px rgba(95, 159, 49, 0.34);
	filter: brightness(1.02);
}

.services-icons-section {
	background: #ffffff;
	padding: 2.8rem 0 3rem;
}

.services-icons-section h2 {
	margin: 0;
	text-align: center;
	font-size: clamp(2rem, 2.8vw, 3.1rem);
	line-height: 1.1;
	color: #111111;
}

.services-icons-grid {
	margin-top: 1.8rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2.2rem 2.6rem;
}

.service-item {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

.service-item img {
	width: 120px;
	height: 120px;
	object-fit: contain;
	margin-bottom: 0.8rem;
}

.service-item h3 {
	margin: 0;
	font-size: 1.08rem;
	line-height: 1.35;
	font-weight: 700;
	color: #111111;
}

.site-footer {
	background: #1f2328;
	color: #e8eaed;
	margin-top: 0;
}

.footer-main {
	padding: 2.6rem 0 2rem;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 2rem;
}

.footer-main h3,
.footer-main h4 {
	margin: 0 0 0.9rem;
	color: #ffffff;
}

.footer-main h3 {
	font-size: 1.35rem;
}

.footer-main h4 {
	font-size: 1.05rem;
}

.footer-main p {
	margin: 0;
	line-height: 1.55;
	color: #c7cbd1;
}

.footer-links ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.55rem;
}

.footer-links a,
.footer-contact a {
	color: #e8eaed;
	text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
	color: #b3da7e;
}

.footer-contact {
	display: grid;
	gap: 0.35rem;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	background: #171a1e;
}

.footer-bottom-inner {
	padding: 0.95rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.footer-bottom p {
	margin: 0;
	font-size: 0.9rem;
	color: #c7cbd1;
}

.footer-payments {
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-payments img {
	height: 32px;
	width: auto;
	object-fit: contain;
	background: #ffffff;
	padding: 4px 12px;
	border-radius: 6px;
}

.whatsapp-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	z-index: 1999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.28s ease, visibility 0.28s ease;
	backdrop-filter: blur(3px);
}
.whatsapp-backdrop.is-active {
	opacity: 1;
	visibility: visible;
}

.whatsapp-fab {
	position: fixed;
	right: 1rem;
	bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
	z-index: 2000;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.65rem;
	pointer-events: none;
}

.whatsapp-fab__toggle {
	border: none;
	border-radius: 999px;
	padding: 0.8rem 1rem;
	background: #25d366;
	color: #ffffff;
	font-weight: 700;
	font-size: 0.95rem;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
	pointer-events: auto;
}

.whatsapp-fab__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.2rem;
	height: 1.2rem;
	line-height: 0;
}

.whatsapp-fab__icon svg {
	width: 100%;
	height: 100%;
}

.whatsapp-fab__label {
	display: inline-block;
}

.whatsapp-fab__toggle:hover {
	background: #1fbd5a;
}

.whatsapp-fab__panel {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	pointer-events: none;
	transition: opacity 0.18s ease, transform 0.18s ease, pointer-events 0.18s ease;
}

.whatsapp-fab.is-open .whatsapp-fab__panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.whatsapp-fab__contact {
	display: block;
	padding: 0.85rem 1rem;
	border-radius: 10px;
	background: #ffffff;
	color: #1f2328;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 600;
	white-space: normal;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
	transition: all 0.25s ease;
}

.whatsapp-fab__contact:hover {
	background: #80b94f;
	color: #ffffff;
	transform: translateX(-4px);
	box-shadow: 0 12px 26px rgba(128, 185, 79, 0.3);
}

.whatsapp-fab__contact:hover .whatsapp-contact__name {
	color: #ffffff;
}

.whatsapp-fab__contact:hover .whatsapp-contact__number {
	color: rgba(255, 255, 255, 0.9);
}

/* Notificación profesional del WhatsApp */
.whatsapp-fab__notification {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 1rem;
	border-radius: 12px;
	background: linear-gradient(135deg, #80b94f 0%, #6aa040 100%);
	color: #ffffff;
	box-shadow: 0 12px 28px rgba(128, 185, 79, 0.3);
	margin-bottom: 0.5rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px) scale(0.95);
	pointer-events: none;
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, pointer-events 0.25s ease;
	max-width: 280px;
}

.whatsapp-fab.is-open .whatsapp-fab__notification {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

.whatsapp-notification__content {
	text-align: right;
}

.whatsapp-notification__title {
	margin: 0 0 0.4rem 0;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.3;
}

.whatsapp-notification__subtitle {
	margin: 0;
	font-size: 0.8rem;
	font-weight: 500;
	opacity: 0.95;
	line-height: 1.2;
}

/* Estilos mejorados para contactos con nombres */
.whatsapp-contact__name {
	font-weight: 700;
	font-size: 0.9rem;
	margin-bottom: 0.3rem;
	color: #80b94f;
}

.whatsapp-contact__number {
	font-size: 0.8rem;
	color: #666;
	font-weight: 500;
}

@media (max-width: 900px) {
	.header-top-inner {
		min-height: 120px;
	}

	.brand img {
		max-width: 280px;
		max-height: 140px;
	}

	.urgency-text a {
		font-size: 1.5rem;
	}

	.support-grid {
		flex-direction: column;
		gap: 2rem;
		padding: 0 1.5rem;
	}

	.support-text {
		align-items: center;
		text-align: center;
		border-left: none;
			padding-left: 0;
		}

		.support-text h2 {
			font-size: 1.8rem;
	}

	.support-image {
		min-height: 300px;
	}

	.plans-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.15rem;
	}

	.services-icons-grid {
		gap: 1.8rem 1.5rem;
	}

	.service-item img {
		width: 106px;
		height: 106px;
	}

	.footer-main {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 680px) {
	.header-top {
		display: none;
	}

	.site-header {
		padding-top: 0;
	}

	.header-top-inner {
		flex-direction: column;
		justify-content: center;
		text-align: center;
		padding: 1rem 0;
	}

	.urgency-box {
		justify-content: center;
	}

	.urgency-box,
	.brand {
		display: none;
	}

	.main-nav {
		padding: 0.35rem 0;
		background: #ffffff;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	}

	.main-menu {
		gap: 0.2rem 1rem;
	}

	.announcement-menu-item {
		width: 100vw;
		margin: 0.2rem calc(50% - 50vw) 0;
		padding: 0.7rem 0.9rem;
		border-bottom: 0;
		font-size: 0.88rem;
		line-height: 1.3;
		white-space: normal;
	}

	.announcement-icon {
		width: 36px;
		height: 36px;
		transform: none;
	}

	.mobile-nav-brand {
		display: inline-flex;
		align-items: center;
	}

	.mobile-nav-brand img {
		width: auto;
		max-width: 360px;
		height: 84px;
		display: block;
	}

	.mobile-menu-contact {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0.35rem;
		padding: 0.9rem 1rem 1.1rem;
		border-bottom: 1px solid rgba(128, 185, 79, 0.16);
	}

	.mobile-menu-contact p {
		margin: 0.15rem 0 0;
		color: var(--text-soft);
		font-size: 0.86rem;
		font-weight: 500;
		text-transform: none;
		letter-spacing: 0;
	}

	.main-menu .mobile-phone {
		padding: 0;
		border-top: 0;
		font-size: 1.15rem;
		font-weight: 700;
		line-height: 1.25;
		letter-spacing: 0;
		text-transform: none;
		color: var(--brand-green);
	}

	.main-menu .mobile-phone:hover {
		background: transparent;
	}

	.main-nav .container {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
	}

	.menu-toggle {
		display: inline-flex;
		flex-direction: column;
		align-self: flex-end;
		justify-content: center;
		gap: 0;
		background: var(--brand-green);
		color: #ffffff;
		border: 1px solid rgba(128, 185, 79, 0.2);
		border-radius: 10px;
		padding: 0.62rem 0.72rem;
		margin: 0.2rem 0;
		box-shadow: 0 8px 18px rgba(17, 41, 7, 0.08);
	}

	.menu-toggle span {
		width: 20px;
		height: 2.5px;
		background: #ffffff;
	}

	.menu-toggle span + span {
		margin-top: 4px;
	}

	.main-nav.is-open .menu-toggle span:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	.main-nav.is-open .menu-toggle span:nth-child(2) {
		opacity: 0;
	}

	.main-nav.is-open .menu-toggle span:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.main-menu {
		display: none;
		flex-direction: column;
		align-items: stretch;
		flex-basis: 100%;
		width: 100%;
		margin-top: 0.4rem;
		padding: 0.6rem 0.75rem 0.75rem;
		max-height: none;
		background: #ffffff;
		border: 1px solid rgba(128, 185, 79, 0.18);
		border-radius: 18px;
		box-shadow: 0 20px 40px rgba(20, 56, 8, 0.12);
		overflow: visible;
		opacity: 1;
		pointer-events: auto;
		transition: none;
	}

	.main-nav.is-open .main-menu {
		display: flex;
	}

	.main-menu a {
		text-align: center;
		padding: 0.9rem 1rem;
		border-top: 1px solid rgba(128, 185, 79, 0.12);
		color: var(--text-dark);
	}

	.hero-slider,
	.hero-content {
		min-height: 0;
	}

	.hero-slider {
		aspect-ratio: 2 / 1;
		height: auto;
		min-height: 0;
	}

	.hero-slider .hero-slide:first-child .hero-content {
		align-items: center;
		text-align: center;
	}

	.hero-button {
		font-size: 1.2rem;
		padding: 0.9rem 1.8rem;
	}

	.support-text {
		padding: 2.2rem 1.25rem;
		border-left-width: 10px;
	}

	.support-button {
		font-size: 1rem;
	}

	.plans-section {
		padding: 2.5rem 0 3rem;
	}

	.plans-grid {
		grid-template-columns: 1fr;
		margin-top: 1.9rem;
	}

	.plans-section .plan-card {
		max-width: 440px;
		margin: 0 auto;
	}

	.plans-section .plan-card img {
		height: 220px;
	}

	.services-icons-section {
		padding: 2.2rem 0 2.4rem;
	}

	.services-icons-grid {
		grid-template-columns: 1fr;
		gap: 1.4rem;
	}

	.service-item img {
		width: 96px;
		height: 96px;
		margin-bottom: 0.55rem;
	}

	.footer-main {
		padding: 2rem 0 1.7rem;
		grid-template-columns: 1fr;
		gap: 1.4rem;
	}

	.footer-bottom-inner {
		justify-content: center;
		text-align: center;
	}

	.whatsapp-fab {
		right: 0.75rem;
		bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
	}

	.whatsapp-fab__toggle {
		width: 56px;
		height: 56px;
		padding: 0;
		border-radius: 50%;
		justify-content: center;
		font-size: 0;
		box-shadow: 0 12px 26px rgba(37, 211, 102, 0.42);
	}

	.whatsapp-fab__icon {
		width: 1.6rem;
		height: 1.6rem;
	}

	.whatsapp-fab__label {
		display: none;
	}

	.whatsapp-fab__contact {
		font-size: 0.85rem;
	}

	.whatsapp-fab__notification {
		max-width: 240px;
		padding: 0.85rem;
	}

	.whatsapp-notification__title {
		font-size: 0.85rem;
		margin-bottom: 0.25rem;
	}

	.whatsapp-notification__subtitle {
		font-size: 0.75rem;
	}
}

/* ==========================================================================
   Estructura WPBakery (Página Nosotros)
   ========================================================================== */
.wpb-content-wrapper .row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

.wpb-content-wrapper .vc_column_container {
	padding-right: 15px;
	padding-left: 15px;
	width: 100%;
	box-sizing: border-box;
}

.vc_row-flex {
	display: flex;
	flex-wrap: wrap;
}

.vc_row-o-content-middle {
	align-items: center;
}

.vc_row-has-fill {
	padding: 2.5rem 1.5rem;
	margin-bottom: 1.5rem;
	border-radius: 8px;
}

.vc_single_image-wrapper img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	border-radius: 8px;
}

@media (min-width: 768px) {
	.col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
	.col-md-3 { flex: 0 0 25%; max-width: 25%; }
	.col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-md-6 { flex: 0 0 50%; max-width: 50%; }
	.col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
	.col-md-12 { flex: 0 0 100%; max-width: 100%; }
	
	.d-md-none { display: none !important; }
}

@media (max-width: 767px) {
	.porto-u-heading { text-align: center !important; }
	.porto-u-sub-heading p { text-align: center !important; }
	.vc_row-has-fill { text-align: center; padding: 2rem 1.5rem; }
	.vc_single_image-wrapper { margin-bottom: 1.5rem; }
}

 /* Estilos de la página de catálogo (Nuestros Servicios) */
 .page-container {
	 padding: 0 0 3.5rem;
 }
 
 .row.main-content-wrap {
     display: flex;
     flex-wrap: wrap;
     gap: 2.5rem;
	 justify-content: center;
     padding: 2rem;
 }

 .main-content.col-lg-12 {
	 display: flex;
	 justify-content: center;
 }

 .main-content.col-lg-12 > #content {
	 width: 100%;
	 max-width: 1050px;
 }
 
 .col-lg-3.sidebar {
     flex: 0 0 250px;
     max-width: 250px;
 }
 
 .col-lg-9.main-content {
     flex: 1;
     min-width: 0;
 }
 
 .sidebar .widget {
     background: #f9f9f9;
     padding: 1.5rem;
     border-radius: 8px;
     margin-bottom: 2rem;
 }
 
 .sidebar .widget-title {
     font-size: 1.2rem;
     font-weight: 700;
     margin: 0 0 1rem;
     padding-bottom: 0.75rem;
     border-bottom: 1px solid #e5e5e5;
 }
 
 .sidebar .product-categories {
     list-style: none;
     padding: 0;
     margin: 0;
 }
 
 .sidebar .product-categories li {
     margin-bottom: 0.5rem;
 }
 
 .sidebar .product-categories a {
     text-decoration: none;
     color: var(--text-soft);
     transition: color 0.2s ease;
     font-weight: 500;
 }
 
 .sidebar .product-categories a:hover {
     color: var(--brand-green);
 }
 
 .products-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
     gap: 2rem;
 }
 
 .product-card {
     background: #fff;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     display: flex;
     flex-direction: column;
 }
 
 .product-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 12px 30px rgba(0,0,0,0.12);
 }
 
 .product-card__image-link {
     display: block;
     overflow: hidden;
 }
 
 .product-card img {
     width: 100%;
     height: 350px;
     object-fit: cover;
     display: block;
     transition: transform 0.4s ease;
 }
 
 .product-card:hover img {
     transform: scale(1.05);
 }
 
 .product-card__content {
     padding: 1.5rem;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
 }
 
 .product-card__category {
     font-size: 0.8rem;
     text-transform: uppercase;
     color: var(--text-soft);
     margin-bottom: 0.75rem;
     font-weight: 600;
     letter-spacing: 0.5px;
 }
 
 .product-card__category a {
     color: inherit;
     text-decoration: none;
 }
 .product-card__category a:hover {
     color: var(--brand-green);
 }
 
 .product-card__title {
     font-size: 1.3rem;
     margin: 0 0 0.75rem;
     color: var(--text-dark);
     font-weight: 700;
 }
 
 .product-card__title a {
     text-decoration: none;
     color: inherit;
 }
 
 .product-card__description {
     color: var(--text-soft);
     font-size: 0.95rem;
     line-height: 1.6;
     margin: 0 0 1.5rem;
     flex-grow: 1;
 }
 
 .product-card__footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: auto;
     padding-top: 1rem;
     border-top: 1px solid #f0f0f0;
 }
 
 .product-card__price {
     font-size: 1.4rem;
     font-weight: 700;
     color: var(--brand-green);
 }
 
 .product-card__button {
     display: inline-block;
     padding: 0.6rem 1.2rem;
     background: var(--brand-green);
     color: #fff;
     text-decoration: none;
     border-radius: 6px;
     font-weight: 600;
     transition: background 0.2s ease;
     font-size: 0.9rem;
 }
 
 .product-card__button:hover {
     background: #6aa340;
 }
 
 /* Ajustes responsivos para el catálogo */
 @media (max-width: 991px) {
     .row.main-content-wrap {
         flex-direction: column;
		 justify-content: flex-start;
     }
     .col-lg-3.sidebar,
     .col-lg-9.main-content {
         flex: 1 1 100%;
         max-width: 100%;
     }
	 .main-content.col-lg-12 {
		 display: block;
	 }
     .sidebar {
         order: -1; /* Mueve la barra lateral arriba en móviles */
     }
 }

/* Shop Toolbar */
.shop-loop-before {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9e9e9;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.woocommerce-ordering {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.woocommerce-ordering label {
    font-weight: 600;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.woocommerce-ordering .orderby {
    padding: 0.5rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
}

.gridlist-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.gridlist-toggle a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    color: #666a70;
    font-size: 1.2rem;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.gridlist-toggle a:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.gridlist-toggle a.active {
    background-color: var(--brand-green);
    border-color: var(--brand-green);
    color: #fff;
}

/* Estilos para la vista de lista */
.products-grid.products-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.products-grid.products-list .product-card {
    flex-direction: row;
    align-items: stretch;
    padding: 0;
}

.products-grid.products-list .product-card:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.products-grid.products-list .product-card__image-link {
    flex: 0 0 220px;
    height: auto;
    border-radius: 0;
}

.products-grid.products-list .product-card img {
    height: 100%;
    border-radius: 12px 0 0 12px;
}

.products-grid.products-list .product-card:hover img {
    transform: none;
}

.products-grid.products-list .product-card__content {
    padding: 1.5rem 2rem;
}

.products-grid.products-list .product-card__description {
    display: block;
}

/* Iconos para el selector de vista */
.gridlist-toggle a.porto-icon-mode-grid::before {
    content: '▦';
    font-size: 1.5em;
    line-height: 1;
}
.gridlist-toggle a.porto-icon-mode-list::before {
	content: '☰';
    font-size: 1.5em;
    line-height: 1;
    display: inline-block;
}

/* Media queries para la vista de lista */
@media (max-width: 767px) {
    .products-grid.products-list .product-card {
        flex-direction: column;
    }
    .products-grid.products-list .product-card__image-link {
        flex-basis: auto;
    }
    .products-grid.products-list .product-card img {
        border-radius: 12px 12px 0 0;
    }
    .products-grid.products-list .product-card__footer {
        flex-direction: row;
    }
}

/* Product Detail Page */
.page-top {
    background-color: #ffffff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e9e9e9;
    font-size: 0.9rem;
    width: 100%;
}

@media (max-width: 767px) {
	.page-top {
		padding: 1rem 0;
	}

	.page-top .container {
		padding: 0 1rem;
	}
}

.page-top .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumbs-wrap {
    color: var(--text-soft);
}

.breadcrumbs-wrap a {
    color: var(--text-dark);
    text-decoration: none;
}

.breadcrumbs-wrap a:hover {
    color: var(--brand-green);
}

.breadcrumbs-wrap .breadcrumb_last {
    font-weight: 600;
    color: var(--text-dark);
}

.product-detail-layout {
    display: grid;
	grid-template-columns: minmax(340px, 1fr) minmax(320px, 1fr);
    gap: 3rem;
	padding: 2.2rem 0 1rem;
	align-items: start;
}

.product-main-image {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #ececec;
	box-shadow: 0 16px 40px rgba(0,0,0,0.08);
	cursor: pointer;
}

.product-main-image img {
    width: 100%;
	max-height: 560px;
	height: auto;
	object-fit: contain;
	display: block;
	margin: 0 auto;
}

.gallery-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.94);
	color: #2a2f35;
	font-size: 1.35rem;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(0,0,0,0.16);
	transition: transform 0.2s ease, background-color 0.2s ease;
	z-index: 3;
}

.gallery-nav:hover {
	background: #ffffff;
	transform: translateY(-50%) scale(1.06);
}

.gallery-nav.prev {
	left: 0.9rem;
}

.gallery-nav.next {
	right: 0.9rem;
}

.product-thumbnails {
	display: flex;
	overflow-x: auto;
	padding-bottom: 0.35rem;
	gap: 0.75rem;
	margin-top: 1rem;
	scrollbar-width: thin;
}

.product-thumbnail {
	width: 84px;
	min-width: 84px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-thumbnail img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 8px;
	display: block;
}

.product-thumbnail:hover {
	transform: translateY(-2px);
	border-color: #c7dcb1;
}

.product-thumbnail.active {
	border-color: var(--brand-green);
}

.product-detail-info {
	position: sticky;
	top: 1.5rem;
}

.product-detail-header {
	margin-bottom: 1rem;
}

.product-badge {
	display: inline-flex;
	align-items: center;
	background: #e9f2df;
	color: #36551b;
	border: 1px solid #d5e7c2;
	border-radius: 999px;
	padding: 0.35rem 0.8rem;
	font-size: 0.8rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 0.9rem;
}

.product-title {
	font-size: 2.3rem;
    margin: 0 0 1rem;
    color: var(--text-dark);
	line-height: 1.2;
}

.product-price {
    display: block;
	font-size: 2.1rem;
    font-weight: 700;
    color: var(--brand-green);
	margin-bottom: 0;
}

.product-detail-panel {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 16px;
	box-shadow: 0 14px 30px rgba(0,0,0,0.06);
	padding: 1.6rem;
}

.product-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-soft);
	margin-bottom: 1.2rem;
}

.product-description p {
	margin: 0 0 0.9rem;
}

.product-description p:last-child {
	margin-bottom: 0;
}

.product-specs {
	margin-top: 1.1rem;
	padding-top: 1rem;
	border-top: 1px solid #efefef;
}

.product-specs h3 {
	margin: 0 0 0.7rem;
	font-size: 1rem;
	color: var(--text-dark);
}

.product-specs ul {
	margin: 0;
	padding-left: 1.1rem;
}

.product-specs li {
	margin-bottom: 0.55rem;
}

.product_meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin: 1.2rem 0 1rem;
}

.product_meta span {
	background: #f5f7f9;
	border: 1px solid #e6eaed;
	border-radius: 999px;
	padding: 0.35rem 0.75rem;
	font-size: 0.86rem;
	color: #4e5d68;
}

.product_meta .sku,
.product_meta a {
	color: var(--text-dark);
	font-weight: 600;
	text-decoration: none;
}

.product-benefits-list {
	margin: 0;
	padding-left: 1.1rem;
	color: #51606b;
}

.product-benefits-list li {
	margin-bottom: 0.45rem;
}

.product-actions {
	margin-top: 1.35rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.product-actions .btn {
	border-radius: 10px;
	padding: 0.72rem 1.15rem;
	font-weight: 700;
	text-decoration: none;
}

.product-actions .btn-outline {
	background: #fff;
	color: var(--text-dark);
	border: 1px solid #d5dbe0;
}

.product-actions .btn-outline:hover {
	border-color: var(--brand-green);
	color: var(--brand-green);
}

.product-details-extra {
	margin: 0.25rem 0 0;
}

.product-tabs-wrapper {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 14px;
	padding: 1.5rem;
	box-shadow: 0 10px 22px rgba(0,0,0,0.05);
}

.product-tabs-wrapper .tab-title {
	margin: 0 0 0.9rem;
	font-size: 1.3rem;
	color: var(--text-dark);
}

.product-tabs-wrapper ul {
	margin: 0;
	padding-left: 1.2rem;
	columns: 2;
	column-gap: 2rem;
}

.product-tabs-wrapper li {
	margin-bottom: 0.55rem;
	break-inside: avoid;
}

/* ========================================================================== 
   Página Planifique en Vida
   ========================================================================== */

.planifica-main-content {
	max-width: 1100px;
	margin: 0 auto;
	padding: 3rem 1rem;
}

.section-heading {
	text-align: center;
	font-size: clamp(2rem, 4vw, 2.8rem);
	color: var(--text-dark);
	margin: 0 0 2.5rem;
	font-weight: 700;
	line-height: 1.2;
}

.section-subtitle {
	text-align: center;
	font-size: 1.15rem;
	color: var(--text-soft);
	margin: 0 0 2rem;
}

/* Sección Introducción */
.planifica-intro-section {
	margin-bottom: 4rem;
	background: linear-gradient(135deg, #f5f9f0 0%, #fafbf8 100%);
	border-radius: 16px;
	padding: 3rem 2.5rem;
	box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.intro-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.intro-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-soft);
	margin: 0;
}

/* Sección Beneficios */
.planifica-benefits-section {
	margin-bottom: 4.5rem;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2.5rem;
}

.benefit-card {
	background: #fff;
	border: 1px solid #e9e9e9;
	border-radius: 14px;
	padding: 2.5rem 2rem;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.benefit-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 35px rgba(0,0,0,0.1);
	border-color: var(--brand-green);
}

.benefit-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--brand-green), #a3d85f);
	border-radius: 50%;
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.2rem;
}

.benefit-card h3 {
	font-size: 1.3rem;
	margin: 0 0 1rem;
	color: var(--text-dark);
	font-weight: 700;
}

.benefit-card p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--text-soft);
	margin: 0;
}

/* Sección Proceso */
.planifica-process-section {
	margin-bottom: 4.5rem;
	background: #f9f9f9;
	border-radius: 16px;
	padding: 3.5rem 2rem;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-top: 2.5rem;
	position: relative;
}

.process-steps::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 10%;
	right: 10%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--brand-green), transparent);
	z-index: 0;
}

@media (max-width: 1023px) {
	.process-steps::before {
		display: none;
	}
}

.step {
	background: #fff;
	border-radius: 12px;
	padding: 2rem 1.5rem;
	text-align: center;
	position: relative;
	z-index: 1;
	box-shadow: 0 6px 18px rgba(0,0,0,0.06);
	transition: transform 0.3s ease;
}

.step:hover {
	transform: translateY(-4px);
}

.step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: var(--brand-green);
	color: #fff;
	border-radius: 50%;
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.step h3 {
	font-size: 1.15rem;
	margin: 0 0 0.8rem;
	color: var(--text-dark);
	font-weight: 700;
}

.step p {
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--text-soft);
	margin: 0;
}

/* Sección Planes */
.planifica-plans-section {
	margin-bottom: 4.5rem;
}

.plans-comparison {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 2.5rem;
}

.plan-card {
	background: #fff;
	border: 2px solid #e9e9e9;
	border-radius: 14px;
	padding: 2rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	box-shadow: 0 8px 20px rgba(0,0,0,0.05);
	display: flex;
	flex-direction: column;
}

.plan-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 40px rgba(0,0,0,0.12);
	border-color: var(--brand-green);
}

.plan-card.plan-special,
.plan-card.plan-superior {
	border-color: var(--brand-green);
	position: relative;
	box-shadow: 0 12px 30px rgba(128, 185, 79, 0.15);
}

.plan-name {
	font-size: 1.35rem;
	margin: 0 0 0.5rem;
	color: var(--text-dark);
	font-weight: 700;
}

.plan-description {
	font-size: 0.9rem;
	color: var(--text-soft);
	margin: 0 0 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #ececec;
}

.plan-features {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	flex-grow: 1;
}

.plan-features li {
	padding: 0.5rem 0;
	color: var(--text-dark);
	font-size: 0.95rem;
	line-height: 1.6;
	padding-left: 1.5rem;
	position: relative;
}

.plan-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--brand-green);
	font-weight: 700;
}

.plan-card .btn {
	width: 100%;
	text-align: center;
	padding: 0.8rem 1rem;
	text-decoration: none;
	display: inline-block;
	border-radius: 10px;
	font-weight: 700;
	transition: all 0.2s ease;
}

/* Sección FAQ */
.planifica-faq-section {
	margin-bottom: 4.5rem;
	background: #f9f9f9;
	border-radius: 16px;
	padding: 3.5rem 2rem;
}

.faq-container {
	max-width: 900px;
	margin: 2.5rem auto 0;
	display: grid;
	gap: 1.5rem;
}

.faq-item {
	background: #fff;
	border-left: 4px solid var(--brand-green);
	border-radius: 8px;
	padding: 1.5rem 1.8rem;
	box-shadow: 0 4px 12px rgba(0,0,0,0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
	transform: translateX(4px);
	box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.faq-question {
	font-size: 1.1rem;
	margin: 0 0 0.8rem;
	color: var(--text-dark);
	font-weight: 700;
}

.faq-answer {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--text-soft);
	margin: 0;
}

/* Sección CTA */
.planifica-cta-section {
	background: linear-gradient(135deg, var(--brand-green), #a3d85f);
	border-radius: 16px;
	padding: 3.5rem 2rem;
	text-align: center;
	color: #fff;
	margin-bottom: 2rem;
}

.cta-content h2 {
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	margin: 0 0 1rem;
	font-weight: 700;
	line-height: 1.2;
}

.cta-content p {
	font-size: 1.1rem;
	margin: 0 0 2rem;
	opacity: 0.95;
	line-height: 1.7;
}

.cta-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

.cta-buttons .btn {
	padding: 0.85rem 1.8rem;
	border-radius: 10px;
	font-weight: 700;
	text-decoration: none;
	display: inline-block;
	transition: all 0.2s ease;
	font-size: 1rem;
}

.cta-buttons .btn-primary {
	background: #fff;
	color: var(--brand-green);
}

.cta-buttons .btn-primary:hover {
	background: #f0f0f0;
	transform: translateY(-2px);
}

.cta-buttons .btn-outline {
	border: 2px solid #fff;
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

.cta-buttons .btn-outline:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

/* ========================================================================== 
   INFO MODERN PAGE STYLES
   ========================================================================== */

.info-modern-section {
    padding: 4rem 0 6rem;
    background-color: #ffffff;
}

.info-modern-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.info-modern-header h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: #111;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.info-modern-header p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
}

.info-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-modern-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid #eef3e9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.info-modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(128, 185, 79, 0.12);
}

.info-modern-icon {
    width: 64px;
    height: 64px;
    background: #f0f7eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--brand-green);
    transition: background 0.3s ease, color 0.3s ease;
}

.info-modern-icon svg {
    width: 32px;
    height: 32px;
}

.info-modern-card:hover .info-modern-icon {
    background: var(--brand-green);
    color: #fff;
}

.info-modern-card h3 {
    font-size: 1.35rem;
    color: #111;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.info-modern-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.info-modern-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.info-modern-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: #444;
    font-weight: 500;
}

.info-modern-list span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--brand-green);
    color: #fff;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
}

.info-modern-checks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.info-modern-checks li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #444;
}

.info-modern-checks svg {
    width: 20px;
    height: 20px;
    color: var(--brand-green);
    flex-shrink: 0;
}

.info-modern-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.info-modern-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: #eef3e9;
}

.timeline-step {
    position: relative;
    font-size: 0.95rem;
    color: #555;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.4rem;
    width: 10px;
    height: 10px;
    background: var(--brand-green);
    border-radius: 50%;
    transform: translateX(-4px);
    box-shadow: 0 0 0 3px #fff;
}

.timeline-step strong {
    color: #111;
    display: block;
    margin-bottom: 0.2rem;
}

.highlight-card {
    background: var(--brand-green);
    color: #fff;
    border-color: var(--brand-green);
}

.highlight-card .info-modern-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.highlight-card:hover .info-modern-icon {
    background: #fff;
    color: var(--brand-green);
}

.highlight-card h3,
.highlight-card p {
    color: #fff;
}

.info-modern-tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.info-modern-tags li {
    background: rgba(255,255,255,0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.info-modern-card-full {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, #fff 0%, #f8fbf5 100%);
}

.info-modern-card-full .info-modern-icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    margin-bottom: 0;
}

.info-modern-card-full .info-modern-icon svg {
    width: 48px;
    height: 48px;
}

.info-modern-card-content h3 {
    margin-bottom: 0.8rem;
}

.info-modern-card-content p {
    margin-bottom: 0;
}

.info-modern-cta {
    background: #fff;
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid #eef3e9;
}

.info-modern-cta h2 {
    font-size: 2rem;
    color: #111;
    margin-bottom: 1rem;
}

.info-modern-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.btn-modern-primary {
    display: inline-block;
    background: var(--brand-green);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(128, 185, 79, 0.3);
}

.btn-modern-primary:hover {
    background: #6aa340;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(128, 185, 79, 0.4);
}

.btn-modern-secondary {
    display: inline-block;
    background: #fff;
    color: #111;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #eaeaea;
}

.btn-modern-secondary:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .info-modern-section {
        padding: 2rem 0 3rem;
    }
    
    .info-modern-header {
        margin-bottom: 2.5rem;
    }

    .info-modern-card-full {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .info-modern-timeline {
        padding-left: 0;
    }
    
    .info-modern-timeline::before {
        display: none;
    }
    
    .timeline-step::before {
        display: none;
    }
    
    .timeline-step {
        background: #f8fbf5;
        padding: 1rem;
        border-radius: 8px;
        border-left: 3px solid var(--brand-green);
    }
    
    .info-modern-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-modern-primary,
    .btn-modern-secondary {
        width: 100%;
        display: block;
    }
}

/* ========================================================================== 
   Estilos específicos para Planifique en Vida - WPBakery Layout
   ========================================================================== */

.wpb-content-wrapper {
	width: 100%;
	display: block;
}

.vc_row.wpb_row {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0;
	padding: 0;
}

.vc_row.vc_inner {
	margin: 0;
	padding: 0;
}

.vc_column_container {
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.col-md-6 {
	flex: 0 0 50%;
	max-width: 50%;
}

.col-md-12 {
	flex: 0 0 100%;
	max-width: 100%;
}

.wpb_wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.vc_column-inner {
	padding: 0;
	margin: 0;
}

/* Primera fila - "Para tu tranquilidad" */
.vc_row.vc_inner.row.vc_custom_1696380072125 {
	min-height: 350px;
	display: flex;
	align-items: stretch;
}

/* Quita el padding lateral heredado de vc_row-has-fill para alinear al borde */
.vc_row.wpb_row.row.top-row.vc_custom_1696986768316.vc_row-has-fill,
.vc_row.wpb_row.vc_inner.row.vc_custom_1696380072125.vc_row-has-fill {
	padding-left: 0;
	padding-right: 0;
	margin-bottom: 0;
	border-radius: 0;
}

/* El wrapper intermedio del bloque superior agregaba sangria lateral */
.vc_row.wpb_row.row.top-row.vc_custom_1696986768316 > .vc_column_container.col-md-12,
.vc_row.wpb_row.row.top-row.vc_custom_1696986768316 > .vc_column_container.col-md-12 > .wpb_wrapper.vc_column-inner {
	padding-left: 0;
	padding-right: 0;
}

.vc_column_container.col-md-6.vc_custom_1696986784744 {
	background: #fff;
	padding: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-left: 15px solid #999;
	height: 100%;
}

.vc_column_container.col-md-6.vc_custom_1696986338993 {
	background: #fff;
	padding: 0;
	overflow: hidden;
}

.vc_column_container.col-md-6.vc_custom_1696986338993 img {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	display: block;
}

/* Segunda fila - "Beneficios" */
.vc_row.wpb_row.row.vc_custom_1696986969036 {
	min-height: 400px;
	display: flex;
	align-items: stretch;
}

.vc_column_container.col-md-6.vc_custom_1696987292485 {
	background: #fff;
	padding: 0;
	overflow: hidden;
}

.vc_column_container.col-md-6.vc_custom_1696987292485 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vc_column_container.col-md-6.vc_custom_1696986998932 {
	background: #fff;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 2rem;

}

.porto-u-heading {
	width: 100%;
}

.porto-u-main-heading h2 {
	font-size: 1.8rem;
	color: #595959;
	margin: 0 0 1.5rem;
	font-weight: 700;
	line-height: 1.3;
}

.porto-u-sub-heading {
	margin: 1.5rem 0;
}

.porto-u-sub-heading ul {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
}

.porto-u-sub-heading li {
	color: #888888;
	font-size: 0.95rem;
	line-height: 1.7;
	margin-bottom: 0.8rem;
	padding-left: 1.2rem;
	position: relative;
}

.porto-u-sub-heading li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--brand-green);
	font-weight: bold;
}

.porto-btn-ctn-left {
	margin-top: 1rem;
}

.porto-btn {
	display: inline-block;
	padding: 0.75rem 1.8rem;
	background: #81bb4d;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	transition: background 0.2s ease;
	border: none;
}

.porto-btn:hover {
	background: #76ad47;
}

/* Responsive */
@media (max-width: 768px) {
	.vc_row.vc_inner {
		flex-direction: column;
	}

	.col-md-6 {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.vc_column_container.col-md-6.vc_custom_1696986784744 {
		border-left: none;
		border-top: 15px solid #999;
		min-height: 200px;
		padding: 2rem;
	}

	.vc_row.vc_inner.row.vc_custom_1696380072125 {
		min-height: auto;
	}

	.vc_row.wpb_row.row.vc_custom_1696986969036 {
		min-height: auto;
	}

	.vc_column_container.col-md-6.vc_custom_1696986998932 {
		padding: 2rem;
	}

	.porto-u-main-heading h2 {
		font-size: 1.4rem;
	}
}

/* Responsive */
@media (max-width: 768px) {
	.planifica-main-content {
		padding: 2rem 1rem;
	}

	.planifica-intro-section {
		padding: 2rem 1.5rem;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.process-steps {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.plans-comparison {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.cta-buttons {
		flex-direction: column;
	}

	.cta-buttons .btn {
		width: 100%;
	}

	.faq-item {
		padding: 1.2rem 1.5rem;
	}
}

/* ========================================================================== 
   Ajustes de alineacion y proporcion - Planifique en Vida
   ========================================================================== */

body.planifique-page .page-content {
	max-width: 1160px;
	margin: 0 auto;
}

body.planifique-page .row.main-content-wrap {
	gap: 0;
	padding: 0;
}

body.planifique-page .main-content.col-lg-12 {
	display: block;
}

body.planifique-page .main-content.col-lg-12 > #content {
	max-width: none;
}

body.planifique-page .wpb-content-wrapper {
	overflow: hidden;
}

body.planifique-page .vc_column_container {
	min-width: 0;
}

body.planifique-page .vc_row.wpb_row.row.top-row {
	align-items: stretch;
	margin-bottom: 0;
}

body.planifique-page .vc_row.vc_inner.row.vc_custom_1696380072125,
body.planifique-page .vc_row.wpb_row.row.vc_custom_1696986969036 {
	min-height: 440px;
}

body.planifique-page .vc_column_container.col-md-6.vc_custom_1696986784744,
body.planifique-page .vc_column_container.col-md-6.vc_custom_1696986998932 {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 3.5rem;
}

body.planifique-page .vc_column_container.col-md-6.vc_custom_1696986998932 {
	align-items: flex-start;
}

body.planifique-page .vc_column_container.col-md-6.vc_custom_1696986338993,
body.planifique-page .vc_column_container.col-md-6.vc_custom_1696987292485 {
	min-height: 440px;
}

body.planifique-page .vc_column_container.col-md-6.vc_custom_1696986338993 img,
body.planifique-page .vc_column_container.col-md-6.vc_custom_1696987292485 img {
	height: 100%;
	min-height: 440px;
	object-fit: cover;
}

body.planifique-page .vc_column_container.col-md-6.vc_custom_1696987292485 {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
}

body.planifique-page .vc_column_container.col-md-6.vc_custom_1696987292485 img {
	min-height: 0;
	object-fit: contain;
	object-position: center;
}

body.planifique-page .porto-u-main-heading h2 {
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
	text-wrap: balance;
}

body.planifique-page .porto-u-sub-heading ul {
	max-width: 520px;
	margin-left: 0;
	margin-right: auto;
}

body.planifique-page .vc_column_container.col-md-6.vc_custom_1696986998932 .porto-u-heading {
	text-align: left;
}

body.planifique-page .vc_column_container.col-md-6.vc_custom_1696986998932 .porto-u-main-heading h2 {
	margin-left: 0;
	margin-right: 0;
	text-align: left;
}

@media (max-width: 991px) {
	body.planifique-page .vc_row.vc_inner.row.vc_custom_1696380072125,
	body.planifique-page .vc_row.wpb_row.row.vc_custom_1696986969036,
	body.planifique-page .vc_column_container.col-md-6.vc_custom_1696986338993,
	body.planifique-page .vc_column_container.col-md-6.vc_custom_1696987292485,
	body.planifique-page .vc_column_container.col-md-6.vc_custom_1696986338993 img,
	body.planifique-page .vc_column_container.col-md-6.vc_custom_1696987292485 img {
		min-height: 340px;
	}

	body.planifique-page .vc_column_container.col-md-6.vc_custom_1696986784744,
	body.planifique-page .vc_column_container.col-md-6.vc_custom_1696986998932 {
		padding: 2.5rem;
	}

	body.planifique-page .vc_column_container.col-md-6.vc_custom_1696987292485,
	body.planifique-page .vc_column_container.col-md-6.vc_custom_1696987292485 img {
		min-height: 0;
		height: auto;
	}

	body.planifique-page .vc_column_container.col-md-6.vc_custom_1696987292485 img {
		max-height: 420px;
	}
}

@media (max-width: 768px) {
	body.planifique-page #main > .container {
		width: min(100%, 96%);
		padding-left: 0;
		padding-right: 0;
	}

	body.planifique-page .row.main-content-wrap {
		padding: 0;
	}

	body.planifique-page .vc_row.wpb_row {
		flex-direction: column;
	}

	body.planifique-page .vc_column_container.col-md-6.vc_custom_1696986998932 {
		order: 1;
	}

	body.planifique-page .vc_column_container.col-md-6.vc_custom_1696987292485 {
		order: 2;
	}

	body.planifique-page .vc_row.vc_inner.row.vc_custom_1696380072125,
	body.planifique-page .vc_row.wpb_row.row.vc_custom_1696986969036,
	body.planifique-page .vc_column_container.col-md-6.vc_custom_1696986338993,
	body.planifique-page .vc_column_container.col-md-6.vc_custom_1696987292485,
	body.planifique-page .vc_column_container.col-md-6.vc_custom_1696986338993 img,
	body.planifique-page .vc_column_container.col-md-6.vc_custom_1696987292485 img {
		min-height: 240px;
	}

	body.planifique-page .vc_column_container.col-md-6.vc_custom_1696986784744,
	body.planifique-page .vc_column_container.col-md-6.vc_custom_1696986998932 {
		padding: 2rem;
	}

	body.planifique-page .porto-u-main-heading h2 {
		max-width: none;
	}

	body.planifique-page .vc_column_container.col-md-6.vc_custom_1696986998932 .porto-u-heading {
		text-align: left !important;
	}

	body.planifique-page .vc_column_container.col-md-6.vc_custom_1696986998932 .porto-u-main-heading h2 {
		margin-left: 0;
		margin-right: 0;
		text-align: left;
	}

	body.planifique-page .vc_column_container.col-md-6.vc_custom_1696986338993 img,
	body.planifique-page .vc_column_container.col-md-6.vc_custom_1696987292485 img {
		height: auto;
		max-height: 320px;
	}

	body.planifique-page .vc_column_container.col-md-6.vc_custom_1696987292485,
	body.planifique-page .vc_column_container.col-md-6.vc_custom_1696987292485 img {
		min-height: 0;
	}
}

@media (max-width: 850px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

	.product-detail-info {
		position: static;
	}

	.product-detail-panel {
		padding: 1.2rem;
	}

    .product-title {
        font-size: 2rem;
    }

	.product-tabs-wrapper ul {
		columns: 1;
	}

	.product-thumbnails {
		gap: 0.6rem;
	}

	.product-thumbnail {
		width: 74px;
		min-width: 74px;
	}

	.gallery-nav {
		width: 38px;
		height: 38px;
		font-size: 1.15rem;
	}

	.gallery-nav.prev {
		left: 0.55rem;
	}

	.gallery-nav.next {
		right: 0.55rem;
	}
}

@media (max-width: 480px) {
	.container {
		width: min(100%, 94%);
	}

	.hero-slider {
		aspect-ratio: 2 / 1;
		height: auto;
		min-height: 0;
	}

	.hero-slider .hero-slide {
		background-size: cover;
		background-position: center;
		background-color: #ffffff;
	}

	.hero-slider .hero-slide img {
		display: none;
	}

	.hero-slider .hero-slide .hero-content,
	.hero-slider .hero-slide .hero-content.hero-content-bottom {
		position: absolute;
		inset: 0;
		z-index: 2;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		padding: 1rem 1rem 4.25rem;
		min-height: 0;
		width: min(88%, 560px);
		margin: 0 auto;
	}

	.hero-slider .hero-slide .hero-content h1 {
		font-size: 1.25rem;
		line-height: 1.2;
		margin-bottom: 0.6rem;
	}

	.hero-slider .hero-slide:first-child .hero-content h1 {
		margin-top: 1.1rem;
	}

	.hero-slider .hero-slide .hero-button {
		font-size: 0.95rem;
		padding: 0.6rem 1rem;
	}

	.hero-slider .hero-slide:nth-child(2) .hero-content.hero-content-bottom {
		justify-content: flex-end;
		padding-bottom: 1.6rem;
	}

	.hero-button {
		font-size: 1rem;
		padding: 0.75rem 1.35rem;
	}

	.call-modal__card {
		padding: 1.2rem 0.9rem 0.95rem;
		border-radius: 18px;
	}

	.call-modal__option {
		grid-template-columns: 1fr;
		grid-template-areas:
			"name"
			"number"
			"cta";
		row-gap: 0.36rem;
	}

	.call-modal__cta {
		justify-self: start;
	}

	.support-text {
		padding: 1.8rem 1rem;
	}

	.plans-section .plan-card img {
		height: 210px;
	}

	.services-icons-grid {
		gap: 1.1rem;
	}

	.product-detail-layout {
		padding: 1.6rem 0 0.75rem;
		gap: 1.4rem;
	}

	.product-main-image {
		border-radius: 12px;
	}

	.product-main-image img {
		max-height: 340px;
	}

	.product-thumbnail {
		width: 66px;
		min-width: 66px;
	}

	.product-title {
		font-size: 1.65rem;
	}

	.product-price {
		font-size: 1.6rem;
	}

	.product-detail-panel,
	.product-tabs-wrapper {
		padding: 1rem;
	}

	.gallery-nav {
		width: 34px;
		height: 34px;
		font-size: 1rem;
	}
}

/* OBITUARIO STYLES */
.obituario-hero {
	background: linear-gradient(135deg, rgba(86, 186, 0, 0.95) 0%, rgba(128, 185, 79, 0.85) 100%);
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	text-align: center;
	color: #ffffff;
}

.obituario-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="20" r="1.5" fill="rgba(255,255,255,0.05)"/><circle cx="20" cy="80" r="1.5" fill="rgba(255,255,255,0.05)"/></svg>');
	opacity: 0.3;
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-20px); }
}

.obituario-container {
	position: relative;
	z-index: 1;
	max-width: 700px;
	padding: 0 2rem;
}

.obituario-icon {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.7; }
}

.obituario-hero h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	margin: 0 0 1rem;
	font-weight: 700;
	line-height: 1.2;
}

.obituario-hero p {
	font-size: clamp(1rem, 2vw, 1.3rem);
	margin: 0 0 2rem;
	line-height: 1.6;
	opacity: 0.95;
}

.coming-soon-divider {
	width: 60px;
	height: 3px;
	background: rgba(255, 255, 255, 0.5);
	margin: 1rem auto;
	border-radius: 2px;
}

.obituario-content {
	background: #f9f9f9;
	padding: 4rem 2rem;
	text-align: center;
}

.obituario-content-wrap {
	max-width: 800px;
	margin: 0 auto;
}

.obituario-content h2 {
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	color: #56ba00;
	margin-bottom: 1.5rem;
	font-weight: 700;
}

.obituario-content p {
	color: #666;
	line-height: 1.8;
	font-size: 1.05rem;
	margin-bottom: 1.5rem;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.feature-card {
	background: #ffffff;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(86, 186, 0, 0.15);
}

.feature-card-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #56ba00;
}

.feature-card h3 {
	color: #333;
	margin-bottom: 1rem;
	font-size: 1.2rem;
	font-weight: 600;
}

.feature-card p {
	font-size: 0.95rem;
	color: #777;
	margin: 0;
}

@media (max-width: 768px) {
	.obituario-hero {
		min-height: 400px;
	}

	.obituario-content {
		padding: 2rem 1rem;
	}

	.features-grid {
		gap: 1.5rem;
	}
}

/* INFORMACIÓN PAGE STYLES */
.info-hero-section {
    background: linear-gradient(135deg, rgba(86, 186, 0, 0.9) 0%, rgba(128, 185, 79, 0.95) 100%), url('../img/nosotros/asesoria-500x380.jpg') center/cover;
    background-blend-mode: multiply;
    padding: 5rem 2rem;
    border-radius: 16px;
    text-align: center;
    color: white;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(86, 186, 0, 0.2);
}

.info-page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0 0 1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    line-height: 1.2;
}

.info-page-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.info-cards-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.info-card {
    display: flex;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(86, 186, 0, 0.12);
}

.info-card:nth-child(even) {
    flex-direction: row-reverse;
}

.card-icon {
    flex: 0 0 200px;
    background: #f4fbf0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(86, 186, 0, 0.1);
}

.info-card:nth-child(even) .card-icon {
    border-right: none;
    border-left: 1px solid rgba(86, 186, 0, 0.1);
}

.icon-circle {
    font-size: 3.5rem;
    background: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(86, 186, 0, 0.15);
}

.card-content {
    flex: 1;
    padding: 3rem;
}

.card-content h3 {
    font-size: 1.8rem;
    color: #333;
    margin-top: 0;
    margin-bottom: 1rem;
}

.card-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

/* Steps */
.card-steps {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #f9f9f9;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    color: #444;
}

.step-number {
    background: var(--brand-green);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Service Items */
.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.service-item {
    color: #555;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Timeline */
.timeline-info {
    position: relative;
    padding-left: 20px;
    border-left: 3px solid rgba(86, 186, 0, 0.2);
}

.timeline-item {
	position: relative;
	margin-bottom: 1rem;
	padding-left: 1.5rem;
}

.timeline-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	width: 15px;
	height: 15px;
	background: var(--brand-green);
	border-radius: 50%;
	border: 3px solid white;
	box-shadow: 0 0 0 2px rgba(86, 186, 0, 0.2);
}

.timeline-marker {
    font-weight: 700;
    color: var(--brand-green);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-text {
    color: #555;
    font-weight: 500;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: #f4fbf0;
    border-radius: 12px;
    transition: transform 0.2s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.benefit-text {
    font-weight: 600;
    color: #444;
    font-size: 0.95rem;
}

/* Definition Box */
.definition-box {
    background: linear-gradient(to right, #f4fbf0, #fff);
    border-left: 4px solid var(--brand-green);
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
}

.definition-box p {
    margin-top: 0;
    margin-bottom: 0.5rem !important;
}

.definition-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.definition-box li {
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 500;
}

/* CTA Section */
.info-cta-section {
    text-align: center;
    background: #fff;
    padding: 4rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    margin-top: 2rem;
}

.info-cta-section h2 {
    font-size: 2rem;
    color: #333;
    margin-top: 0;
    margin-bottom: 1rem;
}

.info-cta-section p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: var(--brand-green);
    color: white;
    box-shadow: 0 5px 15px rgba(86, 186, 0, 0.3);
    border: none;
}

.cta-buttons .btn-primary:hover {
    background: #4a9e00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(86, 186, 0, 0.4);
    color: white;
}

.cta-buttons .btn-secondary {
    background: white;
    color: #333;
    border: 2px solid #e0e0e0;
}

.cta-buttons .btn-secondary:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
}

/* Responsive Design */
@media (max-width: 992px) {
    .info-card, .info-card:nth-child(even) {
        flex-direction: column;
    }

    .card-icon {
        flex: 0 0 120px;
        border-right: none !important;
        border-bottom: 1px solid rgba(86, 186, 0, 0.1);
        border-left: none !important;
    }

    .icon-circle {
        font-size: 3rem;
        width: 80px;
        height: 80px;
    }

    .card-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .info-hero-section {
        padding: 3rem 1.5rem;
    }

    .card-content h3 {
        font-size: 1.5rem;
    }
    
    .card-steps {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* ========================================================================== 
   CONTACT PAGE STYLES
   ========================================================================== */

.contact-section {
    padding: 4rem 0 6rem;
    background-color: #ffffff;
}

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.contact-header h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-header p {
    font-size: 1.1rem;
    color: var(--text-soft);
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: #ffffff;
    padding: 1.8rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(128, 185, 79, 0.1);
    border-color: var(--brand-green);
}

.contact-info-card .icon {
    width: 60px;
    height: 60px;
    background: #f4fbf0;
    color: var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.contact-info-card:hover .icon {
    background: var(--brand-green);
    color: #ffffff;
}

.contact-info-card .icon svg {
    width: 28px;
    height: 28px;
}

.contact-info-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-info-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-info-card a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-card a:hover {
    color: var(--brand-green);
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.contact-form-wrapper h3 {
    margin: 0 0 2rem;
    font-size: 1.6rem;
    color: var(--text-dark);
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    background: #fcfcfc;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 4px rgba(128, 185, 79, 0.15);
    background: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    display: inline-block;
    width: 100%;
    padding: 1.1rem;
    background: var(--brand-green);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(128, 185, 79, 0.25);
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background: #6aa340;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(128, 185, 79, 0.35);
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    line-height: 0; /* Elimina espacio en blanco debajo del iframe */
    border: 1px solid #f0f0f0;
}

/* Ajustes Responsivos para la página de Contacto */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-form-wrapper {
        order: 1; /* Mueve el formulario arriba */
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0 4rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-info {
        flex-direction: column;
    }}

/* ========================================================================== 
   PAYMENT METHODS SECTION
   ========================================================================== */
.payment-methods-section {
    background-color: #f8fbf5;
    padding: 3.5rem 0;
}

.payment-methods-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: #ffffff;
    padding: 2.5rem 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid #eef3e9;
}

.payment-text {
    flex: 1;
    min-width: 300px;
}

.payment-text h2 {
    margin: 0 0 0.8rem;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #111111;
    font-weight: 700;
}

.payment-text p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-soft);
    line-height: 1.6;
}

.payment-logos {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.payment-logos img {
    max-width: 100%;
    height: auto;
    max-height: 30%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .payment-methods-container {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .payment-logos {
        justify-content: center;
        width: 100%;
    }
}
