/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body::before {
  content: "";
  display: block;
}

body {
  background: #EBF8FF;
  color: #1a1a1a;
  line-height: 1.6;
  display: flex;
  flex-direction: column;

  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* CONTAINER */
.container {
  width: 90%;
  margin: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 190px;
  /* tamaño del logo */
  height: auto;
}

.logo-text h2 {
  color: #EBF8FF;
  font-size: 20px;
  letter-spacing: 1px;
  margin: 0;
}

.logo-text span {
  color: #6fb6ff;
  font-size: 12px;
  font-weight: bold;
}

/* HEADER */
.header {
  background: #081b33;
  padding: 5px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo span {
  color: #6fb6ff;
  font-size: 12px;
  font-weight: bold;
}

.nav a {
  color: #EBF8FF;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.nav-btn {
  background: #2d87ff;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: bold;
}

.nav-btn:hover {
  background: #005acf;

}

/* HERO */
.hero {
  background: linear-gradient(to right, #081b33, #0b3c74);
  padding: 80px 0;
  color: white;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  padding: 7px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 14px;
  color: #d6e9ff;
}

.hero-text h1 {
  font-size: 44px;
  margin-bottom: 15px;
}

.hero-description {
  color: #d6e9ff;
  margin-bottom: 25px;
  font-size: 16px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #2d87ff;
  color: white;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #005acf;
}

/* HERO BOX */
.hero-box {
  flex: 0.9;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 25px;
  backdrop-filter: blur(10px);
}

.hero-box h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #d3eff7;
}

.hero-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hero-item {
  color: #EBF8FF;
  font-size: 14px;
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  color: #081b33;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 45px;
  color: #555;
}

/* ABOUT */
.about {
  background: #ebf8ff;
  padding: 80px 0;
}

.about-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #081b33;
}

.about-text p {
  margin-bottom: 14px;
  color: #444;
}

.about-cards {
  flex: 1;
  min-width: 280px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.about-card {
  background: #d3eff7;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #EBF8FF;
  transition: 0.3s;
}

.about-card:hover {
  transform: translateY(-4px);
  border: 1px solid #2d87ff;
  background-color: #004db128;
}

.about-card h3 {
  margin-bottom: 8px;
  color: #081b33;
}

/* PORTFOLIO */
.portfolio {
  padding: 80px 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.portfolio-item {
  background: #d7f0faee;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid #e1e6ef;
  transition: 0.3s;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  border: 1px solid #004db1;
  background-color: #004db128;
}

.portfolio-item h3 {
  margin-bottom: 10px;
  color: #081b33;
}

.whatsapp-btn {
  display: inline-block;
  background: #2d87ff;
  color: white;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s;
  text-align: center;
  margin-top: 10px;
}

.whatsapp-btn:hover {
  background: #005acf;
}

/* CONTACT */
.contact {
  padding: 80px 0;
  background: #ecfbff;
}

.contact-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 40px;
  flex-wrap: wrap;
}


.contact-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.contact-info h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #081b33;
}

.contact-info p {
  margin-bottom: 15px;
  color: #444;
}

.info-box {
  background: #d3eff7;
  padding: 30px;
  border-radius: 14px;
  border: 1px solid #e1e6ef;
  margin-bottom: 18px;
  text-align: center;
  width: 60%;
}


.info-box p {
  margin-bottom: 8px;
  color: #555;
  line-height: 2.0;
  letter-spacing: 1.0px;
  font-size: 18px;
}

.contact-form {
  flex: 1;
  min-width: 280px;
  background: #EBF8FF;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid #e1e6ef;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1px solid #2d87ff;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #081b33;
  color: white;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #0b3c74;
}

/* FOOTER */
.footer {
  background: #081b33;
  padding: 18px 0;
  color: #EBF8FF;
  text-align: center;
  font-size: 14px;
}

/* MAPA GOOGLE */
.map-box {
  width: 100%;
  height: 250px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e1e6ef;
  margin-top: 15px;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.08);
}

footer {
  margin-top: auto;
}



.portfolio-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  border: 1px solid #e1e6ef;
  transition: 0.3s;
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.03);
}