/* ESTILOS GENERALES */
:root {
	--rojo-principal: #D35400;
	--naranja-intenso: #E67E22;
	--naranja-suave: #F39C12;
	--naranja-claro: #FAD7A0;
	--texto-oscuro: #2C3E50;
	--texto-claro: #7F8C8D;
	--fondo-blanco: #FFFFFF;
	--fondo-gris: #F8F9F9;
	--sombra: rgba(0, 0, 0, 0.1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	color: var(--texto-oscuro);
	line-height: 1.6;
	overflow-x: hidden;
}

h1, h2, h3, h4 {
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: 2.8rem;
}

h2 {
	font-size: 2.2rem;
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
}

h2:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(to right, var(--rojo-principal), var(--naranja-intenso));
	border-radius: 2px;
}

p {
	margin-bottom: 1.5rem;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

section {
	padding: 80px 0;
}

.btn {
	display: inline-block;
	padding: 14px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	text-align: center;
	cursor: pointer;
	border: none;
}

.btn-primary {
	background: linear-gradient(to right, var(--rojo-principal), var(--naranja-intenso));
	color: white;
	box-shadow: 0 4px 15px rgba(211, 84, 0, 0.3);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(211, 84, 0, 0.4);
}

.btn-secondary {
	background: transparent;
	color: var(--rojo-principal);
	border: 2px solid var(--rojo-principal);
}

.btn-secondary:hover {
	background: var(--rojo-principal);
	color: white;
}

/* HEADER Y NAVEGACIÓN */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 10px var(--sombra);
	z-index: 1000;
	transition: all 0.3s ease;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}

.logo {
	font-size: 2rem;
	font-weight: 800;
	color: var(--rojo-principal);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.logo span {
	color: var(--naranja-intenso);
}

.nav-links {
	display: flex;
	list-style: none;
}

.nav-links li {
	margin-left: 30px;
}

.nav-links a {
	text-decoration: none;
	color: var(--texto-oscuro);
	font-weight: 600;
	font-size: 1.1rem;
	transition: color 0.3s ease;
	position: relative;
}

.nav-links a:hover {
	color: var(--rojo-principal);
}

.nav-links a:after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--rojo-principal);
	transition: width 0.3s ease;
}

.nav-links a:hover:after {
	width: 100%;
}

.menu-toggle {
	display: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--rojo-principal);
}

/* SECCIÓN HERO */
.hero {
	background: linear-gradient(135deg, rgba(211, 84, 0, 0.9), rgba(230, 126, 34, 0.9)), url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1500&q=80');
	background-size: cover;
	background-position: center;
	color: white;
	text-align: center;
	padding: 180px 0 120px;
	position: relative;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero p {
	font-size: 1.3rem;
	margin-bottom: 2.5rem;
	opacity: 0.9;
}

.btn-hero {
	background: white;
	color: var(--rojo-principal);
	font-size: 1.2rem;
	padding: 16px 40px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* SECCIÓN NOSOTROS */
.about {
	background-color: var(--fondo-blanco);
}

.about-content {
	display: flex;
	align-items: center;
	gap: 50px;
}

.about-text {
	flex: 1;
}

.about-image {
	flex: 1;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px var(--sombra);
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
}

.about-image:hover img {
	transform: scale(1.05);
}

.values {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
	gap: 20px;
}

.value-item {
	text-align: center;
	flex: 1;
	padding: 20px;
	border-radius: 10px;
	transition: transform 0.3s ease;
}

.value-item:hover {
	transform: translateY(-10px);
}

.value-icon {
	font-size: 2.5rem;
	color: var(--rojo-principal);
	margin-bottom: 15px;
}

/* SECCIÓN SERVICIOS */
.services {
	background-color: var(--fondo-gris);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.service-card {
	background: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 15px var(--sombra);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: center;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
	font-size: 3rem;
	color: var(--rojo-principal);
	margin-bottom: 20px;
}

.service-card h3 {
	color: var(--texto-oscuro);
	margin-bottom: 15px;
}

/* SECCIÓN CONFIANZA */
.trust {
	background-color: var(--fondo-blanco);
}

.trust-content {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.testimonials {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.testimonial-card {
	background: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 15px var(--sombra);
	position: relative;
}

.testimonial-card:before {
	content: "“";
	font-size: 5rem;
	color: var(--naranja-claro);
	position: absolute;
	top: -10px;
	left: 10px;
	font-family: Georgia, serif;
}

.testimonial-text {
	font-style: italic;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.testimonial-author {
	display: flex;
	align-items: center;
}

.author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--naranja-claro);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	color: white;
	font-weight: bold;
}

.stats {
	display: flex;
	justify-content: space-around;
	text-align: center;
	background: linear-gradient(to right, var(--rojo-principal), var(--naranja-intenso));
	color: white;
	padding: 50px 30px;
	border-radius: 10px;
	margin-top: 30px;
}

.stat-item h3 {
	font-size: 2.5rem;
	margin-bottom: 10px;
}

.partners {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 50px;
}

.partner-logo {
	height: 60px;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: all 0.3s ease;
}

.partner-logo:hover {
	filter: grayscale(0%);
	opacity: 1;
}

/* SECCIÓN CONTACTO */
.contact {
	background-color: var(--fondo-gris);
}

.contact-content {
	display: flex;
	gap: 50px;
}

.contact-info {
	flex: 1;
}

.contact-form {
	flex: 1;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
}

.contact-icon {
	font-size: 1.5rem;
	color: var(--rojo-principal);
	margin-right: 15px;
	margin-top: 5px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
}

.form-control {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-control:focus {
	border-color: var(--rojo-principal);
	outline: none;
}


textarea.form-control {
	min-height: 150px;
	resize: vertical;
}

.map {
	margin-top: 40px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px var(--sombra);
}

.map iframe {
	width: 100%;
	height: 300px;
	border: none;
}

/* FOOTER */
footer {
	background-color: var(--texto-oscuro);
	color: white;
	padding: 60px 0 30px;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-column {
	flex: 1;
	min-width: 250px;
}

.footer-column h3 {
	color: white;
	margin-bottom: 20px;
	font-size: 1.3rem;
	position: relative;
	padding-bottom: 10px;
}

.footer-column h3:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: var(--rojo-principal);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: #bbb;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--naranja-suave);
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-links a:hover {
	background-color: var(--rojo-principal);
	transform: translateY(-3px);
}

.copyright {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #bbb;
	font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.about-content {
		flex-direction: column;
	}

	.contact-content {
		flex-direction: column;
	}

	.stats {
		flex-direction: column;
		gap: 30px;
	}
}

@media (max-width: 768px) {
	.menu-toggle {
		display: block;
	}

	.nav-links {
		position: fixed;
		top: 80px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 80px);
		background-color: white;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		padding-top: 50px;
		transition: left 0.3s ease;
		box-shadow: 0 5px 10px var(--sombra);
	}

	.nav-links.active {
		left: 0;
	}

	.nav-links li {
		margin: 15px 0;
	}

	.hero h1 {
		font-size: 2.2rem;
	}

	.hero p {
		font-size: 1.1rem;
	}

	.values {
		flex-direction: column;
	}
}
.contact-content {
	display: flex;
	gap: 50px;
	align-items: flex-start;
}

.contact-info {
	flex: 1;
}

.contact-map {
	flex: 1;
}

.contact-details {
	background: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 15px var(--sombra);
}

.map {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px var(--sombra);
	height: 100%;
}

.map iframe {
	width: 100%;
	height: 400px;
	border: none;
}

/* Responsive */
@media (max-width: 768px) {
	.contact-content {
		flex-direction: column;
	}

	.map iframe {
		height: 300px;
	}
}
/* Estilos para el logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container img {
    height: 45px; /* Ajusta este valor según el tamaño de tu logo */
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--rojo-principal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--naranja-intenso);
}

/* Logo en el footer */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-logo h3 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-container img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .footer-logo img {
        height: 40px;
    }
    
    .footer-logo h3 {
        font-size: 1.3rem;
    }
}