@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&display=swap');

:root {
  --blue: #002b5c;
  --green: #25D366;
  --text: #333;
  --font: 'Montserrat', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background-color: #fff;
}

/* Header */
.top-nav {
  background-color: var(--blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  height: 110px;
}

.logo-alone {
  height: 100px;
}

.top-nav nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-nav nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

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

/* Hero */
.hero {
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 2rem;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.8rem;
}

.btn-contact {
  background-color: var(--green);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-contact:hover {
  background-color: #1eb555;
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  filter: none;
  opacity: 1;
}

/* Row Section */
.row-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.row-section.reverse {
  flex-direction: row-reverse;
}

.row-img img {
  width: 240px;
  height: auto;
}

.row-text {
  max-width: 520px;
  text-align: left;
}

.row-text h2 {
  color: var(--blue);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.row-text p {
  font-size: 1.2rem;
}

/* Footer */
footer {
  background-color: var(--blue);
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

footer .social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

footer .social img {
  width: 36px;
  height: 36px;
  background: none;
  border-radius: 0;
}

footer .banner-full {
  width: 100%;
  max-width: 1200px;
  display: block;
  margin: 1rem auto;
}