:root {
  --primary: #ffa200; /* Amarelo baseado na imagem */
  --black: #111111;
  --dark: #1a1a1a;
  --darker: #0d0d0d;
  --white: #ffffff;
  --gray: #cccccc;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: var(--darker);
  color: var(--white);
  line-height: 1.6;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  background-color: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 2px solid var(--primary);
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}

.logo i {
  color: var(--primary);
  font-size: 1.5rem;
}

.logo-img {
  max-height: 10px;
  width: auto;
  object-fit: contain;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--black);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  border: 2px solid var(--primary);
  font-size: 0.9rem;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("./images/servico2.jpeg");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(13, 13, 13, 1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-24h {
  background: linear-gradient(135deg, #111, #2a2a2a);
  border: 2px solid var(--primary);
  border-radius: 15px;
  padding: 15px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(255, 184, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 184, 0, 0);
  }
}

.badge-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.badge-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin: 5px 0;
}
.badge-subtitle {
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  color: var(--gray);
}

.badge-24h-img {
  width: 150px;
  height: 120px;
  margin-bottom: 10px;
  object-fit: cover;
  border-radius: 20%;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-style: italic;
}

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

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  letter-spacing: 2px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 15px;
  border-radius: 5px;
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--gray);
  font-weight: 500;
}

/* Hero Image and Payment Info */
.hero-image-wrapper {
  margin-bottom: 20px;
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
  border: 3px solid var(--primary);
}

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

.payment-info {
  display: flex;
  margin-top: 25px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background-color: rgba(17, 17, 17, 0.8);
  padding: 12px 25px;
  border-radius: 30px;
  border: 2px solid var(--primary);
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.payment-info i {
  font-size: 1.5rem;
}

.pix-icon {
  color: #32bcad; /* Cor oficial do Pix */
}

.card-icon {
  color: var(--primary);
}

/* CTA Box */
.cta-box {
  background-color: var(--black);
  border-radius: 20px;
  padding: 25px 40px;
  border: 2px solid var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  text-align: center;
  position: relative;
  margin-top: 10px;
}

.cta-text {
  background-color: var(--primary);
  color: var(--black);
  font-weight: 900;
  padding: 6px 20px;
  display: inline-block;
  border-radius: 10px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.1rem;
  white-space: nowrap;
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-decoration: none;
  color: var(--white);
  background: transparent;
  transition: var(--transition);
  margin-top: 10px;
}

.cta-button:hover {
  transform: scale(1.05);
}

.cta-icon-wrapper {
  background-color: var(--primary);
  color: var(--black);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.cta-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cta-small {
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gray);
}

.cta-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.whatsapp-icon {
  font-size: 3rem;
  color: #25d366;
  margin-left: 5px;
}

/* Services */
.services {
  padding: 60px 0;
  background-color: var(--darker);
  position: relative;
  z-index: 20;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service-card {
  background-color: var(--black);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  border-bottom: 4px solid var(--primary);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  background-color: var(--dark);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Features */
.features {
  background-color: var(--black);
  padding: 30px 0;
  border-top: 1px solid var(--dark);
  border-bottom: 1px solid var(--dark);
}

.features-flex {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
}

.feature-item i {
  color: var(--primary);
  font-size: 1.8rem;
}

/* General Sections */
.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary);
  text-transform: uppercase;
  font-style: italic;
}

/* About */
.about {
  padding: 80px 0;
  background-color: var(--darker);
}

.about-content {
  background-color: var(--dark);
  padding: 40px;
  border-radius: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  border: 1px solid rgba(255, 184, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  margin-bottom: 15px;
  color: var(--gray);
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* Gallery */
.gallery {
  padding: 80px 0;
  background-color: var(--black);
}

.carousel-container {
  display: flex;
  align-items: center;
  position: relative;
  gap: 15px;
}

.gallery-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 20px;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--dark);
}

.gallery-carousel::-webkit-scrollbar {
  height: 8px;
}
.gallery-carousel::-webkit-scrollbar-track {
  background: var(--dark);
  border-radius: 4px;
}
.gallery-carousel::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 4px;
}

.gallery-item {
  flex: 0 0 300px;
  scroll-snap-align: center;
  border-radius: 15px;
  overflow: hidden;
  height: 250px;
  border: 2px solid var(--dark);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.carousel-btn {
  background-color: var(--primary);
  color: var(--black);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.carousel-btn:hover {
  background-color: var(--white);
  color: var(--primary);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .carousel-btn {
    display: none;
  }
}

/* Reviews */
.reviews {
  padding: 80px 0;
  background-color: var(--darker);
}

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

.review-card {
  background-color: var(--dark);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--gray);
  flex-grow: 1;
}

.review-author {
  font-weight: 700;
  color: var(--white);
  text-align: right;
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: var(--black);
  padding: 60px 0 30px;
  text-align: center;
}

.footer-logo-img {
  height: 300px;
  width: auto;
  object-fit: contain;
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-links a {
  color: var(--black);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  text-transform: uppercase;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-contact p {
  margin-bottom: 12px;
}

.footer-contact i {
  margin-right: 10px;
}

.contact-link {
  color: var(--black);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.contact-link:hover {
  text-decoration: underline;
  transform: scale(1.05);
}

.copyright {
  font-weight: 500;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background-color: #20b858;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    padding: 10px 15px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .btn-primary {
    padding: 8px 15px;
    font-size: 0.8rem;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .cta-box {
    padding: 30px 15px 20px;
    width: 100%;
  }

  .cta-button {
    flex-direction: column;
    gap: 10px;
  }

  .cta-content {
    align-items: center;
    text-align: center;
  }

  .cta-number {
    font-size: 2.2rem;
  }

  .whatsapp-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 2.5rem;
    opacity: 0.2;
  }

  .features-flex {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 10px;
  }

  .footer-slogan {
    font-size: 1.4rem;
    flex-direction: column;
    text-align: center;
  }

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

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  animation: zoomIn 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2001;
}

.lightbox-close:hover {
  color: var(--primary);
  transform: scale(1.1);
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.gallery-item img {
  cursor: pointer;
}
:root {
  --primary: #ffa200; /* Amarelo baseado na imagem */
  --black: #111111;
  --dark: #1a1a1a;
  --darker: #0d0d0d;
  --white: #ffffff;
  --gray: #cccccc;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: var(--darker);
  color: var(--white);
  line-height: 1.6;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  background-color: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 2px solid var(--primary);
}

.logo {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}

.logo i {
  color: var(--primary);
  font-size: 1.5rem;
}

.logo-img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--black);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  border: 2px solid var(--primary);
  font-size: 0.9rem;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("./images/servico2.jpeg");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(13, 13, 13, 1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-24h {
  background: linear-gradient(135deg, #111, #2a2a2a);
  border: 2px solid var(--primary);
  border-radius: 15px;
  padding: 15px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(255, 184, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 184, 0, 0);
  }
}

.badge-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.badge-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin: 5px 0;
}
.badge-subtitle {
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  color: var(--gray);
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-style: italic;
}

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

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  letter-spacing: 2px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 15px;
  border-radius: 5px;
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--gray);
  font-weight: 500;
}

/* Hero Image and Payment Info */
.hero-image-wrapper {
  margin-bottom: 20px;
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
  border: 3px solid var(--primary);
}

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

.payment-info {
  display: flex;
  margin-top: 25px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background-color: rgba(17, 17, 17, 0.8);
  padding: 12px 25px;
  border-radius: 30px;
  border: 2px solid var(--primary);
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.payment-info i {
  font-size: 1.5rem;
}

.pix-icon {
  color: #32bcad; /* Cor oficial do Pix */
}

.card-icon {
  color: var(--primary);
}

/* CTA Box */
.cta-box {
  background-color: var(--black);
  border-radius: 20px;
  padding: 25px 40px;
  border: 2px solid var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  text-align: center;
  position: relative;
  margin-top: 10px;
}

.cta-text {
  background-color: var(--primary);
  color: var(--black);
  font-weight: 900;
  padding: 6px 20px;
  display: inline-block;
  border-radius: 10px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.1rem;
  white-space: nowrap;
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-decoration: none;
  color: var(--white);
  background: transparent;
  transition: var(--transition);
  margin-top: 10px;
}

.cta-button:hover {
  transform: scale(1.05);
}

.cta-icon-wrapper {
  background-color: var(--primary);
  color: var(--black);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.cta-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cta-small {
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gray);
}

.cta-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.whatsapp-icon {
  font-size: 3rem;
  color: #25d366;
  margin-left: 5px;
}

/* Services */
.services {
  padding: 60px 0;
  background-color: var(--darker);
  position: relative;
  z-index: 20;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service-card {
  background-color: var(--black);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  border-bottom: 4px solid var(--primary);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  background-color: var(--dark);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Features */
.features {
  background-color: var(--black);
  padding: 30px 0;
  border-top: 1px solid var(--dark);
  border-bottom: 1px solid var(--dark);
}

.features-flex {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
}

.feature-item i {
  color: var(--primary);
  font-size: 1.8rem;
}

/* General Sections */
.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary);
  text-transform: uppercase;
  font-style: italic;
}

/* About */
.about {
  padding: 80px 0;
  background-color: var(--darker);
}

.about-content {
  background-color: var(--dark);
  padding: 40px;
  border-radius: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  border: 1px solid rgba(255, 184, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  margin-bottom: 15px;
  color: var(--gray);
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* Gallery */
.gallery {
  padding: 80px 0;
  background-color: var(--black);
}

.carousel-container {
  display: flex;
  align-items: center;
  position: relative;
  gap: 15px;
}

.gallery-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 20px;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--dark);
}

.gallery-carousel::-webkit-scrollbar {
  height: 8px;
}
.gallery-carousel::-webkit-scrollbar-track {
  background: var(--dark);
  border-radius: 4px;
}
.gallery-carousel::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 4px;
}

.gallery-item {
  flex: 0 0 300px;
  scroll-snap-align: center;
  border-radius: 15px;
  overflow: hidden;
  height: 250px;
  border: 2px solid var(--dark);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.carousel-btn {
  background-color: var(--primary);
  color: var(--black);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.carousel-btn:hover {
  background-color: var(--white);
  color: var(--primary);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .carousel-btn {
    display: none;
  }
}

/* Reviews */
.reviews {
  padding: 80px 0;
  background-color: var(--darker);
}

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

.review-card {
  background-color: var(--dark);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--gray);
  flex-grow: 1;
}

.review-author {
  font-weight: 700;
  color: var(--white);
  text-align: right;
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: var(--black);
  padding: 60px 0 30px;
  text-align: center;
}

.footer-logo-img {
  height: 300px;
  width: auto;
  object-fit: contain;
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-links a {
  color: var(--black);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  text-transform: uppercase;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-contact p {
  margin-bottom: 12px;
}

.footer-contact i {
  margin-right: 10px;
}

.contact-link {
  color: var(--black);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.contact-link:hover {
  text-decoration: underline;
  transform: scale(1.05);
}

.copyright {
  font-weight: 500;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background-color: #20b858;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    padding: 10px 15px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .btn-primary {
    padding: 8px 15px;
    font-size: 0.8rem;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .cta-box {
    padding: 30px 15px 20px;
    width: 100%;
  }

  .cta-button {
    flex-direction: column;
    gap: 10px;
  }

  .cta-content {
    align-items: center;
    text-align: center;
  }

  .cta-number {
    font-size: 2.2rem;
  }

  .whatsapp-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 2.5rem;
    opacity: 0.2;
  }

  .features-flex {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 10px;
  }

  .footer-slogan {
    font-size: 1.4rem;
    flex-direction: column;
    text-align: center;
  }

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

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  animation: zoomIn 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2001;
}

.lightbox-close:hover {
  color: var(--primary);
  transform: scale(1.1);
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.gallery-item img {
  cursor: pointer;
}
