﻿/* style.css */

@font-face {
	font-family: 'Pristina';
	src: url('fonts/Pristina Regular.woff2') format('woff2'), url('fonts/Pristina Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Condor';
	src: url('fonts/Condor_Regular.woff2') format('woff2'), url('fonts/Condor_Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Condor';
	src: url('fonts/Condor_Bold.woff2') format('woff2'), url('fonts/Condor_Bold.woff') format('woff');
	font-weight: Bold;
	font-style: normal;
}

html {
	font-size: 16px; /* base: 1rem = 16px */
}

.video-cta {
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.video-cta:hover {
	background-color: #001A93;
	color: #FFFFFF;
	transform: scale(1.05);
}

body {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	background-color: #00136E;
}

.whatsapp-float {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	background-color: #25D366;
	color: #fff;
	border: 2px solid #fff;
	border-radius: 50px;
	padding: 0.75rem 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.95rem;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
	font-weight: 600;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	z-index: 9999;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
	transform: scale(1.05);
	background-color: #128C7E;
}

.whatsapp-float i {
	font-size: 1.5rem;
	color: #fff;
}

.whatsapp-mobile {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	width: 3.5rem;
	height: 3.5rem;
	background-color: #25D366;
	border: 2px solid #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	z-index: 9999;
}

.whatsapp-mobile svg {
	width: 1.5rem;
	height: 1.5rem;
	fill: #fff;
}

.typing-text {
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	border-right: 2px solid #fff;
	animation: typing 3s steps(25, end) infinite alternate;
}

@keyframes typing {
	from {
		width: 0;
	}

	to {
		width: 100%;
	}
}

@media (min-width: 769px) {
	.whatsapp-mobile {
		display: none;
	}
}

.main-header {
	width: 100%;
	background-color: #FFFFFF;
	padding: 0.75rem 1.25rem;
	box-shadow: 0 0.125rem 0.375rem rgba(0,0,0,0.1);
	box-sizing: border-box;
	position: relative;
	z-index: 1000;
}

.main-nav {
	display: flex;
	justify-content: center;
}

.nav-menu {
	list-style: none;
	display: flex;
	gap: 2.5rem;
	align-items: center;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	max-width: 100%;
}

.nav-menu li a {
	font-family: 'Poppins';
	font-weight: 500;
	font-size: 1.125rem;
	color: #001A93;
	text-decoration: none;
	padding: 0.5rem 1rem;
	border-radius: 6.25rem;
	transition: background-color 0.3s ease;
	display: block;
}

.nav-menu li a:hover {
	background-color: #FED604;
}

.nav-menu li a.active {
	background-color: #FED604;
	font-weight: 600;
}

.banner {
	min-height: 13.25rem;
	padding: 2.5rem 1.25rem;
	background: linear-gradient(180deg, #011059 49%, #001A93 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-sizing: border-box;
}

.logo img {
	max-width: 20rem;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.historia {
	max-height: 42.5rem;
	padding: 3.75rem 2.5rem;
	gap: 3.75rem;
	background: linear-gradient(135deg, #001A93 0%, #00082D 100%);
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.historia .picture img {
	max-width: 26.125rem;
	width: 100%;
	height: 37rem;
	object-fit: contain;
	transform: translateY(4rem);
}

.historia .texto {
	max-width: 37.5rem;
	font-family: 'Poppins';
	font-size: 1rem;
	line-height: 1.6;
}

.historia h1 {
	width: 19rem;
	height: 4.5625rem;
	font-size: 3rem;
	font-weight: bold;
	margin: 0 auto 1.25rem auto;
	font-family: 'Condor';
	line-height: 1.2;
	display: block;
	text-align: center;
}

.historia p{
	font-family: 'Poppins';
	font-weight: 600;
}

.historia .button {
	display: block;
	align-items: center;
	justify-content: center;
	width: 25rem;     
	height: 2.5rem;
	padding: 0.625rem 1.5625rem;
	gap: 0.625rem;
	background-color: #FED604;
	color: #001A93;
	text-shadow: 0 0 0.0625rem rgba(0, 0, 0, 0.2);
	font-family: 'Poppins', sans-serif;
	font-weight: 800;
	font-size: 1.5rem;
	border-radius: 6.25rem;
	text-decoration: none;
	transition: background 0.3s ease;
	margin: 1.875rem auto 0 auto;
	line-height: normal;
	text-align: center;
}

.historia .button:hover {
	background-color: #e6c200;
}

.products {
	position: relative;
	padding: 5rem 2.5rem 1.25rem 2.5rem;
	text-align: center;
	background-image: url('../lata-de-pintura.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
}

.products::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(255, 214, 4, 0.85);
	z-index: 2;
}

.products > * {
	position: relative;
	z-index: 3;
}

.button-products {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 25rem;
	height: 2.5rem;
	padding: 0.625rem 1.5625rem;
	gap: 0.625rem;
	background-color: #001A93;
	box-shadow: inset 0 0 0 62.5rem rgba(0, 0, 0, 0.2);
	color: #FFFFFF;
	text-shadow: 0 0 0.0625rem rgba(0, 0, 0, 0.2);
	font-family: 'Condor';
	font-weight: bold;
	font-size: 2rem;
	border-radius: 6.25rem;
	text-decoration: none;
	transition: background 0.3s ease;
	margin: 0 auto 3.75rem auto;
	line-height: normal;
	text-align: center;
}

.button-products:hover {
	background-color: #011059;
}

.buckets {
	display: flex;
	justify-content: center;
	gap: 2.5rem;
	flex-wrap: wrap;
}

.bucket {
	max-width: 17.8125rem;
	text-align: center;
}

.bucket img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.contact {
	display: flex;
	height: 37.5rem;
	justify-content: space-between;
	align-items: flex-start;
	background: linear-gradient(0deg, #001FB0 0%, #051872 100%);
	padding: 5rem 2.5rem;
	color: #FFFFFF;
	flex-wrap: wrap;
}

.contact-content {
	display: flex;
	justify-content: space-between;
	gap: 12.5rem;
	max-width: 75rem;
	margin: 0 auto;
}

.contact-left, .contact-right {
	flex: 1;
}

.contact-left {
	width: 45%;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.contact-left h2 {
	text-align: center;
	font-family: 'Pristina', cursive;
	font-weight: 400;
	font-size: 3.25rem;
	color: #FFFFFF;
	margin-bottom: 1.875rem;
}

.social-triangle {
	position: relative;
	width: 25rem;
	height: 22.5rem;
	margin: 0 auto;
}

.social-item {
	position: absolute;
	width: 9.6875rem;
	text-align: center;
	font-family: 'Poppins';
	font-size: 0.6875rem;
	line-height: 1.3;
	color: #FFFFFF;
}

.social-icon {
	width: 6rem;
	height: 6rem;
	border-radius: 6.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 0 auto;
}

.social-item p {
	margin-top: 0;
}

.social-icon svg {
	width: 3rem;
	height: 3rem;
}

.youtube .social-icon {
	width: 7.5rem;
	height: 7.5rem;
}

.youtube .social-icon svg {
	width: 3.75rem;
	height: 3.75rem;
}

.youtube {
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.linkedin {
	bottom: 0.625rem;
	left: 0.625rem;
}

.instagram {
	bottom: 0.625rem;
	right: 0.625rem;
}

.contact-right {
	width: 50%;
	display: flex;
	flex-direction: column;
}

.contact-right .intro {
	font-size: 1rem;
	text-align: center;
	font-family: 'Poppins';
	font-weight: 500;
	margin-bottom: 1.875rem;
	color: #FFFFFF;
	width: 29.6875rem;
}

.contact-right h2 {
	text-align: center;
	font-family: 'Condor';
	font-weight: bold;
	font-size: 3rem;
	color: #FED604;
	margin-bottom: 1.875rem;
}

form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	width: 100%;
}

.form-row {
	display: flex;
	gap: 1.25rem;
}

.form-row input {
	border-radius: 6.25rem;
}

input, textarea {
	background-color: #FFFFFF;
	border: none;
	border-radius: 2.5rem;
	padding: 0.75rem 1rem;
	color: #869BFF;
	font-size: 0.875rem;
	width: 100%;
}

textarea {
	resize: none;
	height: 8.75rem;
	width: 100%;
	box-sizing: border-box;
}

input:focus, textarea:focus {
	border: 0.125rem solid #FED604;
	outline: none;
}

.contact-right button {
	background-color: #FED604;
	color: #00136E;
	border: none;
	padding: 0.75rem;
	border-radius: 0.5rem;
	font-weight: bold;
	font-size: 1.5rem;
	cursor: pointer;
	width: 16.1875rem;
	transition: background-color 0.3s ease;
	margin: 0 auto;
}

.contact-right button:hover {
	background-color: #e6c000;
}

.video-section {
	width: 100%;
	overflow: hidden;
	background-color: #000;
}

.video-container {
	position: relative;
	width: 100%;
	max-height: 30rem;
	overflow: hidden;
}

video {
	width: 100%;
	height: auto;
	display: block;
	pointer-events: none;
	z-index: 1;
}

.video-overlay {
	position: absolute;
	bottom: 1.875rem;
	left: 1.875rem;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.video-text {
	font-size: 3rem;
	font-weight: 400;
	margin: 0 0 0.75rem 0;
	font-family: 'Pristina', cursive;
	color: #FFFFFF;
	text-shadow: 0 0 0.375rem rgba(0,0,0,0.6);
}

.video-toggle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(255, 255, 255, 0.8);
	border: none;
	border-radius: 50%;
	font-size: 2rem;
	padding: 0.75rem 1rem;
	cursor: pointer;
	z-index: 10;
	transition: background-color 0.3s ease;
}

.video-toggle:hover {
	background-color: rgba(255, 255, 255, 1);
}

.video-cta {
	width: 27.8125rem;
	max-width: 100%;
	background-color: #FFFFFF;
	color: #000000;
	font-family: 'Poppins';
	font-weight: 600;
	font-size: 1.5rem;
	padding: 0.625rem 3.125rem;
	border-radius: 0.625rem;
	text-decoration: none;
	transition: background-color 0.3s ease;
	line-height: 1;
	vertical-align: middle;
}

.legacy-section {
  position: relative;
  width: 100%;
  height: 40rem;
  background-image: url('../zulia-legado.png'); /* tu imagen original */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* para que el overlay no se salga */
}

.legacy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0D38FF;
  opacity: 0.8; /* ajustá según intensidad deseada */
  z-index: 1;
}

.legacy-overlay {
  position: relative;
  z-index: 2; /* encima de la máscara */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}

.legacy-text {
  font-family: 'Condor';
  font-size: 3rem;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.4;
  text-shadow: 0 0 0.375rem rgba(0,0,0,0.4);
  width: 65rem;
}

.origin-section {
	position: relative;
	width: 100%;
	padding: 5rem 2.5rem;
	background-color: #00136E;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.origin-overlay {
	max-width: 54.0625rem;
	text-align: center;
}

.origin-text {
	font-family: 'Poppins';
	font-size: 1.25rem;
	line-height: 1.8;
	color: #FFFFFF;
	font-weight: 500;
}

.origin-text .highlight {
	color: #FED604;
	font-weight: 600;
}

.dual-section {
	padding: 5rem 2.5rem;
	background: linear-gradient(0deg, #FFFFFF 0%, #D6D6D6 100%);
	font-family: 'Poppins';
}

.block {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2.5rem;
	margin: 0 auto 1.25rem auto;
	flex-wrap: wrap;
	width: 55%;
}

.block .text {
	flex: 1 1 25rem;
	font-size: 1.25rem;
	line-height: 1.6;
	color: #00136E;
	font-weight: 600;
	/*text-align: left;*/
	text-align: center;
}

.block .image {
	flex: 1 1 25rem;
}

.block .image img {
	width: 100%;
	box-shadow: 0 0.125rem 0.375rem rgba(0,0,0,0.1);
}

.block-bottom .image {
	order: 1;
}

.block-bottom .text {
	order: 2;
}

.dual-section2 {
	 padding: 1.5rem 2.5rem;
	 background-color: #00136E;
	 font-family: 'Poppins';
	 color: #FFFFFF;
	 max-width: 75rem;
	 margin: 0 auto;
}

.image-row {
	display: flex;
	gap: 2rem;
	justify-content: center;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.image-row img {
	width: 100%;
	max-width: 35rem;
	border-radius: 0.75rem;
	box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.2);
	object-fit: cover;
}

.text-block {
	font-size: 1.25rem;
	line-height: 1.8;
	font-weight: 500;
	margin-bottom: 3rem;
}

.text-block p {
	margin-bottom: 1rem;
}

.text-block strong {
	font-weight: 800;
	font-size: 1.5rem;
	display: block;
	margin-bottom: 0.5rem;
	color: #FED604;
}

.text-block span {
	font-weight: 500;
	color: #FFFFFF;
}

.block2 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2.5rem;
	margin: 0 auto 1.25rem auto;
	flex-wrap: wrap;
	width: 60%;
}

.block2 .text {
	flex: 1 1 1.25rem;
	font-size: 1.25rem;
	line-height: 1.6;
	color: #FFFFFF;
	font-weight: 600;
	text-align: left;
}

.zup-footer {
	background-color: #001A93;
	color: #FFFFFF;
	font-family: 'Poppins';
	font-weight: 600;
	font-size: 1.25rem;
}

.footer-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 2.5rem;
	max-width: 75rem;
	margin: 0 auto;
	padding: 1.25rem;
}

.footer-brand img {
	max-width: 11.25rem;
	height: auto;
}

.footer-nav {
	display: flex;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.footer-nav a {
	color: #FFFFFF;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-nav a:hover {
	color: #FED604; /* amarillo institucional */
}

.footer-bottom {
	display: flex;
	text-align: center;
	margin-top: 1.875rem;
	font-size: 0.9375rem;
	font-weight: 600;
	margin-top: auto;
}

/* Contenedor de ficha técnica */
.product-detail {
	padding: 1rem;
	border-radius: 0.5rem;
	max-width: 95%;
	margin: 0 auto;
}

.breadcrumb {
	font-size: 0.8rem;
	margin-bottom: 0.5rem;
	text-align: center;
}

/* Cuerpo de ficha técnica */
.product-detail-body {
	flex-direction: column;
	gap: 1rem;
	align-items: center;
}

/* Imágenes más pequeñas */
.product-images img {
	max-width: 80%;
	height: auto;
	margin: 0 auto;
	display: block;
}

/* Bloque de texto compacto */
.product-text {
	padding: 1rem;
	max-width: 100%;
	text-align: center;
}

.product-text h2 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

.product-text p {
	font-size: 0.9rem;
	line-height: 1.4;
	margin-bottom: 0.5rem;
}

/* Botones más pequeños */
.download-btn {
	font-size: 0.85rem;
	padding: 0.5rem 1rem;
	border-radius: 2rem;
	margin-top: 0.5rem;
	display: inline-block;
}

.product-text button {
	font-size: 0.85rem;
	padding: 0.5rem 1rem;
	margin-top: 0.5rem;
}

.products-section {
	width: 100%;
	display: block;
	padding: 0.75rem 0;
	background-color: #F9F9F9;
	font-family: 'Poppins';
}

.products-section .section-title {
	text-align: center;
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 2.5rem;
	color: #001A93;
}

.product-filters {
	display: flex;
	justify-content: center;
	gap: 1.25rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}

.product-filters .filter-btn {
	background-color: #001A93;
	color: #FFFFFF;
	border: none;
	padding: 0.625rem 1.25rem;
	font-weight: 500;
	border-radius: 0.375rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.product-filters .filter-btn:hover,
.product-filters .filter-btn.active {
	background-color: #FED604;
	color: #001A93;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(13.75rem, 1fr));
	gap: 1rem;
	width: 100%;
	max-width: 46.25rem;
	margin: 0 auto 0.75rem auto;
	padding: 0 1rem;
	box-sizing: border-box;
 }

.product-card {
	background-color: #FED604;
	border-radius: 0.625rem;
	box-shadow: 0 0.0625rem 0.25rem rgba(0,0,0,0.06);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: transform 0.3s ease;
	width: 100%;
	height: 12.1875rem;
	padding: 0;
	cursor: default;
}

.product-card:hover {
	cursor: pointer;
}

.product-image {
	width: 100%;
	height: 8.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.625rem;
}

.product-image img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

.product-title {
	background-color: #FFF1AB;
	width: 100%;
	padding: 0.375rem 0.625rem;
}

.product-title h3 {
	color: #001A93;
	font-size: 0.9375rem;
	font-weight: 600;
	margin: 0;
}

.product-detail {
	max-width: 67.5rem;
	margin-left: auto;
	margin-right: auto;
	padding: 2.5rem;
	background-color: #fff;
	border-radius: 0.75rem;
	box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.1);
}

.product-detail-body {
	display: flex;
	flex-direction: row;
	gap: 2.5rem;
	flex-wrap: nowrap;
	align-items: center;
}

.product-images {
	flex: 1;
	width: 100%;
	max-width: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

.product-images img {
	width: 31.25rem;
	height: auto;
}

.product-text {
	flex: 1;
	min-width: 17.5rem;
	max-width: 30rem;
	background-color: #FED604;
	padding: 1.875rem 1.5rem;
	border-radius: 0.625rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.product-text h2 {
	font-size: 1.5rem;
	font-family: 'Condor';
	font-weight: bold;
	color: #011059;
	margin-bottom: 1rem;
	text-align: left;
}

.product-text p {
	font-size: 1rem;
	font-weight: 500;
	color: #001A93;
	margin-bottom: 0.625rem;
	line-height: 2.5;
	text-align: left;
	font-family: 'Poppins';
}

.download-btn {
	background-color: #001A93;
	color: #FFFFFF;
	padding: 0.75rem 1.5rem;
	border-radius: 6.25rem;
	text-decoration: none;
	font-weight: 600;
	text-align: center;
	margin: 1.25rem auto auto auto;
	width: fit-content;
	transition: background-color 0.3s ease;
	font-family: 'Poppins';
}

.download-btn:hover {
	background-color: #fff;
	color: #001A93;
}

.product-text button {
	margin-top: 1.25rem;
	background-color: #fff;
	color: #001A93;
	border: 0.125rem  solid #001A93;
	padding: 0.625rem 1.25rem;
	border-radius: 0.375rem;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.3s ease;
	width: fit-content;
}

.product-text button:hover {
	background-color: #001A93;
	color: #fff;
}

.product-card.hidden {
	display: none;
}

.catalog-banner {
	background-color: #FED604;
	padding: 2rem 1.25rem;
	text-align: center;
}

.catalog-content {
	max-width: 75rem;
	margin: 0 auto;
}

.catalog-button {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	background-color: #FFFFFF;
	color: #001A93;
	font-family: 'Poppins';
	font-weight: 600;
	font-size: 1.25rem;
	padding: 0.75rem 1.5rem;
	border-radius: 6.25rem;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.catalog-button:hover {
	background-color: #001A93;
	color: #FFFFFF;
	box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
}

.catalog-button i {
	font-size: 1.25rem;
}

.noticias-grid {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	max-width: 60rem;
	margin: 0 auto;
	padding: 0 1rem 2rem 1rem;
	box-sizing: border-box;
}

.noticia-card {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	border: 0px solid #e6e6e6;
	border-radius: 0.75rem;
	overflow: hidden;
	box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.08);
	max-width: 800px;
}

.noticia-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.12);
}

.noticia-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.noticia-body {
	padding: 1.25rem;
}

.noticia-titulo {
	font-family: 'Condor';
	font-weight: bold;
	font-size: 1.5rem;
	color: #00136E;
	margin: 0 0 0.5rem 0;
	line-height: 1.2;
	text-align: left;
}

.noticia-fecha {
	font-family: 'Poppins';
	font-weight: 500;
	font-size: 0.875rem;
	color: #00136E;
	margin-bottom: 0.75rem;
}

.noticia-extracto {
	font-family: 'Poppins';
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.6;
	color: #00136E;
	margin-bottom: 1rem;
	text-align: justify;
}

.noticia-contenido {
	font-family: 'Poppins';
	font-weight: 500;
	font-size: 1rem;
	color: #333;
	line-height: 1.6;
	margin-bottom: 2rem;
	text-align: justify;
}

.btn-leer {
	display: block;
	background-color: #00136E;
	color: #FED604;
	font-family: 'Poppins';
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0.625rem 1.25rem;
	border-radius: 2rem;
	text-decoration: none;
	transition: background-color 0.2s ease;
	margin: 1rem auto 0;
	width: fit-content;
}

.btn-leer:hover {
	background-color: #e6c000;
}

.page-title {
	width: 27rem;
	height: 4.5625rem;
	font-size: 3rem;
	font-weight: bold;
	margin: 0 auto 1.25rem auto;
	font-family: 'Condor';
	line-height: 1.2;
	display: block;
	text-align: center;
	color: #FFFFFF;
	margin: 3rem auto auto auto;
}

#noticias .noticia-card {
	margin: 2rem auto;
	max-width: 60rem;
}

#noticias .noticia-body {
	padding: 2rem;
}

#noticias .noticia-titulo {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 1rem;
}

#noticias .noticia-contenido {
	margin-top: 1rem;
	margin-bottom: 2rem;
}

.carousel {
	overflow: hidden;
	width: 100%;
	max-width: 75rem;
	margin: 0 auto;
}

.carousel-track {
	display: flex;
	align-items: center;
	gap: 2rem;
	transition: transform 0.5s ease;
}

.bucket {
	flex: 0 0 auto;
	width: 14rem;
	text-align: center;
}

.bucket img {
	height: 10rem;
	object-fit: contain;
	display: block;
	margin: 0 auto;
}

.menu-toggle {
	 display: none;
	 background-color: #FED604;
	 border: none;
	 border-radius: 50%;
	 font-size: 1.5rem;
	 cursor: pointer;
	 color: #001A93;
	 padding: 0.5rem 0.75rem;
}

.current-page {
	display: none;
	font-family: 'Poppins';
	font-weight: 600;
	color: #00136E;
	margin-left: 1rem;
}

.mute-toggle {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background-color: rgba(255,255,255,0.8);
	border: none;
	border-radius: 50%;
	padding: 0.5rem;
	cursor: pointer;
	z-index: 10;
	transition: background-color 0.3s ease;
}

.mute-toggle:hover {
	background-color: rgba(255,255,255,1);
}

/* Responsive */
/* Desktop grande (1920px) */
@media (min-width: 1600px) {
	.contact-content {
		gap: 10rem;
	}

	.legacy-text {
		font-size: 3.5rem;
	}
}

@media (max-width: 1366px) {
	.historia {
		flex-direction: column;
		gap: 2rem;
	}

	.product-detail-body {
		flex-direction: column;
	}

	.products .button-products {
		width: 20rem;
	}

	.contact-right .intro {
		width: 80%;
	}
}

@media (max-width: 1024px) {
	.block, .block2 {
		width: 100%;
		flex-direction: column;
	}

	.buckets {
		gap: 2rem;
	}

	.legacy-text {
		width: 90%;
		font-size: 2.5rem;
	}
}


@media (min-width: 769px) {
	.product-card {
		transition: transform 0.3s ease;
	}

	.product-card:hover {
		cursor: pointer;
		animation: bounce 0.4s ease;
	}

	@keyframes bounce {
		0% {
			transform: translateY(0);
		}

		30% {
			transform: translateY(-5px);
		}

		60% {
			transform: translateY(3px);
		}

		100% {
			transform: translateY(0);
		}
	}
}

@media (max-width: 768px) {
	.whatsapp-float{
		display: none;
	}

	.logo img {
		max-width: 12rem;
	}

	.zup-footer {
		padding: 1rem;
		font-size: 0.85rem;
	}

	.footer-content {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		gap: 0.1rem;
		text-align: center;
	}

	.footer-brand img {
		max-width: 6rem;
		height: auto;
	}

	.footer-nav {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		gap: 0.1rem;
	}

	.footer-nav a {
		font-size: 0.75rem;
		padding: 0.25rem 0.25rem;
	}

	.footer-bottom {
		margin: 0;
		font-size: 0.65rem;
	}

	.button-products,
	.historia .button {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto;
		width: auto;
		max-width: 12rem;
		font-size: 0.85rem;
		padding: 0.4rem 0.8rem;
		line-height: 1.2;
		text-align: center;
		border-radius: 6.25rem;
	}

	.button-products {
		margin-bottom: 1.5rem;
	}

	.contact-content {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		padding: 1rem;
	}

	.contact-right {
		width: 100%;
		background: none;
		text-align: center;
		margin-top: 0;
	}

	.contact-left {
		width: 100%;
		padding: 0;
		margin-bottom: 0.5rem;
		text-align: center;
	}

	.contact {
		height: auto;
		padding: 2rem 1rem;
		flex-direction: column;
		align-items: center;
	}

	.contact-left h2 {
		margin-bottom: 0.1rem;
		text-align: center;
		font-size: 2rem;
	}

	/* Social buttons: de triángulo a fila */
	.social-triangle {
		position: static;
		width: auto;
		height: auto;
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 0.5rem;
	}

	.social-item {
		position: static !important;
		margin: 0 !important;
		flex: 0 0 auto;
		max-width: 4.5rem;
		text-align: center;
	}

	.social-item svg {
		width: 40px;
		height: auto;
	}

	.social-item p {
		display: none;
	}

	.contact-right h2 {
		font-size: 2rem;
		margin-bottom: 1rem;
	}

	.contact-right .intro {
		width: 100%;
		font-size: 0.9rem;
		margin-bottom: 1rem;
	}

	/* Formulario */
	.form-row {
		flex-direction: column;
		gap: 0.75rem;
	}

	.contact-right input {
		width: 100%;
		max-width: 16rem;
		font-size: 1rem;
		padding: 0.5rem 0.75rem;
		margin: 0 auto;
		display: block;
	}

	.contact-right textarea {
		width: 100%;
		max-width: 20rem;
		font-size: 1rem;
		padding: 0.5rem 0.75rem;
		margin: 0 auto;
		display: block;
	}

	.contact-right button {
		width: auto;
		max-width: 8rem;
		font-size: 0.85rem;
		padding: 0.5rem 1rem;
		margin: 1rem auto 0 auto;
		display: block;
	}

	.video-text {
		font-size: 1.2rem;
		font-weight: 600;
		color: #fff;
		text-align: center;
		margin-top: 1rem;
		text-shadow: 0 0 6px rgba(0,0,0,0.6);
	}

	.video-overlay {
		position: absolute;
		inset: 0;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		padding: 1rem;
		z-index: 10;
	}

	#videoToggle {
		bottom: 0.5rem;
		right: 0.5rem;
		padding: 0.2rem;
		width: 48px;
		height: 48px;
	}

	#videoToggle svg {
		width: 14px;
		height: 14px;
	}

	.legacy-text {
		font-size: 1.5rem;
		line-height: 1.4;
	}

	.origin-text {
		font-size: 1rem;
		line-height: 1.6;
	}

	.dual-section .text p,
	.dual-section2 .text-block {
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.dual-section2 .text-block strong {
			font-size: 1.2rem;
		}

	/* Reducir separación entre imágenes */
	.dual-section {
		padding: 2rem 1rem; /* menos aire arriba y abajo */
	}

	.block {
		flex-direction: column; /* apila texto e imagen */
		gap: 1.25rem; /* separación justa entre elementos */
		width: 100%; /* ocupa todo el ancho */
	}

	.block .text,
	.block .image {
		flex: 1 1 auto; /* ya no fuerza 25rem */
		width: 90%;
	}

	.block .text {
		font-size: 1rem;
		line-height: 1.5;
		text-align: center;
		margin: 0;
	}

	.dual-section .block:last-child {
		margin-bottom: 0; /* quita espacio debajo del último bloque */
	}

	.block .text p {
		margin: 0.75rem 0; /* separación mínima entre párrafos */
	}

	.block .image img {
		max-width: 100%;
		height: auto;
		display: block;
		margin: 0 auto;
	}

	.image-row {
		gap: 1rem; /* menos separación entre fotos */
		margin-bottom: 1.5rem; /* menos espacio debajo */
		flex-direction: column; /* apila fotos en móviles */
	}

	.image-row img {
		max-width: 100%; /* ocupa todo el ancho disponible */
	}

	/* Reducir espacio entre texto y fotos */
	.dual-section2 .text-block {
		margin-bottom: 1.5rem; /* menos aire entre bloques */
	}

	.page-title {
		margin: 1rem auto 1rem auto;
		font-size: 2.25rem;
	}

	#noticias .noticia-card {
		margin: 1.5rem auto;
		max-width: 100%;
	}

	#noticias .noticia-body {
		padding: 1.25rem;
	}

	.noticia-titulo {
		font-size: 1.5rem;
		text-align: center;
	}

	.noticia-contenido {
		font-size: 0.95rem;
		line-height: 1.5;
	}

	.main-nav {
		display: flex;
		align-items: center;
		justify-content: space-between;
		position: relative;
	}

	.menu-toggle {
		display: block;
		background-color: #FFFFFF;
		border: none;
		border-radius: 50%;
		font-size: 1.5rem;
		cursor: pointer;
		color: #00136E;
		padding: 0.5rem 0.75rem;
	}

	.current-page {
		display: block;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}

	.nav-menu {
		display: none;
		flex-direction: column;
		gap: 1rem;
		background-color: #fff;
		padding: 1rem;
		border-radius: 0.5rem;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
	}

	.nav-menu.open {
		display: flex;
	}

	.carousel {
		overflow-x: auto;
		scroll-snap-type: x mandatory;
	}

	.carousel-track {
		gap: 1rem;
	}

	.bucket {
		width: 10rem;
		scroll-snap-align: start;
	}

	.historia {
		position: relative;
		background: linear-gradient(135deg, #001A93 0%, #00082D 100%);
		color: #fff;
		padding: 3rem 2rem;
		text-align: center;
		overflow: hidden;
	}

	.historia .picture {
		display: none;
	}

	.historia::before {
		content: "";
		position: absolute;
		inset: 0;
		background-image: url('../pintor-zupintura.png');
		background-repeat: no-repeat;
		background-position: bottom center;
		background-size: contain;
		opacity: 0.3;
		z-index: 1;
	}

	.historia .texto {
		position: relative;
		z-index: 2;
		max-width: 40rem;
		margin: 0 auto;
	}

	.product-detail-body {
		flex-direction: column;
		align-items: center;
	}

	.product-images img {
		width: 100%;
		height: auto;
	}

	html, body {
		overflow-x: hidden;
	}

	img, video {
	  max-width: 100%;
	  height: auto;
	}

	.video-cta {
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto;
		width: 100%;
		max-width: 18rem;
		font-size: 0.85rem;
		padding: 0.75rem 1rem;
		border-radius: 0.625rem;
	}

	.product-grid {
		grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
		max-width: 100%;
		gap: 0.9rem;
		padding: 0 0.5rem;
		justify-items: center;
		margin: 0 auto;
	}

	.product-card {
		height: 80%;
		padding: 0.25rem;
	}

	.product-image img {
		max-height: 5rem;
		object-fit: contain;
	}

	.product-title h3 {
		font-size: 0.8rem;
		text-align: center;
	}

	.catalog-button {
		font-size: 0.85rem;
		padding: 0.5rem 1rem;
		max-width: 90%;
		margin: 0 auto;
	}

	/* Banner catálogo más compacto */
	.catalog-banner {
		padding: 1rem;
	}

	.catalog-button {
		font-size: 0.9rem;
		padding: 0.5rem 1rem;
		max-width: 90%;
		margin: 0 auto;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.historia h1 {
		font-size: 2rem;
		width: 100%;
	}

	.button-products {
		width: 100%;
				font-size: 1.25rem;
	}

	.legacy-text {
		font-size: 1.75rem;
	}

	.page-title {
		margin: 0.75rem auto 0.75rem auto;
		font-size: 2rem;
	}

	#noticias .noticia-body {
		padding: 1rem;
	}

	.noticia-titulo {
		font-size: 1.25rem;
	}

	.dual-section {
		padding: 1.5rem 0.75rem;
	}

	.block {
		gap: 1rem; /* aún más compacto */
		margin-bottom: 1.5rem;
	}

	.block .text {
		font-size: 0.9rem;
		line-height: 1.4;
	}

	.block .text p {
		margin: 0.5rem 0;
	}
}