/* =============== 
   RESET BÁSICO
=============== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* =============== 
   HEADER + NAV
=============== */
header {
  background: #111;
  color: #fff;
  padding: 20px 0;
  position: relative;
}

.contenedorheader {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu p {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.menu-icon {
  width: 32px;
  cursor: pointer;
  display: none; /* se muestra en mobile con media queries */
}

.navbar ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color .3s;
}

.navbar a:hover {
  color: #ff4444;
}

/* Titular */
.titular {
  text-align: center;
  padding: 60px 20px;
}

.titular h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.titular h2 {
  font-weight: 400;
  margin-bottom: 20px;
  color: #ccc;
}

.titular a {
  background: #ff4444;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background .3s;
}

.titular a:hover {
  background: #cc0000;
}

/* =============== 
   SECCIONES GENERALES
=============== */
section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  position: relative;
}

h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #ff4444;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* =============== 
   ABOUT US
=============== */
.contenedor-AboutUs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.Logo-AboutUs {
  max-width: 300px;
  flex: 1 1 300px;
}

.contenedor-parrafoyboton {
  flex: 2 1 400px;
}

.contenedor-parrafoyboton p {
  margin-bottom: 12px;
}

.contenedor-parrafoyboton a {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  margin-top: 10px;
  border-radius: 20px;
  transition: background .3s;
}

.contenedor-parrafoyboton a:hover {
  background: #444;
}

/* =============== 
   SERVICES
=============== */
.contenedor-servicios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.servicios {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform .3s;
}

.servicios:hover {
  transform: translateY(-5px);
}

.servicios img {
  max-width: 100px;
  margin-top: 15px;
}

.servicios.Fuerte {
  border-top: 4px solid #ff4444;
}

.servicios.Claro {
  border-top: 4px solid #007bff;
}

/* =============== 
   CLIENTS (Carousel)
=============== */
#clients img {
  margin: auto;
}

/* =============== 
   WHY US
=============== */
.contenedor-why {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.why-1 {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  flex: 1 1 250px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.why-1 img {
  max-width: 60px;
  margin-bottom: 10px;
}

/* =============== 
   BLOG
=============== */
.contenedor-publicaciones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.publicacion {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.publicacion img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.publicacion a {
  display: inline-block;
  margin-top: 10px;
  color: #ff4444;
  font-weight: bold;
  text-decoration: none;
  transition: color .3s;
}

.publicacion a:hover {
  color: #cc0000;
}

/* =============== 
   CONTACT
=============== */
.contact-container {
  background: linear-gradient(#ff0000, #ff4444)
  display:flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.contact-left {
  flex: 1 1 400px;
}

.contact-left-title {
  margin-bottom: 20px;
}

.contact-inputs {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
}

.contact-inputs:focus {
  border-color: #ff4444;
}

button {
  background: #ff4444;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: background .3s;
}

button:hover {
  background: #cc0000;
}

.contact-right img {
  max-width: 100%;
}

/* =============== 
   FOOTER
=============== */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
}

#Whats img {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  cursor:
