.logo img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

/*====================================
RESET GENERAL
====================================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f7fbff;
  color: #17202a;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/*====================================
HEADER / NAVBAR
====================================*/

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;

  background: white;

  z-index: 1000;

  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.navbar {
  height: 78px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

/* LOGO */

.logo {
  display: flex;

  align-items: center;

  gap: 12px;

  font-size: 27px;

  font-weight: 700;

  color: #087ea4;
}

.logo span{
    font-size:24px;
    font-weight:700;
}

.logo i {
  font-size: 32px;

  color: #00aeea;
}

/* MENU */

nav {
  display: flex;

  gap: 35px;
}

nav a {
  text-decoration: none;

  color: #263238;

  font-weight: 500;

  transition: 0.3s;
}

nav a:hover {
  color: #009fe3;
}

/* BOTON HEADER */

.btn-header {
  text-decoration: none;

  background: #00aeea;

  color: white;

  padding: 13px 25px;

  border-radius: 30px;

  font-weight: 600;

  transition: 0.3s;
}

.btn-header:hover {
  background: #008ac0;

  transform: translateY(-3px);
}

/*====================================
HERO
====================================*/

.hero {
  min-height: 100vh;

  padding-top: 85px;

  display: flex;

  align-items: center;

  background: linear-gradient(120deg, #ffffff, #eaf8ff);
}

.hero-content {
  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 50px;
}

/* TEXTO */

.tag {
  display: inline-block;

  background: #dff6ff;

  color: #008ac0;

  padding: 10px 20px;

  border-radius: 30px;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 25px;
}

.hero h1 {
  font-size: 55px;

  line-height: 1.15;

  color: #102027;

  margin-bottom: 25px;
}

.hero h1 span {
  color: #00aeea;
}

.hero p {
  font-size: 18px;

  line-height: 1.8;

  color: #54636b;

  max-width: 550px;

  margin-bottom: 35px;
}

/* BOTONES */

.hero-buttons {
  display: flex;

  gap: 20px;
}

.btn-primary {
  background: #00aeea;

  color: white;

  text-decoration: none;

  padding: 16px 32px;

  border-radius: 40px;

  font-weight: 600;

  transition: 0.3s;
}

.btn-primary:hover {
  background: #008ac0;

  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid #00aeea;

  color: #008ac0;

  text-decoration: none;

  padding: 14px 32px;

  border-radius: 40px;

  font-weight: 600;

  transition: 0.3s;
}

.btn-outline:hover {
  background: #00aeea;

  color: white;
}

/* IMAGEN */

.hero-image {
  display: flex;

  justify-content: center;
}

.hero-image img {
  width: 100%;

  max-width: 550px;
  border-radius:25px;
  box-shadow:0 20px 40px rgba(0,0,0,.15);

  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

/*====================================
RESPONSIVE
====================================*/

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .hero p {
    margin: auto;

    margin-bottom: 30px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-image {
    margin-top: 40px;
  }

  .btn-header {
    display: none;
  }
}

/*====================================
SERVICIOS
====================================*/

.services {
  padding: 100px 0;

  background: white;
}

.section-header {
  text-align: center;

  max-width: 750px;

  margin: auto;

  margin-bottom: 60px;
}

.section-header span {
  color: #00aeea;

  font-weight: 700;

  letter-spacing: 1px;

  font-size: 14px;
}

.section-header h2 {
  font-size: 40px;

  margin: 15px 0;

  color: #102027;
}

.section-header p {
  color: #60727a;

  line-height: 1.8;
}

.services-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;
}

.service-card {
  background: white;

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.3s;

  border-top:5px solid #00aeea;

}

.service-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;

  height: 220px;

  object-fit: cover;
}

.service-content {
  padding: 30px;
}

.service-content i {
  font-size: 35px;

  color: #00aeea;

  margin-bottom: 20px;
}

.service-content h3 {
  font-size: 25px;

  margin-bottom: 15px;
}

.service-content p {
  color: #60727a;

  line-height: 1.7;

  margin-bottom: 25px;
}

.service-content a {
  text-decoration: none;

  color: #00aeea;

  font-weight: 600;
}

.service-content a:hover {
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 30px;
  }
}

/*====================================
POR QUE ELEGIRNOS
====================================*/

.why {
  padding: 100px 0;

  background: #f5fbfe;
}

.why-content {
  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 70px;
}

.why-image img {
  width: 100%;

  border-radius: 25px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.why-text span {
  color: #00aeea;

  font-weight: 700;

  font-size: 14px;

  letter-spacing: 1px;
}

.why-text h2 {
  font-size: 40px;

  margin: 15px 0 20px;

  color: #102027;
}

.why-text > p {
  color: #60727a;

  line-height: 1.8;

  margin-bottom: 35px;
}

.features {
  display: flex;

  flex-direction: column;

  gap: 25px;
}

.feature {
  display: flex;

  align-items: flex-start;

  gap: 20px;
}

.feature i {
  min-width: 55px;

  height: 55px;

  display: flex;

  justify-content: center;

  align-items: center;

  background: #dff6ff;

  color: #00aeea;

  border-radius: 15px;

  font-size: 24px;
}

.feature h3 {
  margin-bottom: 8px;

  font-size: 20px;
}

.feature p {
  color: #60727a;

  line-height: 1.6;
}

@media (max-width: 900px) {
  .why-content {
    grid-template-columns: 1fr;
  }

  .why-text h2 {
    font-size: 32px;
  }
}

/*====================================
GALERÍA
====================================*/

.gallery {
  padding: 100px 0;

  background: white;
}

.gallery-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.gallery-item {
  position: relative;

  overflow: hidden;

  border-radius: 20px;

  height: 320px;

  cursor: pointer;
}

.gallery-item img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-info {
  position: absolute;

  bottom: 0;

  left: 0;

  width: 100%;

  padding: 25px;

  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));

  color: white;
}

.gallery-info h3 {
  font-size: 23px;

  margin-bottom: 5px;
}

.gallery-info p {
  font-size: 15px;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/*====================================
MARCAS
====================================*/

.brands {
  padding: 80px 0;

  background: #f5fbfe;
}

.brands-grid {
  display: grid;

  grid-template-columns: repeat(6, 1fr);

  gap: 20px;
}

.brand {
  height: 90px;

  background: white;

  border-radius: 15px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 20px;

  font-weight: 700;

  color: #455a64;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);

  transition: 0.3s;
}

.brand:hover {
  transform: translateY(-5px);

  color: #00aeea;
}

/*====================================
TESTIMONIOS
====================================*/

.reviews {
  padding: 100px 0;

  background: white;
}

.reviews-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.review-card {
  padding: 35px;

  border-radius: 20px;

  background: #f8fcff;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.stars {
  color: #ffc107;

  font-size: 25px;

  margin-bottom: 20px;
}

.review-card p {
  color: #60727a;

  line-height: 1.8;

  margin-bottom: 25px;

  font-style: italic;
}

.review-card h3 {
  color: #102027;
}

@media (max-width: 1000px) {
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*====================================
FAQ
====================================*/

.faq {
  padding: 100px 0;

  background: #f5fbfe;
}

.faq-container {
  max-width: 900px;

  margin: auto;
}

.faq-item {
  background: white;

  padding: 30px;

  margin-bottom: 20px;

  border-radius: 15px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
  margin-bottom: 12px;

  font-size: 20px;
}

.faq-item p {
  color: #60727a;

  line-height: 1.7;
}

/*====================================
CONTACTO
====================================*/

.contact {
  padding: 100px 0;

  background: white;
}

.contact-box {
  background: #eaf8ff;

  border-radius: 30px;

  padding: 60px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 50px;

  align-items: center;
}

.contact-text span {
  color: #00aeea;

  font-weight: 700;
}

.contact-text h2 {
  font-size: 38px;

  margin: 15px 0;
}

.contact-text p {
  color: #60727a;

  line-height: 1.7;
}

.contact-info {
  margin: 30px 0;
}

.contact-info p {
  margin-bottom: 15px;
}

.contact-info i {
  color: #00aeea;

  margin-right: 10px;
}

.contact-image img {
  width: 100%;

  border-radius: 20px;
}

/*====================================
FOOTER
====================================*/

footer {
  background: #102027;

  color: white;

  padding: 60px 0 20px;
}

.footer-content {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr;

  gap: 40px;
}

.footer-logo {
  font-size: 25px;

  font-weight: 700;
}

.footer-logo i {
  color: #00aeea;
}

.footer-logo p {
  margin-top: 20px;

  color: #b0bec5;

  font-size: 15px;
}

footer h3 {
  margin-bottom: 20px;
}

footer a {
  display: block;

  color: #b0bec5;

  text-decoration: none;

  margin-bottom: 12px;
}

footer a:hover {
  color: #00aeea;
}

.copyright {
  text-align: center;

  margin-top: 40px;

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  color: #90a4ae;
}

@media (max-width: 900px) {
  .contact-box {
    grid-template-columns: 1fr;

    padding: 35px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}


