@font-face {
	font-family: "Slabo";
	src: url(../fonts/Slabo27px-Regular.ttf) format("truetype");
  }
  
  * {
	font-family: "Slabo", serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  /* ===== Modern Color Scheme ===== */
  :root {
	--primary: #e74c3c; 
	--secondary: #3498db;
	--dark: #132026; 
	--light: #f7f8fb; 
	--accent: #f45b03; 
	--text: #2c3e50;
	--white: #ffffff;
	--shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	--transition: all 0.3s ease;
  }
  
  body {
	background-color: var(--white);
	background-image: url("../IMG/background.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	color: var(--text);
	line-height: 1.6;
  }
  
  /* ===== Enhanced Header ===== */
  header {
	width: 100vw;
	background-color: var(--dark);
	border-radius: 10px 10px 0 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	box-shadow: var(--shadow);
	animation: slidein 2s;
  }

/* ===== Top-Header Styles ===== */
	#topheader {
		background-color: var(--light);
		border-bottom: 2px solid #ddd;
		padding: 0.5rem 0;
	}
	#topheader .col-12 {
		text-align: right;
	}
	#topheader .col-12 {
		display: flex;
		justify-content: flex-end;
		gap: 10px;
		flex-wrap: nowrap;
		align-items: center;
		overflow-x: auto;
	}
	#topheader a {
		white-space: nowrap;
	}
	#topheader a:hover {
		color: var(--primary);
	}
	@media (max-width: 576px) {
    #topheader a {
        font-size: 0.75rem;
    }
    #topheader .col-12 {
        gap: 5px;
    }
	}
  
  #titulo {
	font-size: 1.8rem;
	color: var(--white);
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  #bottomheader {
    /* Altura base */
    height: 70px;
    display: flex;
    align-items: center;
    background-color: #000;
    transition: height 0.3s ease;
}
@media (max-width: 768px) {
    #bottomheader {
        height: auto;
        padding: 10px 0;
    }
	    #topLogo {
        max-height: 50px;
    }
}

.navbar {
    padding: 0;
    width: 100%;
}

.navbar-nav {
    align-items: right;
	margin-left: auto;
}

.nav-link {
    padding: 10px 15px !important;
}
  #topLogo {
	width: 120px;
	height: auto;
  }  
  /* ===== Modern Navigation ===== */
  .menu a {
	color: var(--white);
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 600;
	padding: 0.5rem 1rem;
	transition: var(--transition);
  }
  
  .menu a:hover {
	color: var(--accent);
	transform: translateY(-2px);
  }
  
  .menu a+a::before {
	content: "|";
	color: rgba(255, 255, 255, 0.5);
	padding: 0 1rem;
  }
  
  /* ===== Hero Section Improvements ===== */
  .Top-body {
	background-color: rgba(0, 0, 0, 0.7);
	color: var(--white);
	padding: 3rem 2rem;
	text-align: center;
	backdrop-filter: blur(3px);
  }
  
  .Top-body a {
	color: var(--white);
	background-color: var(--primary);
	padding: 12px 24px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	display: inline-block;
	margin-top: 1rem;
  }
  
  .Top-body a:hover {
	background-color: #c0392b;
	transform: translateY(-3px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

/* Styles for PopUp*/
#welcomeModal .modal-content {
    border-radius: 10px;
    border: none;
	background-color: #132026;
}

#welcomeModal .modal-header {
    background-color: #4e73df;
    color: white;
    border-radius: 9px 9px 0 0;
}
.Options .form-label{
	color: white;
}
.Options #serviceNeeded{
	background-color: #4e73df;
	color: white;
	height: 50px;
}
#welcomeModal .btn-close {
    filter: invert(1);
}

#sendWhatsAppBtn {
    background-color: #25D366;
    border-color: #25D366;
}

#sendWhatsAppBtn:hover {
    background-color: #128C7E;
    border-color: #128C7E;
}
.modal-title.long-text {
	white-space: nowrap;
	font-size: 1rem;
}
@media (max-width: 576px) {
	.modal-title.long-text {
		font-size: 0.9rem;
	}
}

/* ===== CTA STYLES ===== */
 body {
	margin: 0;
	padding: 0;
	padding-top: 80px;
}

.whatsapp-cta {
	position: fixed;
	top: 30px;
	left: 30px;
	background-color: #25D366;
	color: white;
	padding: 15px 20px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	text-decoration: none;
	font-family: Arial, sans-serif;
	font-weight: bold;
	z-index: 1000;
	transition: all 0.3s ease;
	/* Asegura que no afecte el layout */
	max-width: 90%;
	box-sizing: border-box;
}

.whatsapp-cta:hover {
	background-color: #128C7E;
	transform: scale(1.05);
}

.whatsapp-cta i {
	font-size: 24px;
	margin-right: 10px;
}

.whatsapp-text {
	display: inline-block;
	white-space: nowrap;
}
@media (max-width: 768px) {
	body {
		padding-top: 70px;
	}
	
	.whatsapp-cta {
		top: 15px;
		left: 15px;
		padding: 12px 15px;
		font-size: 14px;
	}
	
	.whatsapp-cta i {
		font-size: 20px;
		margin-right: 8px;
	}
}

@media (max-width: 480px) {
	body {
		padding-top: 60px;
	}
	
	.whatsapp-cta {
		top: 10px;
		left: 10px;
		padding: 10px 15px;
		font-size: 12px;
		width: auto;
	}
	
	.whatsapp-cta i {
		font-size: 18px;
		margin-right: 5px;
	}
	
	.whatsapp-text {
		display: inline;
	}
		@media (max-width: 360px) {
		.whatsapp-text {
			display: none;
		}
		
		.whatsapp-cta::after {
			content: "¡Escríbenos!";
			font-size: 10px;
			margin-left: 5px;
		}
	}
}

 /* ===== CAPTCHA POPUP styles ===== */
.captcha-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.captcha-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.captcha-content h2 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.captcha-content p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

  /* ===== slider styles ===== */
#heroCarousel {
	height: 50vh;
	min-height: 300px;
	position: relative;
  }
  #heroCarousel .carousel-inner,
  #heroCarousel .carousel-item,
  #heroCarousel .carousel-item img {
	height: 100% !important; 
	width: 100%;
  }
  
  /* Ajuste específico para las imágenes */
  #heroCarousel .carousel-item img {
	object-fit: cover;       
	object-position: center; 
	display: block;
  }
  
  /* Corrección para Bootstrap */
  .carousel-item {
	transition: transform 0.6s ease-in-out !important;
  }
  
  /* Ajuste para los controles */
  .carousel-control-prev,
  .carousel-control-next {
	height: 100%;
  }
  
 
  .carousel-caption {
	background: rgba(0, 0, 0, 0.7);
	padding: 20px 30px;
	border-radius: 15px;
	animation: fadeInUp 1s ease-out;
  }
  
  @keyframes fadeInUp {
	from {
	  opacity: 0;
	  transform: translateY(30px);
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }

  .carousel-caption h5 {
	font-size: 2rem;
	font-weight: bold;
  }

  .carousel-caption p {
	font-size: 1.1rem;
  }
  @media (max-width: 768px) {
	.carousel-inner img {
	  height: 300px;
	}
  }
  .carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}

.carousel-control-prev::before,
.carousel-control-next::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 2.5rem;
    color: black;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-control-prev::before {
    content: "\f053";
}

.carousel-control-next::before {
    content: "\f054";
}
  /* ===== Product/Service Showcase ===== */
  .Middle-body {
	
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 4rem 0;
	position: relative;
  }
  
  .Middle-body::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
  }
  
  #Mbody {
	background-color: rgba(0, 0, 0, 0.7);
	padding: 2rem;
	border-radius: 8px;
	box-shadow: var(--shadow);
	position: relative;
	
  }
  .Middle-body img.img-fluid {
    width: 100%;
    height: 250px; 
    object-fit: cover; 
    object-position: center; 
    border-radius: 8px; 
    margin-bottom: 15px;
}
.Middle-body {
    color: white;
}
.Middle-body h2, .Middle-body h3 {
    color: white;
}
.Middle-body p {
    color: white;
}
  
  #Mbody-2 {
	background-color: rgba(0, 0, 0, 0.7);
	padding: 2rem;
	border-radius: 8px;
	color: white;
  }
  
  #Mbody-2 label {
	color: white;
	font-weight: 600;
  }
  #Mbody-2 h5 {
	color: white;
  }
  
  #Mbody-2 img {
	height: 300px;
	width: 350px;
	border-radius: 50%;
	object-fit: cover;
	border: 5px solid var(--accent);
	transition: var(--transition);
  }
  
  #Mbody-2 img:hover {
	transform: scale(1.05);
  }
  
  /* ===== Modern Form Styling ===== */
  #formulario {
	background: rgba(50, 47, 47, 0.9);
	color: var(--white);
	padding: 2rem;
	border-radius: 8px;
	box-shadow: var(--shadow);
  }
  
  #formulario input,
  #formulario textarea {
	width: 100%;
	padding: 12px;
	margin-bottom: 1rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.9);
  }
  
  /* ===== WhatsApp Button Enhancement ===== */
  .whatsapp_1 {
	background-color: #25D366;
	color: var(--white);
	border: none;
	border-radius: 8px;
	padding: 12px 24px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	transition: var(--transition);
  }
  
  .whatsapp_1:hover {
	background-color: #128C7E;
	transform: translateY(-3px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
 /* ===== ANIMATION OF BRANDS CAROUSEL===== */
.slider_brands {
		width: 100vw;
		height: 200px;
		margin: auto;
		overflow: hidden;
		position: relative;
	}
.slider_brands .slide-track {
	display: flex;
	gap: 20px;
	animation: scroll 40s linear infinite;
	width: calc(250px * 20);
}
.slider_brands .slide{
	width: 350px;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;

}
.slider_brands .slide img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: all 0.3s ease;
  }
@keyframes scroll{
	0%{
		transform: translatex(0);
	}
	100%{
		transform: translatex(calc(-250px*10));
	}
}
    /* ===== DEPLICATED ANIMATION OF BRANDS CAROUSEL===== */
.slider_brands_2 {
		width: 100vw;
		height: 100px;
		margin: auto;
		overflow: hidden;
		position: relative;
	}
.slider_brands_2 .slide-track_2 {
	display: flex;
	gap: 20px;
	animation: scroll 40s linear infinite;
	width: calc(100px * 20);
}
.slider_brands_2 .slide_2{
	width: 350px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;

}
.slider_brands_2 .slide_2 img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: all 0.3s ease;
  }
@keyframes scroll{
	0%{
		transform: translatex(0);
	}
	100%{
		transform: translatex(calc(-100px*10));
	}
}

  /* ===== Footer Improvements ===== */
  .fullfooter {
	background: linear-gradient(to right, #0f2027, #153269, #2c5364);
	padding: 2rem 0;
	color: var(--white);
  }
  
  .fullfooter a {
	color: var(--white);
	transition: var(--transition);
  }
  
  .fullfooter a:hover {
	color: var(--accent);
	text-decoration: none;
  }
  
  .bottom-footer {
	background-color: #040e20;
	padding: 0.5rem 0;
	text-align: center;
  }
  
  .bottom-footer p {
	color: var(--white);
	margin: 0;
	font-size: 0.9rem;
  }
  

  /*====fixed button whatsapp and Phone call====*/
/* Shared base for both buttons */
.circle-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    right: 20px;
    text-decoration: none;
}
#whatsappBtn, #callBtn {
display: None;
}
/* WhatsApp specific */
.whatsapp-btn {
    background-color: #25D366;
    bottom: 100px;
}

/* Call specific */
.call-btn {
    background-color: #4e73df;
    bottom: 20px;
}

/* Icon sizing and alignment */
.circle-btn i {
    font-size: 26px;
    line-height: 1;
    display: block;
    width: 100%;
    text-align: center;
}


@media (max-width: 768px) {
    .circle-btn {
        width: 50px;
        height: 50px;
        right: 15px;
    }

    .circle-btn i {
        font-size: 22px;
    }

    .whatsapp-btn {
        bottom: 90px;
    }

    .call-btn {
        bottom: 15px;
    }
}
@media (max-width: 480px) {
    .whatsapp-btn, .call-btn {
        width: 50px;
        height: 50px;
    }
}

/* ===== Responsive Adjustments ===== */
  @media (max-width: 768px) {
	header {
	  flex-direction: column;
	  text-align: center;
	}
	
	.menu {
	  margin-top: 1rem;
	}
	
	#formulario {
	  margin-left: 1rem;
	  margin-right: 1rem;
	  width: auto;
	  padding-left: 1rem;
	}
	
	#Mbody-2 img {
	  width: 100%;
	  height: auto;
	}
  }
  
  @keyframes slidein {
	from { transform: translateY(-50px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
  }
  /* ===== FIRE-THEMED ENHANCEMENTS ===== */
:root {
	--flame-gradient: linear-gradient(45deg, #e74c3c, #f39c12, #e67e22);
	--metal-gradient: linear-gradient(to right, #bdc3c7, #2c3e50);
  }
  
  /* ===== ANIMATED FIREPLACE/BURNER EFFECT ===== */
  @keyframes flicker {
	0%, 100% { opacity: 0.8; }
	50% { opacity: 1; }
  }
  
  .fire-effect {
	position: relative;
  }
  
  .fire-effect::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 30px;
	background: var(--flame-gradient);
	border-radius: 50%;
	filter: blur(10px);
	animation: flicker 2s infinite alternate;
	z-index: -1;
  }
  
  /* ===== PRODUCT CARD ENHANCEMENTS ===== */
  .product-card {
	position: relative;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
	border: 1px solid rgba(0,0,0,0.1);
  }
  
  .product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 14px 28px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.08);
  }
  
  .product-card::before {
	content: "HOT DEAL";
	position: absolute;
	top: 10px;
	right: -30px;
	background: var(--flame-gradient);
	color: white;
	padding: 3px 30px;
	transform: rotate(45deg);
	font-size: 12px;
	font-weight: bold;
	z-index: 1;
  }
  
  /* ===== THERMOMETER STYLE RATINGS ===== */
  .rating-bar {
	height: 6px;
	background: linear-gradient(to right, #3498db, #2ecc71);
	position: relative;
	border-radius: 3px;
  }
  
  .rating-bar::after {
	content: "";
	position: absolute;
	right: 0;
	top: -4px;
	width: 3px;
	height: 14px;
	background: var(--primary);
  }
  
  /* ===== METALLIC ACCENTS ===== */
  .metal-badge {
	background: var(--metal-gradient);
	color: white;
	padding: 5px 10px;
	border-radius: 4px;
	text-shadow: 0 1px 1px rgba(0,0,0,0.3);
	box-shadow: inset 0 1px 1px rgba(255,255,255,0.2);
	border: 1px solid rgba(0,0,0,0.2);
  }
  
  /* ===== COZY TEXT EFFECTS ===== */
  .cozy-text {
	font-family: "Slabo", serif;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
	line-height: 1.3;
	position: relative;
  }
  
  .cozy-text::after {
	content: "";
	display: block;
	width: 50px;
	height: 3px;
	background: var(--flame-gradient);
	margin: 10px 0;
  }
  
  /* ===== RESPONSIVE TWEAKS ===== */
  @media (max-width: 768px) {
	.fire-effect::after {
	  height: 15px;
	  width: 60%;
	}
	
	.product-card::before {
	  right: -35px;
	  font-size: 10px;
	}
  }
