/* -------------------------------------------------------------
   JK7 Plataformas - Design System & Stylesheet
   ------------------------------------------------------------- */

/* Variables */
:root {
  --primary-color: #FF8200;       /* Orange Brand */
  --primary-hover: #E07200;
  --dark-color: #2E2E2E;          /* Dark Gray */
  --dark-accent: #1E1E1E;
  --light-bg: #F5F6F8;            /* Premium Off-White */
  --white: #FFFFFF;
  --text-dark: #212529;
  --text-muted: #6C757D;
  --font-family: 'Montserrat', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.footer-legal{
  text-color: #fff;
}

/* Base resets & typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: var(--white);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Floating WhatsApp Button */
.whatsapp-floating {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  animation: pulse-green 2s infinite;
}

.whatsapp-floating:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #1EBE5D;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-floating img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

/* Pulse Keyframes for Green WhatsApp Floating */
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* HERO SECTION */
.hero-section {
  position: relative;
  background: url('bg1.jpg') no-repeat center center / cover;
  padding: 60px 0 100px 0;
  min-height: auto;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.hero-container {
  z-index: 2;
}

/* Hero Logo */
.hero-logo {
  max-height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: var(--transition-smooth);
}

.hero-logo:hover {
  transform: scale(1.03);
}

/* Typography in Hero */
.hero-title {
  color: var(--white);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1.25;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  color: var(--white);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 2px;
  opacity: 0.9;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1.35rem;
  }
}

/* Highlight Circle Items */
.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlight-image-wrapper {
  width: 250px;
  height: 250px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
  margin-bottom: 20px;
}

.highlight--item:hover .highlight-image-wrapper {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 130, 0, 0.35);
  border-color: var(--white);
}

.highlight-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.highlight-text {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  max-width: 250px;
  line-height: 1.4;
  margin-top: 5px;
}

/* Button Call To Action (Orange) */
.btn-cta {
  background-color: var(--primary-color);
  border: none;
  color: var(--white);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 16px 36px;
  border-radius: 10px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 5px 20px rgba(255, 130, 0, 0.4);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-cta:hover {
  background-color: var(--primary-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 130, 0, 0.5);
}

.btn-cta:active {
  transform: translateY(0);
}

.btn-icon {
  height: 22px;
  width: auto;
  object-fit: contain;
}

/* CTA Shiny Sweep Effect */
.btn-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: all 0.6s ease;
}

.btn-cta:hover::after {
  left: 100%;
}

/* Pulse Animation for CTA Button */
.pulse-button {
  animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 130, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(255, 130, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 130, 0, 0);
  }
}


/* EQUIPMENTS SECTION */
.equipments-section {
  padding: 80px 0;
  background-color: var(--white);
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.equipments-box {
  background-color: var(--dark-color);
  border-radius: 20px;
  padding: 50px 30px;
  box-shadow: var(--shadow-strong);
}

.section-title {
  font-weight: 800;
  font-size: 1.85rem;
  letter-spacing: 1px;
}

#equipments-title {
  color: var(--white);
}

.title-divider {
  width: 60px;
  height: 2px;
  background-color: #F3F3F3;
  margin: 15px auto 40px auto;
  opacity: 0.8;
}

.equipment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
}

.equipment-img-container {
  width: 100%;
  max-width: 200px;
  height: 180px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 8px;
  overflow: hidden;
  padding: 5px;
  transition: var(--transition-smooth);
}

.equipment-img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.equipment-item:hover .equipment-img {
  transform: scale(1.08);
}

.equipment-item:hover .equipment-img-container {
  transform: translateY(-5px);
}

.equipment-desc {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 10px;
  padding: 0 10px;
  opacity: 0.9;
}


/* WHY CHOOSE US SECTION */
.why-choose-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.storefront-img-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  transition: var(--transition-smooth);
}

.storefront-img-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

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

.why-title {
  font-weight: 800;
  font-size: 2.15rem;
  line-height: 1.25;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.highlight-orange {
  color: var(--primary-color);
}

.benefits-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.benefit-icon {
  background-color: var(--white);
  color: var(--primary-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 130, 0, 0.1);
  transition: var(--transition-smooth);
}

.benefit-item:hover .benefit-icon {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
}

.benefit-text h3 {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 5px;
  color: var(--text-dark);
}

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

.why-footer-text {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-top: 15px;
}


/* CALL TO ACTION & CONTACT SECTION */
.cta-section {
  position: relative;
  background: url('bg2.jpg') no-repeat center center / cover;
  padding: 90px 0;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Premium Orange-ish Overlay (Semi-transparent to show bg2.jpg) */
  background: linear-gradient(135deg, rgba(255, 130, 0, 0.4) 0%, rgba(220, 80, 0, 0.65) 100%);
  z-index: 1;
}

.cta-section .container {
  z-index: 2;
}

.cta-title {
  color: var(--white);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1.2;
}

/* Pill buttons for CTA Section */
.btn-cta-dark, .btn-cta-white {
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: none;
  transition: var(--transition-smooth);
}

.btn-cta-dark {
  background-color: rgba(0, 0, 0, 1);
  color: var(--white) !important;
}

.btn-cta-dark:hover {
  background-color: rgba(30, 30, 30, 1);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-cta-white {
  background-color: var(--white);
  color: var(--text-dark) !important;
}

.btn-cta-white:hover {
  background-color: rgba(245, 245, 245, 1);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-icon-svg {
  height: 20px;
  width: auto;
}

/* Address container below CTA buttons */
.address-container {
  margin-top: 15px;
}

.address-text {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.address-icon-svg {
  height: 22px;
  width: auto;
}


/* MAP SECTION */
.map-section {
  width: 100%;
  display: block;
  line-height: 0;
}

.map-section iframe {
  width: 100%;
  vertical-align: bottom;
}


/* FOOTER SECTION */
.footer-section {
  background-color: #1A1A1A;
  color: #999;
}

.footer-section p {
  font-size: 0.9rem;
  text-color: #fff;
}


/* -------------------------------------------------------------
   RESPONSIVIDADE (MEDIA QUERIES)
   ------------------------------------------------------------- */

@media (max-width: 991px) {
  .hero-section {
    padding: 50px 0 80px 0;
  }
  
  .why-choose-section {
    padding: 60px 0;
  }
  
  .cta-section {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }

  .highlight-image-wrapper {
    width: 220px;
    height: 220px;
  }

  .highlight-text {
    font-size: 0.85rem;
  }

  .equipments-box {
    padding: 40px 20px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .why-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .why-choose-section .col-md-6 {
    margin-top: 30px;
  }
  
  .why-footer-text {
    text-align: center;
  }
  
  #why-cta-btn {
    display: flex;
    margin: 20px auto 0 auto;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .address-text {
    font-size: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .highlight-item {
    margin-bottom: 10px;
  }
  
  .whatsapp-floating {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-floating img {
    width: 28px;
    height: 28px;
  }
}
