


:root {
  --primary-color: #2c3e50;
  --secondary-color: rgb(52, 152, 219);
  --accent-color: #e74c3c;
  --light-color: #ecf0f1;
  --dark-color: #34495e;
  --success-color: #27ae60;
  --warning-color: #f39c12;
  --danger-color: #e74c3c;
}


[class*="text-"] strong,
[class*="text-"] b,
[style*="color"] strong,
[style*="color"] b,
.text-white strong, .text-white b,
.text-light strong, .text-light b {
  color: inherit;
}


.has-primary-bg {
  background-color: var(--primary-color);
}

.has-secondary-bg {
  background-color: var(--secondary-color);
}

.has-accent-bg {
  background-color: var(--accent-color);
}

.has-light-bg {
  background-color: var(--light-color);
}

.has-dark-bg {
  background-color: var(--dark-color);
}


.has-primary-text {
  color: var(--primary-color);
}

.has-secondary-text {
  color: var(--secondary-color);
}

.has-accent-text {
  color: var(--accent-color);
}


.clean-navy {
  background-color: #1a2638;
}

.clean-navy-text {
  color: #1a2638;
}

.clean-blue {
  background-color: #3a5f7a;
}

.clean-blue-text {
  color: #3a5f7a;
}

.clean-silver {
  background-color: #b8c6cc;
}

.clean-silver-text {
  color: #b8c6cc;
}

.clean-white {
  background-color: #ffffff;
}

.clean-white-text {
  color: #ffffff;
}

.clean-gray {
  background-color: #6c757d;
}

.clean-gray-text {
  color: #6c757d;
}


.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(0, 0, 0, 0.05) 100%);
  animation: heroShimmer 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes heroShimmer {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.02) rotate(0.5deg);
    opacity: 0.5;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.2s ease-out;
}

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

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 50%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  opacity: 0.3;
}

.hero-particle:nth-child(1) {
  width: 20px;
  height: 20px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 8s;
}

.hero-particle:nth-child(2) {
  width: 15px;
  height: 15px;
  top: 60%;
  left: 80%;
  animation-delay: 2s;
  animation-duration: 6s;
}

.hero-particle:nth-child(3) {
  width: 25px;
  height: 25px;
  top: 30%;
  left: 70%;
  animation-delay: 4s;
  animation-duration: 10s;
}

.hero-particle:nth-child(4) {
  width: 10px;
  height: 10px;
  top: 80%;
  left: 20%;
  animation-delay: 1s;
  animation-duration: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero.is-medium {
  min-height: 50vh;
}

.has-background-clean-navy {
  background-color: #1a2638;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.hero .hero-body {
  position: relative;
  z-index: 2;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(52, 152, 219, 0.6);
  z-index: 1;
}

.hero-foot {
  z-index: 5;
}

.hero .title,
.hero .subtitle {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 2;
  animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
  0% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }
  100% {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.2);
  }
}

.hero .button-clean,
.hero .button-clean-secondary {
  position: relative;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  color: white;
  animation: buttonPulse 4s ease-in-out infinite;
}

@keyframes buttonPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.hero .button-clean:hover,
.hero .button-clean-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 0 3px rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero .button-clean {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.hero .button-clean:hover {
  background: rgba(255, 255, 255, 0.25);
}

.hero .button-clean-secondary {
  background: rgba(44, 62, 80, 0.8);
  backdrop-filter: blur(10px);
}

.hero .button-clean-secondary:hover {
  background: rgba(52, 152, 219, 0.9);
}


.service-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}


.testimonial-card {
  border-left: 4px solid var(--secondary-color);
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.testimonial-author {
  font-weight: bold;
  color: var(--primary-color);
}


.team-member {
  text-align: center;
  padding: 1rem;
}

.team-member .image {
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  width: 120px;
  height: 120px;
}

.team-member h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.team-member .position {
  color: var(--secondary-color);
  font-style: italic;
}


.process-step {
  position: relative;
  padding: 2rem 1rem;
  text-align: center;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 25%;
  left: 50%;
  width: 2px;
  height: 20px;
  background-color: var(--secondary-color);
}

.process-icon {
  width: 80px;
  height: 80px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}


.contact-form {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: 8px;
}

.form-field {
  margin-bottom: 1.5rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary-color);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}


.button-clean {
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.button-clean:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button-clean-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.button-clean-secondary:hover {
  background-color: var(--primary-color);
  color: white;
}

.button-accent {
  background-color: var(--accent-color);
  color: white;
}

.button-accent:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}


.price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin: 0.5rem 0;
}

.price-currency {
  font-size: 1.2rem;
  vertical-align: super;
}


.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '✓';
  color: var(--success-color);
  font-weight: bold;
  margin-right: 1rem;
}


.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

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

.faq-question {
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.faq-answer {
  margin-top: 0.5rem;
  color: #666;
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.faq-question.active::after {
  content: '−';
}


.map-container {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}


.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 1rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-consent-banner p {
  margin: 0 1rem 0 0;
  flex: 1;
}

.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 0.5rem;
}


.lightbox-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}


.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.success-icon {
  color: var(--success-color);
}


@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }
  
  .process-step:not(:last-child)::after {
    display: none;
  }
  
  .cookie-consent-banner {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .cookie-consent-banner .cookie-buttons {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }
}


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


.text-premium {
  color: #d4af37;
  font-weight: 600;
}

.text-classic {
  color: #2c3e50;
  font-weight: 500;
}

.bg-pattern {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f8f9fa"/><path d="M0 0L100 100M100 0L0 100" stroke="%23e9ecef" stroke-width="0.5" opacity="0.3"/></svg>');
}


@media print {
  .cookie-consent-banner,
  .navbar,
  .hero::before {
    display: none !important;
  }
  
  .service-card,
  .testimonial-card {
    box-shadow: none;
    border: 1px solid #000;
  }
}