
/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #1f2937;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background-color: #f9fafb;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Estilo por defecto: 25% de ancho y alto */
.logo {
  width: 25%;
  height: 25%;
}

/* Para dispositivos con ancho máximo de 768px (smartphones) */
@media (max-width: 768px) {
  .logo {
    width: 100%;
    height: 100%;
  }
}

.company-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
}

.company-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
}

.nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
}

.nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 1.5rem;
  background-color: #1e3a8a;
  color: white;
}

.hero h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #2563eb;
  color: white;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: bold;
}

.cta:hover {
  background-color: #1d4ed8;
}

/* About Section */
.about {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 1.5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-img {
  flex: 1 1 300px;
  max-width: 400px;
  border-radius: 0.5rem;
}

.about-text {
  flex: 2;
}

.about-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.about-text ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: 1rem;
}

.about-text ul li {
  margin-bottom: 0.5rem;
}

/* Use Cases */
.use-cases {
  background-color: #f3f4f6;
  padding: 4rem 1.5rem;
}

.use-cases h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.use-case {
  background: white;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.use-case img {
  max-width: 100%;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
  padding: 4rem 1.5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonials h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.testimonials blockquote {
  font-style: italic;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.author {
  font-weight: bold;
  color: #374151;
}

/* Contact */
.contact {
  background-color: #eff6ff;
  text-align: center;
  padding: 4rem 1.5rem;
}

.contact h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact a {
  color: #2563eb;
  text-decoration: underline;
}

/* Footer */
.footer {
  background-color: #111827;
  color: white;
  text-align: center;
  padding: 1.5rem;
}

.adolfo{
	border-radius:50%;

}


.integraciones {
  text-align: center;
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.integraciones h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.integraciones p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.logos-integraciones {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logos-integraciones img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logos-integraciones img:hover {
  transform: scale(1.05);
}

