*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --teal-dark: #0e5f6e;
  --teal-mid: #1a7a8a;
  --teal-light: #2a9aad;
  --teal-accent: #3bbcd0;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d0;
  --white: #ffffff;
  --text-dark: #1a3a42;
  --text-gray: #4a6a72;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-mid) 50%, var(--teal-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: var(--cream);
  border-radius: 0 0 0 40%;
  transform: skewX(-8deg);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -5%;
  left: -5%;
  width: 40%;
  height: 50%;
  background: var(--teal-accent);
  border-radius: 0 60% 0 0;
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  color: var(--white);
}

.hero-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  display: block;
  color: var(--cream);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  opacity: 0.95;
  max-width: 480px;
  line-height: 1.5;
}

.hero-subtitle em {
  font-style: italic;
  color: var(--cream);
}

.hero-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  color: var(--text-dark);
}

.hero-card h2 {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--teal-accent);
}

.hero-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-gray);
}

.hero-card .portaria {
  font-weight: 600;
  color: var(--teal-dark);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.9rem 2rem;
  background: var(--cream);
  color: var(--teal-dark);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ===== TAGLINE SECTION ===== */
.tagline {
  background: var(--cream);
  padding: 4rem 2rem;
  text-align: center;
}

.tagline-inner {
  max-width: 700px;
  margin: 0 auto;
}

.tagline h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--teal-dark);
  line-height: 1.3;
}

.tagline h2 em {
  font-style: italic;
  color: var(--teal-mid);
}

/* ===== GUARANTEES ===== */
.guarantees {
  padding: 5rem 2rem;
  background: var(--white);
}

.guarantees-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-mid);
  margin-bottom: 0.75rem;
}

.guarantees h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3rem;
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.guarantee-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.guarantee-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(14, 95, 110, 0.1);
}

.guarantee-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--teal-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guarantee-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 0.3rem;
}

.guarantee-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* ===== CONTACT ===== */
.contact {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid));
  padding: 5rem 2rem;
  color: var(--white);
}

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact .role {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.25rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s, transform 0.2s;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.contact-card svg {
  width: 24px;
  height: 24px;
  stroke: var(--cream);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.contact-card span {
  font-size: 1.05rem;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  padding: 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.footer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero::before {
    display: none;
  }

  .hero {
    background: linear-gradient(180deg, var(--teal-dark) 0%, var(--teal-mid) 100%);
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 6rem 1.5rem 3rem;
    gap: 2rem;
  }

  .hero-text {
    text-align: center;
  }

  .hero-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtitle {
    margin: 0 auto;
  }

  .cta-button {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-card {
    padding: 1.5rem;
  }

  .guarantees-grid {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
  }
}
