/* Continentale Trochas — Shared Styles */

:root {
  --conti-blue: #002d5c;
  --conti-rosa: #c01953;
  --conti-white: #ffffff;
  --conti-gray: #f5f5f5;
  --conti-blue-light: #003d7a;
  --conti-rosa-light: #e0246a;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Custom gradient for hero sections */
.hero-gradient {
  background: linear-gradient(135deg, var(--conti-blue) 0%, #001a36 100%);
}

/* CTA button hover effects */
.btn-primary {
  background-color: var(--conti-rosa);
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.btn-primary:hover {
  background-color: var(--conti-rosa-light);
  transform: translateY(-1px);
}

.btn-secondary {
  border: 2px solid var(--conti-blue);
  color: var(--conti-blue);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.btn-secondary:hover {
  background-color: var(--conti-blue);
  color: white;
}

/* FAQ accordion */
.faq-item summary {
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--conti-blue);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item .faq-answer {
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Pricing card highlight */
.card-highlight {
  border: 2px solid var(--conti-rosa);
  box-shadow: 0 4px 24px rgba(192, 25, 83, 0.15);
}

/* Cost comparison bars */
.bar-red {
  background: linear-gradient(90deg, #dc2626, #ef4444);
}
.bar-green {
  background: linear-gradient(90deg, #16a34a, #22c55e);
}

/* Siegel images — consistent sizing */
.siegel-img {
  max-height: 100px;
  width: auto;
}

/* Logo in header */
.header-logo {
  height: 36px;
  width: auto;
}
@media (min-width: 768px) {
  .header-logo {
    height: 44px;
  }
}

/* Section spacing */
.section-padding {
  padding: 4rem 1rem;
}
@media (min-width: 768px) {
  .section-padding {
    padding: 5rem 2rem;
  }
}

/* Sticky header shadow on scroll */
.header-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

/* WhatsApp widget spacing — prevent overlap with footer */
body {
  padding-bottom: 0;
}

/* Cookie banner link style */
.cookie-link {
  color: var(--conti-blue);
  text-decoration: underline;
}
.cookie-link:hover {
  color: var(--conti-rosa);
}

/* Trust section agent photo */
.agent-photo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: 75% 20%;
  border-radius: 50%;
  border: 4px solid var(--conti-blue);
}

/* Print styles */
@media print {
  .whatsapp-widget,
  .cookie-banner,
  header,
  footer {
    display: none !important;
  }
}
