/* RESET DE BASE + BODY */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}
html, body { height: 100%; }
body {
  color: white;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  min-height: 100vh;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-x: hidden;
  padding-top: 100px;
  padding-bottom: 50px;
  font-size: 16px;
}
footer.footer { margin-top: auto; }

:root {
  --card-c1: #8E2DE2;
  --card-c2: #4A00E0;
  --card-c3: #FF6FD8;
}

.hero-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.header, .footer {
  padding: 20px;
}
.logo {
  height: 100px;
  max-width: 80vw;
  background-color: transparent;
  transition: none;
  display: block;
  margin: 0 auto;
}
img:hover { filter: none; }

.info-bar {
  display: flex; justify-content: center; gap: 60px; margin-bottom: 30px; font-size: 18px;
}
.info-cell {
  color: white; text-decoration: none; font-weight: 500; font-size: 18px;
}
.info-cell:hover { text-decoration: underline; }
.title h1, .main-title {
  font-size: 36px; font-weight: bold; margin: 20px auto; max-width: 600px;
}
.main-title { font-size: 48px; }

.Navigation {
  position: fixed; bottom: 20px; right: 20px;
  display: flex; gap: 10px;
}
.Navigation img { height: 40px; width: 40px; cursor: pointer; }

.retour-button, .cta-button, .contact-button {
  display: inline-block;
  margin: 30px auto 0;
  padding: 10px 20px;
  background-color: #006A80;
  color: white;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.retour-button:hover, .cta-button:hover, .contact-button:hover { background-color: #004f60; }
.cta-button, .contact-button { font-size: 18px; margin-top: 20px; padding: 15px 30px; }

.footer {
  margin-top: 40px;
  background-color: rgba(0, 0, 0, 0.2);
  border-top: 1px solid white;
  text-align: center;
}
.footer p { margin-bottom: 10px; font-size: 14px; }
.footer-links a { color: white; margin: 0 10px; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }

.fade-in { opacity: 0; transform: translateY(20px); animation: fadeInUp 1s ease forwards; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

.content-wrapper, .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.services-section, .offers-container, .detail-section, .extensions-card, .faq-container section, .cta-section, .testimonials-section {
  background-color: rgba(255,255,255,0.1);
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  max-width: 100%;
  margin: 40px auto 50px;
  padding: 30px;
}

.services-section h2, .content-wrapper section h2, .detail-title, .faq-container section h2 {
  font-size: 26px;
  color: white;
  margin-bottom: 15px;
}
.block-title { font-size: 30px; }
.intro {
  font-size: 22px;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}
.service-card {
  position: relative;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-align: center;
  color: #fff;
  background: linear-gradient(45deg, var(--card-c1), var(--card-c2), var(--card-c3));
  background-size: 300% 300%;
  animation: gradientAnim 8s ease infinite;
  flex: 1 1 200px;
  max-width: 300px;
}
@keyframes gradientAnim {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}
.services-cards {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px;
}


.testimonials-section { margin-top: 40px; }
.testimonial-carousel { background-color: #00485a; border-radius: 15px; padding: 20px; max-width: 600px; margin: 0 auto; }
.testimonial { display: none; color: white; }
.testimonial.active { display: block; }
.testimonial p { font-size: 16px; font-style: italic; }
.testimonial span { display: block; margin-top: 10px; font-weight: bold; }

/* Responsive Design */
@media (max-width: 1100px) {
  .main-title { font-size: 34px; }
  .content-wrapper, .container, .services-section, .detail-section { max-width: 98vw; }
  .offers-container { flex-direction: column; gap: 25px; }
  .service-card { width: 100%; max-width: 98vw; }
}
@media (max-width: 800px) {
  body { font-size: 15px; padding-top: 70px; }
  .main-title { font-size: 26px; }
  .block-title { font-size: 20px; }
  .cta-button, .contact-button { font-size: 16px; padding: 10px 16px; }
  .footer, .header { padding: 10px; }
  .services-cards { flex-direction: column; gap: 16px; }
  .service-card { width: 100%; min-width: 0; flex:1 1 100px; }
  .intro { font-size: 17px; }
}
@media (max-width: 600px) {
  body { padding: 20px 0; }
  .info-cell { padding: 4px 8px; margin: 0; }
  .info-bar { justify-content: center; gap: 10px; flex-wrap: wrap; }
  .main-title, .title h1 { font-size: 18px; }
  .content-wrapper, .container { padding: 0 4vw; }
  .footer, .header { padding: 5px; font-size: 13px; }
  .services-section, .testimonials-section { padding: 14px 6px; }
  .retour-button, .cta-button, .contact-button { font-size: 14px; padding: 8px 10px; }
  .intro { font-size: 15px; }
}
