html, body {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    background-color: #ffffff; 
    color: #20170e; 
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    color: #7d52d2; 
}

h1 {
    font-size: 3em;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5em; 
    margin-bottom: 15px;
}

h3 {
    font-size: 2em;
    line-height: 1.4;
    margin-bottom: 15px;
}

h4 {
    font-size: 1.5em;
    line-height: 1.5;
    margin-bottom: 10px;
}

h5 {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 10px;
}

h6 {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

img {
    max-width: 100%;
    height: auto;
}

input:focus, select:focus, button:focus, textarea:focus {
    outline: none;
    border: 2px solid #7d52d2; /
}

a {
    color: #7d52d2; 
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover, a:focus {
    color: #7d52d2; 
}

/*---------------------
Helper CSS
-----------------------*/

.section-title {
    text-align: center;
    margin-bottom: 22px;
}

.section-title span {
    font-size: 14px;
    color: #1f160f; /* Azul representativo de Colombia */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 44px;
    color: #1f160f;
    line-height: 58px;
    margin-top: 10px;
}

.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.spad {
    padding-top: 100px;
    padding-bottom: 100px;
}

.spad-2 {
    padding-top: 50px;
    padding-bottom: 70px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
    color: #fff;
}
/* Buttons */
.primary-btn {
    display: inline-block;
    font-size: 14px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    position: relative;
    background-color: #93B4A1;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.primary-btn:after {
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: #494949;
    content: "";
}

/* Preloder */
#preloder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #ffffff;
}
.loader {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
    border-radius: 50%;
    background: url('load.jpeg') center center no-repeat; /* Reemplaza 'ruta-de-la-imagen.png' con la ruta de tu imagen */
    background-size: cover;
    animation: loader-rotate 5s linear infinite; /* Aumenté la duración a 2 segundos */
    -webkit-animation: loader-rotate 5s linear infinite;
}

@keyframes loader-rotate {
    0%, 100% {
        transform: rotate(0deg);
        border: 4px solid #7d52d2; /* Amarillo (color de la bandera colombiana) */
        border-left-color: transparent;
    }

    50% {
        transform: rotate(180deg);
        border: 4px solid #7d52d2; /* Azul (color de la bandera colombiana) */
        border-left-color: transparent;
    }
}

@-webkit-keyframes loader-rotate {
    0%, 100% {
        -webkit-transform: rotate(0deg);
        border: 4px solid #d8ae5e;
        border-left-color: transparent;
    }

    50% {
        -webkit-transform: rotate(180deg);
        border: 4px solid #d8ae5e;
        border-left-color: transparent;
    }
}

/* Header Primera barra*/
.header-section.header-normal .menu-item {
    box-shadow: 0px 12px 15px rgba(36, 11, 12, 0.05);
}

.modal-open .header-section {
    display: none;
}

.top-nav .tn-left li {
    list-style: none;
    display: inline-block;
    font-size: 16px;
    color: #000000;
    font-weight: 500;
    padding: 14px 0 12px;
    margin-right: 64px;
    position: relative;
}

.top-nav .tn-left li:after {
    position: absolute;
    right: -32px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #1f160f;
    content: "";
}

.top-nav .tn-left li:last-child {
    margin-right: 0;
}

.top-nav .tn-left li:last-child:after {
    display: none;
}

/* Header*/
.menu-item {
    position: relative;
    z-index: 9;
}

.menu-item .logo {
    padding: -10px 0;
    text-align: center; /* Añadido para centrar la imagen horizontalmente */
}

.menu-item .logo img {
    height: auto; /* Ajustar la altura proporcionalmente */
    max-width: 100%; /* Hacer que la imagen ocupe el 100% del ancho del contenedor */
}

.menu-item .logo a {
    display: inline-block;
}

.menu-item .nav-menu {
    text-align: right;
}

.menu-item .nav-menu .mainmenu {
    display: inline-block;
}

.menu-item .nav-menu .mainmenu li {
    list-style: none;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.menu-item .nav-menu .mainmenu li.active a:after {
    opacity: 1;
}

.menu-item .nav-menu .mainmenu li:hover > a:after {
    opacity: 1;
}

.menu-item .nav-menu .mainmenu li:hover .dropdown {
    top: 77px;
    opacity: 1;
    visibility: visible;
    transition: top 0.3s ease, opacity 0.3s ease, visibility 0.3s ease; /* Añadido: transiciones suaves */
}

.menu-item .nav-menu .mainmenu li a {
	font-size: 16px;
    color: #2b2f30;
    margin-right: 30px;
	font-weight: 300; /* Cambiado a 300 para Montserrat Light */
    font-family: 'Montserrat', sans-serif; /* Agregado para cambiar el tipo de letra */
	font-weight: bold; /* Agregado para hacer el texto en negrita */
    display: inline-block;
    padding: 27px 0;
    position: relative;
    transition: all 0.3s;
	
}

.menu-item .nav-menu .mainmenu li a:hover {
    color: #3b5961; /* Cambio de color al hacer hover */
}

.menu-item .nav-menu .mainmenu li a:after {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 2px;
    background: #7d52d2;
    content: "";
    opacity: 0;
    transition: opacity 0.3s ease; /* Añadido: transición suave en la línea inferior al hacer hover */
}

.menu-item .nav-menu .mainmenu li:hover a:after {
    opacity: 1;
}

.menu-item .nav-menu .mainmenu li a:after {
    position: absolute;
    left: 50%; /* Alineación al centro */
    bottom: 0;
    width: 0;
    height: 2px;
    background: #7d52d2;
    content: "";
    opacity: 0;
    transition: all 0.3s;
    transform: translateX(-50%); /* Añadido: centrar la línea */
}

.menu-item .nav-menu .mainmenu li:hover a:after {
    width: 100%; /* Ancho total al hacer hover */
    opacity: 1;
}

.menu-item .nav-menu .mainmenu li .dropdown {
    position: absolute;
    left: 50%;
    top: 100%;
    width: 180px;
    background: #ffffff;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    transform: translateX(-50%); /* Añadido: centrar el dropdown */
    box-shadow: 0px 9px 15px rgba(25, 25, 26, 0.05);
}

.menu-item .nav-menu .mainmenu li .dropdown li {
    list-style: none;
    display: block;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
}

.menu-item .nav-menu .mainmenu li:hover .dropdown li {
    opacity: 1;
    transform: translateY(0);
}

.menu-item .nav-menu .mainmenu li .dropdown li a {
    font-size: 16px;
    color: #19191a;
    display: block;
    text-align: left;
    padding: 8px 15px;
    transition: color 0.3s;
}

.menu-item .nav-menu .mainmenu li .dropdown li a:hover {
    color: #2b2f30;
}

.menu-item .nav-menu .nav-right {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.menu-item .nav-menu .nav-right i {
    font-size: 20px;
    color: #2b2f30;
    cursor: pointer;
    margin-right: 8px;
}

.menu-item .nav-menu .nav-right .search-icon {
    font-size: 20px;
    color: #19191a;
    cursor: pointer;
    margin-right: 8px;
}

/* Canvas */
.canvas-open {
    display: none;
}

.offcanvas-menu-wrapper {
    display: none;
}

/* Inicio Pantalla de Inicio index.html */
/*---Hero------*/
.hero-section {
	position: relative;
	padding-top: 60px;
	padding-bottom: 100px;
}
.hero-section .container {
	position: relative;
	z-index: 5;
}
.hero-text {
	padding-top: 180px;
}

.hero-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 3, 3, 0.5); /* Fondo semitransparente (ajusta el valor de alfa según sea necesario) */
    z-index: -1; /* Coloca el fondo detrás del texto */
}
.hero-text h1 {
   
    line-height: 90px;
    color: #ffffff;
    margin-bottom: 25px;
    font-family: "Baskerville Old Face", serif;
}

.hero-text p {
	text-align: justify;
    color: #ffffff;
    line-height: 28px;
    margin-bottom: 35px;
    font-family: 'Arial', sans-serif;
}

.hero-section h1 {
    font-size: 70px; /* Tamaño de fuente del encabezado principal */
    font-weight: 800; /* Peso de fuente para mayor impacto */
    margin-bottom: 20px; /* Espaciado inferior del encabezado principal */
	
}

.hero-section p {
    font-size: 18px; /* Tamaño de fuente del párrafo */
    font-weight: 400; /* Peso de fuente normal */
    line-height: 1.5; /* Altura de línea para una mejor legibilidad */
    max-width: 600px; /* Ancho máximo del párrafo */
    margin-bottom: 30px; /* Espaciado inferior del párrafo */
	
}

.hero-section a {
    display: inline-block;
    padding: 15px 30px; /* Espaciado interno del enlace */
    font-size: 16px; /* Tamaño de fuente del enlace */
    font-weight: 700; /* Peso de fuente para resaltar */
    text-decoration: none;
    color: #fff; /* Color de texto del enlace */
    background-color: #19191a; /* Color de fondo del enlace */
    border-radius: 5px; /* Bordes redondeados */
    transition: background-color 0.3s ease-in-out;
}

.hero-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.hero-slider.owl-carousel .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.hero-slider.owl-carousel .owl-dots button {
    height: 10px;
    width: 10px;
    background: #93AAB4; /* Azul moderado */
    opacity: 0.7;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
}

.hero-slider.owl-carousel .owl-dots button.active {
    width: 30px;
    background: #A193B4; /* Rojo claro */
    border-radius: 15px;
    opacity: 1;
}

.hero-slider.owl-carousel .owl-dots button:last-child {
    margin-right: 0;
}


/* Añadido un gradiente de fondo para resaltar el slider */
.hero-slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* Estilos mejorados para el contenido dentro del slider */
.hero-slider .owl-stage-outer, .hero-slider .owl-stage, .hero-slider .owl-item, .hero-slider .hs-item {
    height: 100%;
    overflow: hidden;
}

/* Agregado un sombreado sutil al texto dentro del slider */
.hero-slider .hs-item {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.hero-slider h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-slider p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Cambiado el estilo de transición para un efecto más suave */
.hero-slider .owl-item {
    transition: transform 0.5s ease-in-out;
}

/*---- About US ------*/
.about-text {
    text-align: justify;
    padding: 0 35px;
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    color: #595960;
    font-weight: 500;
    line-height: 1.6;
}

/* Estilos específicos para diferentes párrafos */
.about-text p.f-para {
    margin-bottom: 10px;
}

.about-text p.s-para {
    margin-bottom: 35px;
}

/* Estilos para el botón sobre nosotros */
.about-text .about-btn {
    display: inline-block;
    padding: 10px 20px;
    color: #ffffff;
    background-color: #7d52d2;
    border-radius: 25px; /* Hemos redondeado más los bordes para un aspecto delicado */
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease; /* Efecto de transición en el color de fondo y texto */
}

.about-text .about-btn:hover {
    background-color: #7d52d2	;
    color: #ffffff; /* Cambiamos el color del texto al pasar el ratón para mejorar la visibilidad */
}

/* Estilos para la imagen sobre nosotros */
.about-pic img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px; /* Añadido un margen inferior para separar las imágenes */
}

/*---------------------
  Service Section
-----------------------*/

.services-section {
    padding-bottom: 10px;
	margin-bottom: 16px;
  }

.services-section .section-title {
    margin-bottom: 16px;
    text-align: center; /* Alineación del título al centro */
}

/* Estilos al hacer hover sobre los íconos */
[class^="flaticon-"]:hover:before,
[class*=" flaticon-"]:hover:before {
    color: #7d52d2; /* Cambiado el color al hacer hover a un tono de naranja */
}

/* Estilos al hacer hover sobre los elementos de servicio */
.service-item {
    text-align: center;
    padding: 30px 35px 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}
/* Estilos específicos para los párrafos (<p>) */
.service-item p {
    text-align: center;
    font-family: Arial, sans-serif; /* Tipo de letra Arial */
}

/* Estilos específicos para los títulos (<h4>) */
.service-item h4 {
    text-align: center;
    font-family: 'Baskerville Old Face', serif; /* Tipo de letra Baskerville Old Face */
    margin-bottom: 15px;
}

.service-item:hover {
    background: linear-gradient(to right, rgba(163, 167, 168, 0.8), rgba(180, 172, 147, 0.8));
    transform: translateY(-20px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-item:hover i {
    color: #ffffff; /* Cambiado el color del ícono al hacer hover */
}

.service-item:hover h4 {
    color: #ffffff; /* Cambiado el color del título al hacer hover */
}

.service-item:hover p {
    color: #ffffff; /* Cambiado el color del párrafo al hacer hover */
}
.service-item img {
    width: 100px; /* Cambia este valor según el tamaño deseado */
    height: auto; /* Esto asegura que la altura se ajuste proporcionalmente */
}

/* Fin Pantalla de Inicio index.html */


/* galeria.php */
/* Estilos generales de .gallery-item */
.gallery-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 50px; /* Ajusta la separación vertical */
    margin-right: 15px; /* Ajusta la separación horizontal */
    display: inline-block; /* Hace que los elementos floten en línea */
    vertical-align: top; /* Alinea los elementos en la parte superior */
    transition: transform 0.3s ease-in-out;
}

.gallery-item img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Estilos específicos para pantallas pequeñas (menos de 768px) */
@media only screen and (max-width: 767px) {
    .container {
        text-align: center; /* Centra el contenido de .container en dispositivos pequeños */
    }

    .gallery-item {
        margin-bottom: 30px; /* Ajusta la separación vertical en dispositivos pequeños */
        margin-right: 0; /* Elimina la separación horizontal en dispositivos pequeños */
        display: block; /* Hace que los elementos ocupen el ancho completo en dispositivos pequeños */
    }
}

/* Fin galeria.php */

/* Produccion.php */
.produccion-details-section {
	padding-top: 0;
	padding-bottom: 80px;
}
.produccion-details-item {
	margin-bottom: 100px;
}

.produccion-details-item .rd-text table tbody tr td {
	font-size: 16px;
	color: #19191a;
	line-height: 36px;
}

.produccion-details-item .rd-text p {
	color: #707079;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.section-title h2 {
	animation: fadeInUp 1s ease-out;
	transition: color 0.3s ease-in-out;
}

.section-title h2:hover {
	color: #7d52d2; /* Cambia este color según tu preferencia */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.rd-text {
    animation: fadeInUp 1s ease-out;
}
/* Fin Produccion.php */

.contact-section {
	padding-top: 80px;
	padding-bottom: 80px;
}
.contact-text h2 {
	font-size: 44px;
	color: #19191a;
	margin-bottom: 24px;
}
.contact-text p {
	color: #707079;
}
.map {
	height: 10px;
	-webkit-box-shadow: 0px 14px 35px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 14px 35px rgba(0, 0, 0, 0.15);
	margin-top: 10px;
}
.map iframe {
	width: 100%;
}
/* Estilos para la sección de contacto */
.services-section .service-item {
    text-align: center;
    margin-bottom: 30px;
}
.services-section .service-item i {
    font-size: 36px;
    color: #efba50;
}
.services-section .service-item h4 {
    margin-top: 20px;
    font-size: 20px;
    color: #ffffff;
}
.services-section .service-item p {
    color: #777;
}
.services-section .service-item a {
    color: #efba50;
}
.services-section .map {
    height: 200px;
    -webkit-box-shadow: 0px 14px 35px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 14px 35px rgba(0, 0, 0, 0.15);
    margin-top: 10px;
}
.services-section .map iframe {
    width: 100%;
}
.footer-section {
	background: #f5f4f3;	
	border-top: 4px solid #7d52d2; /* Cambiado el color del borde a un azul inspirado en la bandera de Colombia */
}
.footer-section .footer-text {
	padding: 80px 0 30px;
}
.footer-section .footer-text .ft-about {
	margin-bottom: 30px;
}
.footer-section .footer-text .ft-about .logo {
	margin-bottom: 20px;
}
.footer-section .footer-text .ft-about .logo a {
	display: inline-block;
}
.footer-section .footer-text .ft-about p {
	color: #7d52d2;
	margin-bottom: 20px;
}
.footer-section .footer-text .ft-about .fa-social a {
	display: inline-block;
	height: 40px;
	width: 40px;
	font-size: 16px;
	line-height: 40px;
	text-align: center;
	color: #7d52d2;
	border: 1px solid #222222;
	border-radius: 50%;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	margin-right: 7px;
}
.footer-section .footer-text .ft-about .fa-social a:hover {
	background: #3d3d3b;
	border-color: #3d3d3b;
}
.footer-section .footer-text .ft-contact {
	margin-bottom: 30px;
}
.footer-section .footer-text .ft-contact h6 {
	font-size: 14px;
	color: #3d3d3b;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 3px;
	font-family: "Cabin", sans-serif;
	margin-bottom: 20px;
}
.footer-section .footer-text .ft-contact ul li {
	font-size: 16px;
	color: #2c2c25;
	line-height: 32px;
	list-style: none;
}
.footer-section .footer-text .ft-newslatter h6 {
	font-size: 14px;
	color: #3d3d3b;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 3px;
	font-family: "Cabin", sans-serif;
	margin-bottom: 20px;
}
.footer-section .footer-text .ft-newslatter p {
	color: #7d52d2;
	margin-bottom: 20px;
}
.footer-section .footer-text .ft-newslatter .fn-form {
	position: relative;
}
.footer-section .footer-text .ft-newslatter .fn-form input {
	width: 100%;
	height: 50px;
	border-radius: 2px;
	background: #393D4A;
	border: none;
	padding-left: 20px;
	font-size: 16px;
	color: #2c2c25;
}
.footer-section .footer-text .ft-newslatter .fn-form button {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 16px;
	background: #3d3d3b	;
	color: #2c2c25;
	padding: 0 16px;
	height: 50px;
	border: none;
	border-radius: 0 2px 2px 0;
}
.footer-section .copyright-option {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center; /* Alinea el texto al centro */
}

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

.footer-section .copyright-option ul li {
    display: inline-block;
    margin-right: 34px;
}

.footer-section .copyright-option ul li:last-child {
    margin-right: 0;
}

.footer-section .copyright-option ul li a {
    font-size: 16px;
    color: #2c2c25;
}

.footer-section .copyright-option .co-text {
    font-size: 16px;
    color: #000000;
    text-align: center; /* Alinea el texto al centro */
}

 /* Agrega estilos personalizados aquí según sea necesario */
 .modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.9);
	padding-top: 60px;
	transition: opacity 0.3s ease;
	opacity: 1;
}

.modal[style*="opacity: 0"] {
	pointer-events: none;
}

.modal-content {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
	background-color: #fefefe;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modal-content img {
	width: 100%;
	max-height: 400px; /* Ajusta según sea necesario para el tamaño máximo deseado */
	object-fit: contain; /* Para mantener la proporción de la imagen */
	margin-bottom: 10px;
}

.modal-text {
flex-grow: 1;
padding: 0 20px;
}

.product-description {
    font-size: 18px;
    color: #0f0f0f;
    margin-bottom: 10px;
    text-align: justify; /* Justificar el texto */
}

.product-price {
font-size: 20px;
font-weight: bold;
color: #af9d8f; /* Puedes cambiar el color según tu preferencia */
margin-bottom: 20px;
}
.close {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 20px;
	color: #333;
	cursor: pointer;
}

.modal-container {
	max-height: calc(100% - 120px); /* Ajusta según sea necesario */
	overflow-y: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
}
.modal-container img {
max-width: 50%; /* Ajusta el tamaño de la imagen según sea necesario */
}

.product-title {
font-size: 24px; /* Tamaño del título más pequeño */
text-align: center; /* Centrar el título */
margin-bottom: 10px;
}
.product-description,
.product-price {
text-align: center; /* Centrar el texto */
margin-bottom: 10px;
}


/* Agrega estilos personalizados aquí según sea necesario */
.whatsapp-button {
	display: block;
margin: 10px auto;
padding: 12px 20px; /* Aumenta el espacio interno del botón */
background-color: #7d52d2; /* Color típico de WhatsApp */
color: #fff;
border: none;
border-radius: 30px; /* Hace que el botón sea más redondeado */
cursor: pointer;
transition: background-color 0.3s; /* Agrega una transición suave al color de fondo */

/* Añade sombra para un efecto más suave */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.whatsapp-button:hover {
	background-color: #7d52d2; /* Color de hover típico de WhatsApp */
}

.gallery-producto img {
	transition: filter 0.3s; /* Agrega una transición suave de 0.3 segundos */
	border-radius: 15px; /* Ajusta el radio para redondear las esquinas */
	overflow: hidden; /* Asegura que las esquinas redondeadas se muestren correctamente */
	height: 100%; /* Establece la altura al 100% para asegurarse de que todas tengan el mismo tamaño */

}

.gallery-producto:hover img {
	filter: hue-rotate(90deg); /* Cambia el tono para dar un color verde claro */
}

/* Agrega estos estilos al final de tu archivo CSS */

@media screen and (max-width: 767px) {
.modal-content {
	width: 90%; /* Ajusta el ancho del modal en dispositivos móviles según sea necesario */
}

.modal-container {
	flex-direction: column;
	align-items: center;
}

.modal-container img {
	max-width: 100%; /* Ajusta el tamaño de la imagen al 100% del contenedor en dispositivos móviles */
}

.modal-text {
	padding: 20px 0; /* Ajusta el relleno en dispositivos móviles según sea necesario */
}

.product-description,
.product-price {
	text-align: center; /* Centra el texto en dispositivos móviles */
	margin-bottom: 10px;
}

.whatsapp-button {
	width: 100%; /* Ajusta el ancho del botón de WhatsApp al 100% del contenedor en dispositivos móviles */
}
}

/* OFERTAS Agrega estilos según tus preferencias */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Fondo negro semitransparente */
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content {
    text-align: center;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    max-width: 600px; /* Ancho máximo de la ventana emergente */
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Sombra */
    position: relative; /* Añade esta línea */
    margin: 250px auto 0; /* Añade un margen superior de 50px y alinea horizontalmente */

}
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    color: #333; /* Cambia el color del icono de cierre según tu diseño */
}

/*--Responsive Media Styles --*/

@media only screen and (min-width: 1554px) and (max-width: 1920px) {
	.hp-produccion-items .hp-produccion-item .hr-text {
		bottom: -200px;
	}
}
@media only screen and (min-width: 1200px) and (max-width: 1250px) {
	.hp-produccion-items .hp-produccion-item .hr-text {
		bottom: -288px;
	}
}
@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}
/* Medium Device: 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.testimonial-slider.owl-carousel .owl-nav button {
		left: -150px;
	}
	.testimonial-slider.owl-carousel .owl-nav button.owl-next {
		right: -150px;
	}
	.hp-produccion-items .hp-produccion-item .hr-text {
		bottom: -322px;
	}
	.hp-produccion-items .hp-produccion-item:hover .hr-text {
		bottom: 80px;
	}
}
@media only screen and (max-width: 991px) {
	.top-nav {
		display: none;
	}
	.menu-item .nav-menu {
		display: none;
	}
	.offcanvas-menu-overlay {
		position: fixed;
		left: 0;
		top: 0;
		background: rgba(0, 0, 0, 0.5); /* Cambiado a un tono oscuro para mayor contraste */
		z-index: 98;
		height: 100%;
		width: 100%;
		visibility: hidden;
		opacity: 0; /* Añadido para controlar la opacidad */
		transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out; /* Mejorada la transición */
	}
	
	/* Añadido un estilo cuando el menú está activo */
	.offcanvas-menu-overlay.active {
		visibility: visible;
		opacity: 1;
	}
	.canvas-open {
		position: fixed; /* Cambiado a posición fija para mantener visible en todo momento */
		right: 20px; /* Ajustado el margen derecho */
		top: 20px; /* Ajustado el margen superior */
		font-size: 24px; /* Aumentada la fuente para mejorar la visibilidad */
		width: 40px; /* Aumentada la anchura */
		height: 40px; /* Aumentada la altura */
		color: #000000; /* Cambiado el color del ícono a blanco para mayor contraste */
		background-color: #7d52d2; /* Color de fondo basado en el esquema de colores de Colombia */
		border: none; /* Eliminado el borde para un aspecto más limpio */
		border-radius: 50%; /* Borde redondeado para un aspecto moderno */
		line-height: 40px; /* Ajustada la altura de línea para centrar el ícono verticalmente */
		text-align: center;
		z-index: 100;
		display: flex; /* Usar flexbox para centrar el contenido */
		align-items: center;
		justify-content: center;
		cursor: pointer;
		transition: background-color 0.3s ease-in-out; /* Transición suave para cambios de color */
	}
	
	.canvas-open:hover {
		background-color: #7d52d2; /* Cambiar el color de fondo al pasar el ratón para interactividad visual */
	}
	.offcanvas-menu-wrapper {
		position: fixed;
		left: -300px;
		top: 0;
		width: 300px;
		z-index: 999;
		background: #ffffff;
		text-align: center;
		overflow-y: auto;
		height: 100%;
		opacity: 0;
		visibility: hidden;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
		transition: all 0.5s;
		padding: 80px 30px 30px 30px;
		display: block;
	}
	.offcanvas-menu-wrapper .canvas-close {
		height: 30px;
		width: 30px;
		border: 1px solid #19191a;
		border-radius: 50%;
		text-align: center;
		line-height: 30px;
		cursor: pointer;
		position: absolute;
		right: 30px;
		top: 30px;
		padding-right: 1px;
	}
	
	.offcanvas-menu-wrapper .header-configure-area {
		margin-bottom: 30px;
	}
	.offcanvas-menu-wrapper .header-configure-area .language-option {
		display: inline-block;
		cursor: pointer;
		padding: 13px 0;
		position: relative;
		margin-bottom: 10px;
	}
	.offcanvas-menu-wrapper .header-configure-area .language-option:hover .flag-dropdown {
		top: 40px;
		opacity: 1;
		visibility: visible;
	}
	.offcanvas-menu-wrapper .header-configure-area .language-option img {
		height: 26px;
		width: 26px;
		border-radius: 50%;
		margin-right: 10px;
	}
	.offcanvas-menu-wrapper .header-configure-area .language-option span {
		font-size: 16px;
		color: #19191a;
		text-transform: uppercase;
		font-weight: 500;
	}
	.offcanvas-menu-wrapper .header-configure-area .language-option .flag-dropdown {
		position: absolute;
		left: 0;
		top: 60px;
		width: 100px;
		background: #ffffff;
		display: block;
		padding: 10px 15px;
		-webkit-box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
		box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
		opacity: 0;
		visibility: hidden;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
		z-index: 99;
	}
	.offcanvas-menu-wrapper .header-configure-area .language-option .flag-dropdown ul li {
		list-style: none;
		text-align: left;
	}
	.offcanvas-menu-wrapper .header-configure-area .language-option .flag-dropdown ul li a {
		font-size: 14px;
		text-transform: uppercase;
		font-weight: 500;
		color: #19191a;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
	}
	
	.offcanvas-menu-wrapper .header-configure-area .bk-btn {
		display: inline-block;
		font-size: 13px;
		font-weight: 700;
		padding: 16px 28px 15px;
		background: #7d52d2;
		color: #ffffff;
		text-transform: uppercase;
		letter-spacing: 2px;
	}
	.offcanvas-menu-wrapper .mainmenu {
		display: none;
	}
	.offcanvas-menu-wrapper .slicknav_menu {
		background: transparent;
		padding: 0;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_btn {
		float: none;
		margin: 0 0 10px 0;
		display: none;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav {
		display: block !important;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul {
		margin: 0;
		text-align: left;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul li .dropdown {
		padding-left: 20px;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul li a {
		margin: 0;
		padding: 10px;
		font-weight: 600;
		font-size: 14px;
		color: #19191a;
		border-bottom: 1px solid #7d52d2;
		transition: color 0.3s, background-color 0.3s; /* Añadida transición para color de texto y fondo */
	}
	
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul li a:hover {
		color: #fff; /* Color de texto al pasar el ratón */
		background-color: #7d52d2; /* Color de fondo al pasar el ratón (amarillo) */
		border-bottom-color: #fff; /* Color del borde inferior al pasar el ratón */
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul li a:hover {
		border-radius: 0;
		background: transparent;
		color: #7d52d2;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row a {
		border-bottom: 0;
		padding-left: 0;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row span {
		color: #19191a;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row:hover a {
		color: #7d52d2;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row:hover span {
		color: #7d52d2;
	}
	.offcanvas-menu-wrapper .top-social {
		display: inline-block;
		margin-top: 30px;
		margin-bottom: 20px;
	}
	.offcanvas-menu-wrapper .top-social a {
		display: inline-block;
		font-size: 16px;
		color: #19191a;
		margin-right: 20px;
	}
	.offcanvas-menu-wrapper .top-social a:last-child {
		margin-right: 0;
	}
	.offcanvas-menu-wrapper .top-widget li {
		list-style: none;
		font-size: 16px;
		color: #19191a;
		font-weight: 500;
		line-height: 28px;
	}
	.offcanvas-menu-wrapper .top-widget li i {
		color: #7d52d2;
		margin-right: 4px;
	}
	.offcanvas-menu-wrapper.show-offcanvas-menu-wrapper {
		left: 0;
		opacity: 1;
		visibility: visible;
	}
	.about-text {
		margin-bottom: 30px;
	}
	.footer-section .copyright-option ul {
		text-align: center;
		margin-bottom: 10px;
	}
	.footer-section .copyright-option .co-text {
		text-align: center;
	}
	.about-pic img {
		margin-bottom: 20px;
	}
	.produccion-booking {
		padding: 0;
		margin-top: 40px;
	}
	.contact-form {
		padding-top: 30px;
	}
	.hero-text {
		margin-bottom: 40px;
	}
}
/* Tablet Device: 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.testimonial-slider.owl-carousel .owl-nav button {
		left: -30px;
	}
	.testimonial-slider.owl-carousel .owl-nav button.owl-next {
		right: -30px;
	}
	.hp-produccion-items {
		margin: 0;
	}
	.hp-produccion-item {
		margin-bottom: 15px;
	}
}
/* Large Mobile: 480px */

@media only screen and (max-width: 767px) {
	.testimonial-slider.owl-carousel .owl-nav {
		display: none;
	}
	.produccion-details-item .rd-text .rd-title {
		margin-bottom: 25px;
	}
	.produccion-details-item .rd-text .rd-title h3 {
		float: none;
		margin-bottom: 30px;
	}
	.produccion-details-item .rd-text .rd-title .rdt-right {
		float: none;
		text-align: left;
	}
	.footer-section .copyright-option ul li {
		margin-right: 25px;
	}
	.blog-details-text .tag-share .tags {
		float: none;
		margin-bottom: 20px;
	}
	.blog-details-text .tag-share .social-share {
		float: none;
	}
	.about-text .section-title h2 {
		font-size: 30px;
		line-height: 40px;
	}
	.hp-produccion-items {
		margin: 0 -5px;
	}
	.hp-produccion-item {
		margin-bottom: 10px;
	}
}
/* Small Mobile: 320px */

@media only screen and (max-width: 479px) {
	.footer-section .copyright-option ul li {
		margin-bottom: 5px;
	}
	.video-section {
		padding-top: 80px;
	}
	.rd-reviews .review-item .ri-pic, .blog-details-text .comment-option .single-comment-item .sc-author {
		float: none;
		margin-bottom: 30px;
	}
	.rd-reviews .review-item .ri-text .rating {
		position: relative;
	}
	.rd-reviews .review-item .ri-text, .blog-details-text .comment-option .single-comment-item.second-comment .sc-text, .blog-details-text .comment-option .single-comment-item.first-comment .sc-text {
		padding-left: 0;
	}
	.blog-details-text .comment-option .single-comment-item.reply-comment {
		padding-left: 30px;
	}
	.rd-reviews .review-item .ri-text:before, .blog-details-text .comment-option .single-comment-item.first-comment .sc-text:before, .blog-details-text .comment-option .single-comment-item.second-comment .sc-text:before {
		display: none;
	}
	.blog-details-hero {
		padding-top: 70px;
	}
	.blog-details-text .bd-pic .bp-item {
		width: 100%;
		float: none;
		margin-right: 0;
		margin-bottom: 10px;
	}
	.blog-details-text .tag-share .tags a {
		margin-bottom: 6px;
	}
	.blog-details-text .comment-option .single-comment-item .sc-text a {
		margin-bottom: 10px;
	}
}
/* Estilos generales para el formulario */
.contact-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.contact-form .section-title {
    margin-bottom: 30px;
    text-align: center;
}

.contact-form .section-title h3 {
    font-size: 24px;
    color: #000000;
    font-weight: 600;
}

.contact-form .section-title p {
    font-size: 16px;
    color: #777;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #000000;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form input[type="text"], .contact-form input[type="email"] {
    height: 45px;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form button {
    background-color: #7d52d2;
    color: #fff;
    padding: 12px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.contact-form button:hover {
    background-color: #7d52d2;
}

/* Estilos para dispositivos móviles */
@media (max-width: 768px) {
    .contact-form {
        padding: 20px;
    }

    .contact-form input, .contact-form textarea {
        font-size: 14px;
    }

    .contact-form button {
        font-size: 16px;
    }
}

/* Estilo para los campos de texto y el botón de envío */
.contact-form input, .contact-form textarea {
    background-color: #fff;
    border: 1px solid #ccc;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #7d52d2;
}

/* Estilos de los mensajes de éxito o error */
.contact-form .form-message {
    text-align: center;
    font-size: 16px;
    margin-top: 20px;
}

.contact-form .form-message.success {
    color: green;
}

.contact-form .form-message.error {
    color: red;
}


/* CSS para ajustar el tamaño de la imagen del banner */
.banner-img img {
    width: 100%;         /* La imagen ocupará el 100% del ancho de su contenedor */
    height: 400px;        /* Mantiene la proporción de la imagen */
    object-fit: cover;   /* Hace que la imagen cubra todo el espacio disponible, sin distorsionarse */
}

.social-icons {
    margin-top: -20px;
    text-align: center; /* Centra los íconos */
}

/* Media query para pantallas pequeñas (móviles) */
@media (max-width: 768px) {
    .social-icons {
        margin-top: -5px; /* Aplica el margen negativo de -35px en pantallas pequeñas */
    }
}
.social-icon {
    font-size: 40px; /* Hace que los íconos sean más grandes */
    color: #7d52d2; /* Color inicial de los íconos */
    margin: 0 30px; /* Aumenta el espacio entre los íconos */
    transition: color 0.3s ease; /* Suaviza el cambio de color al pasar el mouse */
}

.social-icon:hover {
    color: #7d52d2; /* Cambia el color al pasar el mouse */
}
.btn-primary {
	background-color: #7d52d2;
	border-color: #7d52d2;
	color: white;
 }

 .btn-primary:hover {
	background-color: #d8ae5e;
	border-color: #d8ae5e;
	transform: scale(1.1);
 }

 .whatsapp-btn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #25D366;
	padding: 15px;
	border-radius: 50%;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	z-index: 9999;
	transition: background-color 0.3s ease;
 }

 .whatsapp-btn:hover {
	background-color: #128C7E;
 }