/* Reset de Estilos Básicos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fuentes */
body {
	font-family: 'Roboto', sans-serif;
	line-height: 1.6;
	background-color: #f4f4f4;
	color: #f09b08;
}

/* Contenedor */
.container {
  width: 80%;
  margin: 0 auto;
}

/* Header */
header {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo img {
	height: 80px;
}

nav .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav .nav-links li {
  display: inline;
}

nav .nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

nav .nav-links a:hover {
  text-decoration: underline;
}

/* Hero Section */
#hero {
	background: url('hero-bg.jpg') center/cover no-repeat;
	color: #0034d1;
	text-align: center;
	padding: 100px 0;
}

#hero .hero-content {
  max-width: 700px;
  margin: 0 auto;
}

#hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

#hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.cta-btn {
  background-color: #00aaff;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.1em;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cta-btn:hover {
  background-color: #0088cc;
}

/* Sección Acerca de Nosotros */
#acerca {
  text-align: center;
  padding: 50px 0;
}

/* Servicios */
#servicios {
  background-color: #f9f9f9;
  padding: 50px 0;
}

.services-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.service-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex: 1;
}

.service-card h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 1em;
}

/* Testimonios */
#testimonios {
  padding: 50px 0;
  background-color: #eee;
}

.testimonials-slider {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.testimonial-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  font-style: italic;
}

/* Llamada a la acción */
#cta {
	background-color: #0034d1;
	color: #fff;
	text-align: center;
	padding: 50px 0;
}

#cta h2 {
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

footer .footer-links {
  margin-bottom: 20px;
}

footer .footer-links a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
}

footer .footer-links a:hover {
  text-decoration: underline;
}

footer .contact-info {
  margin-bottom: 20px;
}

footer .social-icons a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

footer .social-icons a:hover {
  color: #00aaff;
}
