@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap");

:root {
	--red-b: #8D0801;
	--yellow-c: #F4D58D;
	--red-y: #BF0603;
	--blue-b: #001427;
	--grey-y: #708D81;

	--border-radius: 5rem;


	--font-weight: 700;


	--text: #ffffff;
	--text-dim: #000000;
	--accent: #F4D58D;
	--fd: "Bebas Neue", sans-serif;
	--fs: 'Montserrat', sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	scrollbar-width: none;
}

.loader-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	background: var(--blue-b);
	z-index: 9999;
	transition: opacity 0.5s ease;
	opacity: 1;
}

.loader-container.fade-out {
	opacity: 0;
}

.loader-text {
	color: var(--text);
	font-family: var(--fd);
	font-size: 22px;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-weight: var(--font-weight);
}

.loader-bar-bg {
	width: 280px;
	height: 8px;
	background: rgba(141, 8, 1, 0.2);
	overflow: hidden;

}

.loader-bar-fill {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, var(--red-b), var(--red-y));

	transition: width 0.2s ease;
	box-shadow: 0 0 8px var(--red-y);
}

.loader-percent {
	color: var(--yellow-c);
	font-family: var(--fs);
	font-size: 14px;
	letter-spacing: 1px;
}

#contenido {
	opacity: 0;
	transition: opacity 0.6s ease;
}

#contenido.fade-in {
	opacity: 1;
}

body {
	background-color: var(--red-b);

}

.header {
	position: fixed;
	top: 0;
	padding: 20px 8%;
	background: transparent;
	transition: transform 0.3;
	z-index: 10;
	font-family: var(--fd);
	height: 80px;
	width: 100%;
	background: var(--red-b);

}

.header.hide {
	transform: translate(-100%);
	border: none;
}

.nav {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	border-radius: 10px;

}

.menu-links {
	display: flex;
	align-items: center;
}

.dropdown_menu {

	display: none;
	position: absolute;
	right: 2rem;
	top: 5rem;
	height: 0;
	width: 250px;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	border-radius: 10px;
	overflow: hidden;
	transition: height 0.3s ease;
}

.nav-drop {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.dropdown_menu.open {
	display: flex;
	height: 330px;
	align-items: center;
	justify-content: center;
}

.dropdown_menu li {
	padding: 0.5rem;
	display: flex;
}

.toggle_btn i {
	color: var(--yellow-c);
	font-size: 2rem;
	position: absolute;
	top: 2.7rem;
	right: 2rem;
	display: none;
}

.menu-links-drop {
	display: flex;
	flex-direction: column;
}

.menu-links-drop li {
	color: var(--text);
	font-size: 1.5rem;
}

.menu-links {

	list-style: none;
	display: flex;
	flex-direction: row;
	gap: 1rem;

}

.menu-links a {
	text-decoration: none;
	color: var(--text);
}

.menu-links li {
	color: var(--text);
	font-size: 2rem;
}

.menu-links li:hover::after,
.menu-contact a:hover::after {
	content: ']';
}

.menu-links li:hover::before,
.menu-contact a:hover::before {
	content: '[';
}

.menu-contact a {
	color: var(--text);
	font-size: 2rem;
	text-decoration: none;
}

.logo-img {
	width: 100px;
	height: 60px;
}

/*
.section {
	height: 100vh;
	width: 100%;
	background: var(--red-b);
	display: flex;
	align-items: center;
	justify-content: center;
}
	*/
#home {
	height: auto;
	width: 100%;
}

.container-hero {
	padding: 80px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto;
	grid-template-areas:
		"box-one-hero"
		"box-two-hero"
		"box-three-hero"
		"box-four-hero";
}

.box-one-hero {
	padding: 10px;
}

.img-lamp-hero {
	top: 80px;
	left: 7.9%;
	position: absolute;
}

.img-lamp-hero img {
	width: 120px;
	height: 260px;
}

.box-two-hero-span {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.box-two-hero-span span {
	font-family: var(--fd);
	font-size: 3rem;
	line-height: 2;
	font-weight: bold;
	color: var(--text);
}

.box-four-hero {
	display: flex;
	justify-content: center;
	align-items: center;


}
.box-four-hero-content {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: .5rem;
	/*
	background: var(--yellow-c);
	height: 90%;
	width: 90%;
	border-radius: 10px;
	*/
}
.text-four-hero {
	font-family: var(--fd) !important;
	color: var(--text)!important;
	font-size: 2.5rem !important;
}
.box-four-hero a {
	text-decoration: none;
}

.box-four-hero a #comienza{
	color: var(--text);
	font-size: 1rem;
	padding: 1.2rem 0.5rem;
	background: var(--blue-b);
	font-family: var(--fs);
	border-radius: 4px;
	text-align: center;
}

.box-four-hero a h6:hover {
	color: var(--text);
	background: var(--red-y);
}

.box-four-hero h6 {
	color: var(--text-dim);
	font-size: 1.5rem;
	font-family: var(--fs);
    overflow: visible;

  /*
    box-shadow: 
    0 0 0 15px #F4D58D,
    0 0 0 30px #001427,
    0 0 0 45px #F4D58D,
    0 0 0 60px #001427,
    0 0 0 75px #F4D58D,
    0 0 0 90px #001427,
    0 0 0 105px #F4D58D,
    0 0 0 120px #001427;
    
    
   transition: box-shadow 0.6s ease;
    */
}
/*
.box-four-hero h6:hover {
  animation: ripple-hover 1s ease forwards;
}

@keyframes ripple-hover {
  0%   { box-shadow: 0 0 0 15px #F4D58D, 0 0 0 30px #001427, 0 0 0 45px #F4D58D, 0 0 0 60px #001427, 0 0 0 75px #F4D58D, 0 0 0 90px #001427, 0 0 0 105px #F4D58D, 0 0 0 120px #001427; }
  12.5%{ box-shadow: 0 0 0 15px #BF0603, 0 0 0 30px #001427, 0 0 0 45px #F4D58D, 0 0 0 60px #001427, 0 0 0 75px #F4D58D, 0 0 0 90px #001427, 0 0 0 105px #F4D58D, 0 0 0 120px #001427; }
  25%  { box-shadow: 0 0 0 15px #BF0603, 0 0 0 30px #BF0603, 0 0 0 45px #F4D58D, 0 0 0 60px #001427, 0 0 0 75px #F4D58D, 0 0 0 90px #001427, 0 0 0 105px #F4D58D, 0 0 0 120px #001427; }
  37.5%{ box-shadow: 0 0 0 15px #BF0603, 0 0 0 30px #BF0603, 0 0 0 45px #BF0603, 0 0 0 60px #001427, 0 0 0 75px #F4D58D, 0 0 0 90px #001427, 0 0 0 105px #F4D58D, 0 0 0 120px #001427; }
  50%  { box-shadow: 0 0 0 15px #BF0603, 0 0 0 30px #BF0603, 0 0 0 45px #BF0603, 0 0 0 60px #BF0603, 0 0 0 75px #F4D58D, 0 0 0 90px #001427, 0 0 0 105px #F4D58D, 0 0 0 120px #001427; }
  62.5%{ box-shadow: 0 0 0 15px #BF0603, 0 0 0 30px #BF0603, 0 0 0 45px #BF0603, 0 0 0 60px #BF0603, 0 0 0 75px #BF0603, 0 0 0 90px #001427, 0 0 0 105px #F4D58D, 0 0 0 120px #001427; }
  75%  { box-shadow: 0 0 0 15px #BF0603, 0 0 0 30px #BF0603, 0 0 0 45px #BF0603, 0 0 0 60px #BF0603, 0 0 0 75px #BF0603, 0 0 0 90px #BF0603, 0 0 0 105px #F4D58D, 0 0 0 120px #001427; }
  87.5%{ box-shadow: 0 0 0 15px #BF0603, 0 0 0 30px #BF0603, 0 0 0 45px #BF0603, 0 0 0 60px #BF0603, 0 0 0 75px #BF0603, 0 0 0 90px #BF0603, 0 0 0 105px #BF0603, 0 0 0 120px #001427; }
  100% { box-shadow: 0 0 0 15px #BF0603, 0 0 0 30px #BF0603, 0 0 0 45px #BF0603, 0 0 0 60px #BF0603, 0 0 0 75px #BF0603, 0 0 0 90px #BF0603, 0 0 0 105px #BF0603, 0 0 0 120px #BF0603; }
}
*/

.section-two {
	border-top: 10px solid var(--text-dim);
	height: 100vh;
	width: 100%;
	background: var(--yellow-c);
}

.container-text-two {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
}




.container-text-logan,
.container-user-text {

	flex: 1;
}

.container-text-logan,
.container-user-text {
	display: flex;
	align-items: center;
	justify-content: center;
}

.text-logan {
	height: auto;
	width: 60%;
}

.text-logan h6 {
	font-size: 5rem;
	font-family: var(--fd);
}

.container-user-text {
	background: var(--yellow-c);
}

.user-text {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.user-text i {
	font-size: 5rem;
}

.user-text h6 {
	font-size: 2.5rem;
	font-family: var(--fs);
	justify-content: end;
}

.line {
	border-left: 10px solid #000;
	height: 100%;
	left: 15%;
	position: absolute;
}

.section-tres {
	height: 100vh;
	width: 100%;
	background: var(--red-b);
	position: relative;
}

.img-lamp {
	top: 0%;
	left: 7.9%;
	position: absolute;
}

.img-lamp img {
	width: 220px;
	height: 360px;
}

.container-text-tres {
	height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

/*
.text-lamp,
.img-user-lamp {
	flex: 1;
}
*/
.text-lamp {
	display: flex;

}

.text-lamp-h6 {
	padding: 1rem;
	position: absolute;
	bottom: 4rem;
}

#h6-text-lamp-max {
	font-family: var(--fs);
	font-size: 2.5rem;
	color: var(--text);
}

/*
#h6-text-lamp-min {
	font-family: var(--fs);
	font-size: 1.5rem;
	color: var(--text);
}

.img-user-lamp {
	height: 100vh;
	width: 100%;
	position: relative;
}

#img-user-lamp-d {
	position: absolute;
	height: 600px;
	width: auto;
	bottom: 0;
}
*/
.section-four {
	min-height: 100vh;
	width: 100%;
	background: var(--red-y);
	position: relative;
}

#section-four-text-tall {
	font-family: var(--fd);
	font-size: 2rem;
	color: var(--text);
}

#section-four-text-small {
	font-family: var(--fs);
	font-size: 1rem;
	color: var(--text);
}

#bottom-section-four {
	position: absolute;
	bottom: 0;

}

#top-section-four {
	position: absolute;
	right: 0;

}

.container-section-four {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr auto 1fr;
}

.container-section-four-text {
	padding: 1rem;
	align-self: center;
}

.container-section-four-card {
	height: auto;
	width: auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 1rem;
	grid-column: 2/4;
	grid-row: 3/4;
	justify-self: center;
	align-self: end;
}

.card {
	padding: 8px;
	height: 20rem;
	width: 15rem;
	background: var(--yellow-c);
	box-shadow: 10px 10px;
	transition: ease-out 0.3s;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;


}

.card:hover {
	transform: scale(1.01);

}

.card-title h6,
.card-description p,
.card-content-plan p {
	font-size: 1rem;
	color: var(--blue-b);
	font-family: var(--fs);
}

.card-button-action-plan button {
	display: inline-block;
	background-color: #0f172a;
	color: #ffffff;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 600;
	border: none;
	cursor: pointer;
}
.card-button-action-plan a {
	text-decoration: none;
	display: inline-block;
}

/*
.section-contact {
	height: 100vh;
	width: 100%;
	background: var(--blue-b);
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: 1fr;
}

.container-contact-img {
	grid-column: 3/4;
	justify-self: center;
	align-self: end;
}


.container-contact {
	grid-column: 2/3;
	align-self: center;


}

.container-contact-form {
	box-shadow:
		blue 0px 0px 0px 2px inset,
		var(--color-accent-dark) 10px -10px 0px -3px,
		rgb(31, 193, 27) 10px -10px,
		var(--color-accent-dark) 20px -20px 0px -3px,
		rgb(255, 217, 19) 20px -20px,
		var(--color-accent-dark) 30px -30px 0px -3px,
		rgb(255, 156, 85) 30px -30px,
		var(--color-accent-dark) 40px -40px 0px -3px,
		rgb(255, 85, 85) 40px -40px;
}

.container-contact-form form {
	padding: 1rem;
	height: auto;
	width: 20rem;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 1rem;


}

.container-contact-form form label,
.container-contact-form span {
	color: var(--text);
	font-family: var(--fs);
	font-size: 1rem;
}

.container-contact-form span {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.container-contact-form form input {
	padding: 1rem .5rem;
}


.container-contact-form form textarea {

	height: 150px;
	resize: none;

}

input:focus,
textarea:focus {
	outline: none;
}

.container-contact-form form button {
	background-color: var(--red-b);
	color: #ffffff;
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.container-contact-form-more {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.container-contact-form-more span {
	margin-bottom: 1rem;
}

.container-contact-form-more-icons {

	display: flex;
	align-items: center;
}

.container-contact-form-more i {
	font-size: 2rem;
	color: var(--text);
}
*/
.section-contact {
	height: 100vh;
	width: 100%;
	background: var(--blue-b);
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: 1fr;
}

.container-contact {
	grid-column: 2/4;
	align-self: center;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.container-contact-text h2 {
	color: var(--text);
	font-family: var(--fd);
	font-size: 3rem;
	letter-spacing: .05em;
}

.container-contact-text p {
	color: var(--text);
	font-family: var(--fs);
	font-size: 1.1rem;
	opacity: .8;
	max-width: 30rem;
}

.container-contact-card {
	box-shadow:
		blue 0px 0px 0px 2px inset,
		var(--color-accent-dark) 10px -10px 0px -3px,
		rgb(31, 193, 27) 10px -10px,
		var(--color-accent-dark) 20px -20px 0px -3px,
		rgb(255, 217, 19) 20px -20px,
		var(--color-accent-dark) 30px -30px 0px -3px,
		rgb(255, 156, 85) 30px -30px,
		var(--color-accent-dark) 40px -40px 0px -3px,
		rgb(255, 85, 85) 40px -40px;
	padding: 2rem;
	width: 24rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

/* --- WhatsApp: prioridad --- */
.contact-whatsapp {
	display: flex;
	align-items: center;
	gap: 1rem;
	background-color: #25D366;
	color: #ffffff;
	text-decoration: none;
	padding: 1rem 1.25rem;
	border-radius: 8px;
	transition: transform 0.2s ease, background-color 0.3s ease;
}

.contact-whatsapp:hover {
	background-color: #1ebe5b;
	transform: translateY(-3px);
}

.contact-whatsapp i {
	font-size: 2.5rem;
}

.contact-whatsapp-info {
	display: flex;
	flex-direction: column;
}

.contact-whatsapp-title {
	font-family: var(--fs);
	font-weight: var(--font-weight);
	font-size: 1.1rem;
}

.contact-whatsapp-subtitle {
	font-family: var(--fs);
	font-size: .85rem;
	opacity: .85;
}

/* --- Contacto secundario --- */
.container-contact-more {
	display: flex;
	flex-direction: column;
	gap: .75rem;
}

.container-contact-more span {
	color: var(--text);
	font-family: var(--fs);
	font-size: .9rem;
	opacity: .7;
}

.contact-email {
	display: flex;
	align-items: center;
	gap: .75rem;
	color: var(--text);
	text-decoration: none;
	font-family: var(--fs);
	font-size: .95rem;
	transition: color 0.3s ease;
}

.contact-email:hover {
	color: var(--yellow-c);
}

.contact-email i {
	font-size: 1.3rem;
}

@media (max-width: 768px) {
	.section-contact {
		height: auto;
		padding: 4rem 1.5rem;
		display: block;
	}
	.container-contact {
		width: 100%;
	}
	.container-contact-card {
		width: 100%;
	}
}
.section-faq {
	padding: 80px 20px;
	background-color: #fafafa;
	font-family: system-ui, -apple-system, sans-serif;
}

.faq-container {
	max-width: 1100px;
	margin: 0 auto;
}

.faq-header {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 60px auto;
}

.faq-header h2 {
	font-size: 2.5rem;
	color: #111111;
	margin-bottom: 16px;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.faq-header p {
	font-size: 1.1rem;
	color: #666666;
	line-height: 1.5;
}

/* El Grid maneja el diseño responsivo sin necesidad de Media Queries complejas */
.faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
}

.faq-item {
	background: transparent;
}

.faq-item h3 {
	font-size: 1.25rem;
	color: #111111;
	margin-bottom: 12px;
	font-weight: 600;
	line-height: 1.4;
}

.faq-item p {
	font-size: 1rem;
	color: #555555;
	line-height: 1.6;
}

.aio-section {
	background: var(--blue-b);
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto auto;
	justify-items: center;
	gap: 40px;
	padding: 80px 20px;
	/*max-width: 900px;*/
	margin: 0 auto;
	font-family: system-ui, -apple-system, sans-serif;
	grid-template-areas:
		"texto"
		"tarjeta";
		border-bottom: 1px solid white;
}

.aio-content {
	grid-area: texto;
	text-align: center;
	max-width: 750px;
}

.aio-badge {
	background-color: var(--text);
	color: var(--blue-b);
	padding: 6px 16px;
	border-radius: 99px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	display: inline-block;
}

.aio-title {
	font-size: 32px;
	color: var(--text);
	margin: 20px 0 15px 0;
	line-height: 1.2;
}

.aio-text {
	font-size: 18px;
	color: var(--text);
	line-height: 1.6;
}

.aio-preview-card {
	grid-area: tarjeta;
	width: 100%;
	max-width: 600px;
	background-color: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.card-bots {
	background-color: #f9fafb;
	padding: 15px 20px;
	border-bottom: 1px solid #e5e7eb;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.bot-name {
	background-color: #ffffff;
	border: 1px solid #d1d5db;
	padding: 4px 12px;
	border-radius: 6px;
	font-size: 12px;
	color: #374151;
	font-weight: 500;
}

.card-content {
	padding: 25px;
}

.user-prompt {
	font-style: italic;
	color: #6b7280;
	font-size: 16px;
	margin-bottom: 20px;
	padding-left: 15px;
	border-left: 3px solid #d1d5db;
}

.ai-answer {
	background-color: #f0fdf4;
	border: 1px solid #bbf7d0;
	padding: 18px;
	border-radius: 10px;
	color: #166534;
	line-height: 1.5;
}
/*
.footer {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 50vh;
	width: 100%;
	background: var(--yellow-c);
	position: relative;
}

.footer-links {
	position: absolute;
	left: 5rem;
	display: flex;
	flex-direction: column;
	gap: .5rem;
	flex-wrap: wrap;
}

.footer-links ul {
	list-style: none;
}

.footer-links a {
	text-decoration: none;
	font-size: 2rem;
	font-family: var(--fd);
	color: var(--blue-b);
}

.footer-links a:hover {
	text-decoration: underline var(--blue-b) solid 4px;
	transition: ease-in 0.3s;
}

*/
.footer {
	display: flex;
	align-items: center;
	min-height: 50vh;
	width: 100%;
	background: var(--yellow-c);
	position: relative;
	padding: 4rem 5rem 2rem;
}

.container-footer {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.footer-top {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 3rem;
	border-bottom: 4px solid var(--blue-b);
	padding-bottom: 2.5rem;
}

/* --- Marca --- */
.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 20rem;
}

.footer-logo {
	width: 120px;
	height: auto;
}

.footer-brand-text {
	color: var(--blue-b);
	font-family: var(--fs);
	font-size: 1rem;
	line-height: 1.5;
	opacity: .85;
}

/* --- Títulos de columna --- */
.footer-links-title {
	display: block;
	color: var(--blue-b);
	font-family: var(--fd);
	font-size: 1.2rem;
	letter-spacing: .05em;
	margin-bottom: .5rem;
}

/* --- Links de navegación --- */
.footer-links ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: .6rem;
}

.footer-links a {
	text-decoration: none;
	font-size: 1.2rem;
	font-family: var(--fs);
	color: var(--blue-b);
	transition: padding-left 0.2s ease;
}

.footer-links a:hover {
	text-decoration: underline var(--blue-b) solid 3px;
	padding-left: .3rem;
}

/* --- Contacto --- */
.footer-contact {
	display: flex;
	flex-direction: column;
	gap: .8rem;
}

.footer-whatsapp,
.footer-email,
.footer-instagram {
	display: flex;
	align-items: center;
	gap: .6rem;
	text-decoration: none;
	font-family: var(--fs);
	font-size: 1rem;
	color: var(--blue-b);
	transition: color 0.3s ease, transform 0.2s ease;
}

.footer-whatsapp i,
.footer-email i,
.footer-instagram i {
	font-size: 1.4rem;
}

.footer-whatsapp:hover,
.footer-email:hover,
.footer-instagram:hover {
	color: var(--red-b);
	transform: translateX(4px);
}

/* --- Barra inferior --- */
.footer-bottom {
	display: flex;
	justify-content: center;
}

.footer-bottom p {
	color: var(--blue-b);
	font-family: var(--fs);
	font-size: .85rem;
	opacity: .7;
}

@media (max-width: 767px) {
	.footer {
		padding: 3rem 1.5rem 1.5rem;
		min-height: auto;
	}

	.footer-top {
		flex-direction: column;
		gap: 2rem;
	}

	.footer-brand {
		max-width: 100%;
	}
}
@media (max-width: 480px) {
	.container-contact-img {
		display: none;
	}

	.container-section-four-text {
		grid-area: area-texto;

	}

	.container-section-four-card {
		grid-area: area-tarjeta;
		justify-content: center;
	}

	.container-section-four {
		display: grid;
		grid-template-columns: 1fr;
		justify-items: center;
		grid-template-areas:
			"area-texto"
			"area-tarjeta";
	}

	#bottom-section-four {
		display: none;
	}

	#top-section-four {
		display: none;
	}

	.toggle_btn i {
		display: block;
		top: 1rem;

	}

	.nav {
		display: none;
	}

	.dropdown_menu.open {
		display: flex;
		justify-content: center;
	}

	.nav.logo {
		display: block;
	}
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
	.container-contact-img {
		display: none;
	}

	.header {
		padding: 15px 5%;
	}

	.menu-links {
		gap: 0.8rem;
	}

	.menu-links li {
		font-size: 1.5rem;
	}

	.menu-contact a {
		font-size: 1.5rem;
	}

	.logo-img {
		width: 110px;
		height: 65px;
	}

	.text-logan h6 {
		font-size: 3.5rem;
	}

	.user-text i {
		font-size: 3.5rem;
	}

	.user-text h6 {
		font-size: 2rem;
	}

	.img-lamp img {
		width: 180px;
		height: 300px;
	}

	#h6-text-lamp-max {
		font-size: 2rem;
	}

	#h6-text-lamp-min {
		font-size: 1.2rem;
	}

	#img-user-lamp-d {
		height: 450px;
	}
}

@media (max-width: 767px) {
	.container-contact-img {
		display: none;
	}

	.toggle_btn i {
		display: block;
		top: 1rem;

	}

	.line {
		display: none;
	}

	.header {
		padding: 10px 4%;
	}

	.menu-links {
		display: none;
	}

	.menu-contact {
		display: none;
	}

	.nav {

		padding: 0 20px;
	}

	.container-text-two {
		justify-content: space-between;
	}


	.logo-img {
		width: 90px;
		height: 55px;
	}

	.text-logan {
		width: 80%;
	}

	.text-logan h6 {
		font-size: 2.5rem;
	}

	.user-text {
		flex-direction: column;
		text-align: center;
	}

	.user-text i {
		font-size: 3rem;
		margin-bottom: 10px;
	}

	.user-text h6 {
		font-size: 1.5rem;
	}

	.line {
		left: 10%;
		border-left: 5px solid #000;
	}

	.container-text-tres {
		flex-direction: column;

	}

	.img-lamp {
		position: relative;
		left: 0;
		text-align: center;
		margin-bottom: 20px;
	}

	.img-lamp img {
		width: 150px;
		height: 250px;
	}

	.text-lamp {
		height: auto;
		min-height: 50vh;
	}

	.text-lamp-h6 {
		position: relative;
		bottom: 0;
		text-align: center;
	}

	.img-user-lamp {
		height: auto;
		min-height: 50vh;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	#img-user-lamp-d {
		position: relative;
		height: 350px;
		bottom: auto;
	}
}



@media (max-width: 480px) {

.box-one-hero {
	grid-area: box-one-hero;
}

.box-two-hero {
	grid-area: box-two-hero;
}

.box-three-hero {
	grid-area: box-three-hero;
}

.box-four-hero {
	grid-area: box-four-hero;
}

#text-hero-button {
	display: none;
}

#img-lamp-hero {
	display: none;
}

.container-hero {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-areas:
		"box-one-hero"
		"box-two-hero"
		"box-three-hero"
		"box-four-hero";
}

#img-lamp-hero {
	display: none;
}

.line {
	display: none;
}

.nav {
	display: flex;
	justify-content: space-between;
	padding: 0 15px;
}

.menu-links,
.menu-contact {
	display: none;
}

.container-text-two {
	justify-content: end;
}


.nav.logo {
	display: block;
}

.logo-img {
	width: 70px;
	height: 45px;
}

.text-logan h6 {
	font-size: 1.8rem;
}

.user-text i {
	font-size: 2.5rem;
}

.user-text h6 {
	font-size: 1.2rem;
}

.text-lamp-h6 {
	padding: 0.5rem;
}

#h6-text-lamp-max {
	font-size: 1.5rem;
}

#h6-text-lamp-min {
	font-size: 1rem;
}

#img-user-lamp-d {
	height: 250px;
}

.section,
.section-two,
.section-tres {

	min-height: 100vh;

}
}

/* Ajustes para orientación horizontal en móviles */
@media (max-width: 767px) and (orientation: landscape) {


	.section,
	.section-two,
	.section-tres {
		min-height: auto;
		padding: 60px 20px 20px;
	}

	.text-logan h6 {
		font-size: 2rem;
	}

	.container-user-text {

		justify-content: end;
	}

	.user-text {
		padding: 1rem;
		flex-direction: row;
	}

	.img-lamp img {
		width: 120px;
		height: 200px;
	}

	#img-user-lamp-d {
		height: 200px;
	}
}