:root {
  --primary-blue: #0056b3; 
  --light-blue: #f4f8fc;
  --dark-navy: #1a365d;
  --text-dark: #333333;
  --text-muted: #555555;
  --border-color: #eef2f6;
  --green-accent: #28a745;
  --green-light: #e6faf0;
}

* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; 
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 40px;
  background-color: white;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.navbar .nav-btn {
  padding: 6px 13px;
  font-size: 0.9rem;
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.snowflake {
  font-size: 1.8rem;
  color: var(--primary-blue);
}

.logo-text strong {
  display: block;
  font-size: 1rem;
  color: var(--dark-navy);
  letter-spacing: 0.5px;
  line-height: 0.4;
  margin-top: 8px;
}

.logo-text span {
  font-size: 1rem;
  color: var(--primary-blue);
  font-weight: bold;
}

.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

.btn-primary {
  background-color: var(--primary-blue);
  color: white;
  padding: 12px 26px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover {
  background-color: #004494;
}

.btn-secondary {
  background-color: white;
  color: #333;
  padding: 12px 26px;
  border: 2px solid #cbd5e1;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s;
}

.btn-secondary:hover {
  background-color: #f8fafc;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 550px;
  padding: 80px 0;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url('src/banner_0.png') no-repeat center right;
  background-size: cover;
  opacity: 0;
  animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 620px;
  color: #222222;
}

.hero-content h1 {
  font-size: 2.8rem;
  color: #111111;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-desc {
  font-size: 1.15rem;
  margin-bottom: 35px;
  color: #444444;
  font-weight: 400;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.btn-hero-primary {
  background-color: #0056b3;
  color: #ffffff;
  padding: 14px 28px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s, transform 0.1s;
}

.btn-hero-primary:hover {
  background-color: #004085;
}

.btn-hero-whatsapp {
  background-color: transparent;
  color: #0056b3;
  border: 2px solid #0056b3;
  padding: 12px 26px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s, color 0.2s, transform 0.1s;
}

.btn-hero-whatsapp:hover {
  background-color: #0056b3;
  color: #ffffff;
  transform: translateY(-1px);
}

.hero-trust-badges {
  display: flex;
  gap: 30px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge-icon {
  font-size: 1.8rem;
  background: #f1f5f9;
  padding: 8px;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge strong {
  display: block;
  color: #111111;
  font-size: 0.95rem;
}

.hero-badge span {
  font-size: 0.85rem;
  color: #555555;
}

@media (max-width: 992px) {
  .hero {
    padding: 60px 0;
    text-align: center;
  }
  
  .hero-bg-overlay {
    background: url('src/banner_0.png') no-repeat center center;
    background-size: cover;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 20px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-trust-badges {
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    max-width: 300px;
    margin: 0 auto;
  }
}

.features-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0px 20px rgba(0,0,0,0.03);
  border: 1px solid var(--border-color);
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.card-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  width: 100%;
}

.f-icon {
  font-size: 1.8rem;
  display: inline-flex;
  background: none;
  padding: 0;
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 1.15rem;
  color: var(--dark-navy);
  margin: 0;
  line-height: 1.3;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.pricing-section {
  text-align: center;
  padding: 60px 0;
  background-color: #ffffff;
}

.pricing-section h2 {
  font-size: 2.2rem;
  color: var(--dark-navy);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 850px;
  margin: 40px auto 25px auto;
}

.pricing-card {
  background: white;
  border-radius: 14px;
  padding: 35px;
  box-shadow: 0 0px 30px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
  text-align: left;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 2px solid var(--light-blue);
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.icon {
  font-size: 1.8rem;
  background: #e6f0fa;
  padding: 12px;
  border-radius: 50%;
}

.icon.green { background: var(--green-light); }

.card-title h3 {
  font-size: 1.4rem;
  color: var(--dark-navy);
}

.card-title small {
  font-size: 0.85rem;
  color: #888;
}

.price {
  white-space: nowrap;
  font-size: 2.6rem;
  font-weight: bold;
  color: var(--dark-navy);
  margin-left: auto;
}

.features-list { list-style: none; }
.features-list li {
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: #444;
}

.pricing-note {
  font-size: 0.95rem;
  color: #777;
  max-width: 600px;
  margin: 0 auto;
}

.process-section {
  background-color: white;
  padding: 80px 0;
}

.process-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--dark-navy);
  margin-bottom: 60px;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "➔";
  font-size: 1.2rem;
  color: #b0cddb;
  letter-spacing: 3px;
  position: absolute;
  top: 35px;
  right: -25%;
  width: 50%;
  border-bottom: 2px dashed #cbd5e1;
  height: 0;
  overflow: visible;
  line-height: 0;
  text-indent: 90%;
}

.step-icon-wrapper {
  width: 76px;
  height: 76px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.step-icon {
  font-size: 1.8rem;
  color: var(--primary-blue);
}

.green-check {
  color: var(--green-accent);
  font-weight: bold;
}

.step-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}

.step-number {
  width: 20px;
  height: 20px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h4 {
  font-size: 1.05rem;
  color: var(--dark-navy);
  font-weight: bold;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0 8px;
}

.audience-section {
  padding: 70px 0;
  background: var(--light-blue);
}

.audience-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--dark-navy);
  margin-bottom: 40px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  max-width: 950px;
  margin: 0 auto;
}

.audience-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.aud-icon {
  font-size: 2.2rem;
  background: var(--light-blue);
  padding: 10px;
  border-radius: 50%;
}

.audience-card h4 {
  font-size: 1.2rem;
  color: var(--dark-navy);
  margin-bottom: 8px;
}

.faq-section {
  background-color: white;
  padding: 70px 0;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--dark-navy);
  margin-bottom: 40px;
}

.faq-container {
  max-width: 750px;
  margin: 0 auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  padding: 10px 25px;
  border: 1px solid var(--border-color);
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--dark-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow {
  font-size: 0.85rem;
  color: #888;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer p {
  padding-bottom: 22px;
  color: #555;
  font-size: 1rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
  color: var(--primary-blue);
}

.contact-section {
  background: url('src/banner_1.png') no-repeat center bottom;
  background-size: cover;
  color: #ffffff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 80px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  transform: rotate(-2deg);
  pointer-events: none;
}

.site-footer {
  background-color: #000000;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 25px;
  justify-content: space-between;
  align-items: stretch;
}

.footer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-info h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.footer-info .subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.4;
}

.weather-notice {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 15px;
}

.footer-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  flex: 1.1;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  color: #333333;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-item strong {
  display: block;
  font-size: 1rem;
  color: #1e293b;
}

.contact-item span {
  font-size: 0.9rem;
  color: #64748b;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blue-icon {
  background-color: #e0f2fe;
  color: #0284c7;
}

.green-icon {
  background-color: #dcfce7;
  color: #22c55e;
}

.map-card {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 250px;
  display: block;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-socials {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s, transform 0.2s;
  display: inline-flex;
}

.footer-socials a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

section[id] {
  scroll-margin-top: 60px;
}

.floating-contact-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2000;
}

.contact-trigger-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-blue);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 86, 179, 0.3);
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-bottom: 4px;
}

.contact-trigger-btn:hover {
  background-color: #004494;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 86, 179, 0.4.5);
}

.contact-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: white;
  box-shadow: -5px 0 30px rgba(0,0,0,0.15);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  z-index: 2002;
}

.floating-contact-wrapper.panel-open .contact-panel {
  right: 0;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  background: var(--light-blue);
}

.panel-header h3 {
  color: var(--dark-navy);
  font-size: 1.3rem;
}

.panel-close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.panel-close-btn:hover {
  color: #111;
}

.panel-form {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-navy);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  margin-top: 10px;
}

.panel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2001;
}

.panel-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
