/* ============================================
   FUMICAR - Fumigaciones del Caribe
   Colores: Azul #04072D | Rojo #FC0001 | Blanco #FFFFFF
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* --- HEADER --- */
.header {
  background: #04072D;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.header__logo img {
  max-width: 180px;
}

.header__nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.header__nav a {
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.header__nav a:hover,
.header__nav a.active {
  border-bottom-color: #FC0001;
}

.header__phone {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.header__phone svg {
  fill: #FC0001;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* --- HERO --- */
.hero {
  background: linear-gradient(135deg, #04072D 0%, #0a1045 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(252,0,1,0.08) 100%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero__content h1 span {
  color: #FC0001;
}

.hero__subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 24px;
}

.hero__phone {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn--red {
  background: #FC0001;
  color: #fff;
}

.btn--green {
  background: #25D366;
  color: #fff;
}

.btn--white {
  background: #fff;
  color: #04072D;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

/* Hero Form */
.hero__form {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  color: #333;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero__form h3 {
  color: #04072D;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.hero__form p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #04072D;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.hero__form .btn {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
}

/* --- STATS --- */
.stats {
  background: #FC0001;
  padding: 40px 0;
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  color: #fff;
}

.stat__number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.stat__label {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* --- ABOUT --- */
.about {
  padding: 80px 0;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__badge {
  display: inline-block;
  background: #FC0001;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.about h2 {
  font-size: 2.2rem;
  color: #04072D;
  margin-bottom: 8px;
}

.about h3 {
  font-size: 1.2rem;
  color: #FC0001;
  margin-bottom: 20px;
}

.about p {
  color: #555;
  line-height: 1.8;
}

.about__image {
  background: linear-gradient(135deg, #04072D, #0a1045);
  border-radius: 16px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  padding: 20px;
}

/* --- SERVICES --- */
.services {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: #04072D;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-top: 4px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}

.service-card:hover {
  border-top-color: #FC0001;
  transform: translateY(-4px);
}

.service-card__icon {
  width: 60px;
  height: 60px;
  background: rgba(252,0,1,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.service-card h3 {
  color: #04072D;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- ADDITIONAL SERVICES --- */
.additional-services {
  padding: 60px 0;
}

.additional-services .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.additional-services h2 {
  font-size: 2rem;
  color: #04072D;
  margin-bottom: 16px;
}

.additional-services__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}

.additional-services__list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #555;
}

.additional-services__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 10px;
  height: 10px;
  background: #FC0001;
  border-radius: 50%;
}

/* --- BENEFITS --- */
.benefits {
  padding: 80px 0;
  background: #04072D;
  color: #fff;
}

.benefits .section-header h2 {
  color: #fff;
}

.benefits .section-header p {
  color: rgba(255,255,255,0.7);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: background 0.3s;
}

.benefit-card:hover {
  background: rgba(255,255,255,0.05);
}

.benefit-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(252,0,1,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* --- AIRBNB --- */
.airbnb {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #FC0001 0%, #d40001 100%);
  color: #fff;
}

.airbnb h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.airbnb p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0.95;
}

/* --- CONTACT PAGE --- */
.page-header {
  background: linear-gradient(135deg, #04072D 0%, #0a1045 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.85;
}

.contact {
  padding: 80px 0;
}

.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact__form h3 {
  color: #04072D;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.contact__info h3 {
  color: #04072D;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact__info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(252,0,1,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact__info-item h4 {
  color: #04072D;
  margin-bottom: 4px;
}

.contact__info-item p {
  color: #666;
  font-size: 0.95rem;
}

.coverage {
  padding: 60px 0;
  background: #f8f9fa;
}

.coverage h2 {
  text-align: center;
  color: #04072D;
  font-size: 2rem;
  margin-bottom: 32px;
}

.coverage__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.coverage__city {
  background: #fff;
  padding: 24px 16px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  font-weight: 600;
  color: #04072D;
  border-bottom: 3px solid #FC0001;
}

.map {
  padding: 0;
}

.map iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

/* --- ABOUT PAGE --- */
.about-page {
  padding: 80px 0;
}

.about-page h2 {
  font-size: 2rem;
  color: #04072D;
  margin-bottom: 8px;
}

.about-page h3 {
  font-size: 1.2rem;
  color: #FC0001;
  margin-bottom: 20px;
}

.about-page p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 800px;
}

.certifications {
  margin-top: 32px;
  padding: 24px;
  background: #f8f9fa;
  border-left: 4px solid #FC0001;
  border-radius: 0 8px 8px 0;
}

.certifications h4 {
  color: #04072D;
  margin-bottom: 8px;
}

.certifications p {
  margin-bottom: 4px;
  font-size: 0.95rem;
}

/* --- FOOTER --- */
.footer {
  background: #04072D;
  color: #fff;
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand p {
  opacity: 0.7;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
}

.footer__brand img {
  max-width: 160px;
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #FC0001;
}

.footer__links a {
  display: block;
  color: rgba(255,255,255,0.7);
  padding: 6px 0;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer__links a:hover {
  color: #FC0001;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero__content h1 {
    font-size: 2.2rem;
  }

  .hero__form {
    max-width: 500px;
  }

  .about .container,
  .additional-services .container,
  .contact .container {
    grid-template-columns: 1fr;
  }

  .services__grid,
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats .container {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .coverage__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #04072D;
    flex-direction: column;
    padding: 20px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .header__nav.active {
    display: flex;
  }

  .header__nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
  }

  .header__phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 50px 0;
  }

  .hero__content h1 {
    font-size: 1.8rem;
  }

  .services__grid,
  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .stats .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat__number {
    font-size: 2rem;
  }

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

  .coverage__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header h2,
  .about h2,
  .airbnb h2 {
    font-size: 1.7rem;
  }
}
