/* Ocellaris Custom Footer Styles */

/* Newsletter CTA Section */
/* .ocellaris-cta-section {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 20%, rgba(255, 255, 255, 0.7) 50%, rgba(0, 0, 0, 0.3) 100%),
              url('../images/reef-background.jpg') center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
} */

.ocellaris-cta-section {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Mostrar la imagen sin un gradiente blanco encima */
  background: url('../images/reef-background.jpg') center/cover no-repeat;
  /* permitir que la imagen se mueva con el scroll (no fija) */
  background-attachment: scroll;
  overflow: hidden;
  /* color fallback si no hay imagen */
  background-color: #071033;
}

/* Si no tienes imagen todavía, usa un gradiente azul marino como fallback */
.ocellaris-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0c4a6e 100%);
  z-index: -1;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-block;
  background: var(--ocellaris-orange);
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 99, 71, 0.4);
}

.cta-button:hover {
  background: #ff4522;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 99, 71, 0.6);
}

/* Main Footer */
.ocellaris-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding-top: 60px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Contact Column */
.footer-contact {
  padding-right: 20px;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo a {
  display: inline-block;
}

.footer-logo img {
  height: 45px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-logo h3 {
  color: #fff;
  font-size: 1.5rem;
  margin: 0;
}

.contact-info h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-phone,
.contact-email {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.contact-phone svg,
.contact-email svg {
  flex-shrink: 0;
  color: #3b82f6;
}

.contact-phone a,
.contact-email a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-phone a:hover,
.contact-email a:hover {
  color: #3b82f6;
}

.contact-hours {
  margin: 15px 0;
  font-size: 0.85rem;
  line-height: 1.6;
}

.contact-hours p {
  margin: 4px 0;
}

.contact-address {
  margin-top: 15px;
  font-size: 0.85rem;
  line-height: 1.6;
}

.contact-address p {
  margin: 4px 0;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #cbd5e1;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #3b82f6;
  color: #fff;
  transform: translateY(-3px);
}

/* Footer Columns */
.footer-column h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: #3b82f6;
  padding-left: 5px;
}

/* Footer Bottom */
.footer-bottom {
  background: #020617;
  padding: 20px 0;
}

.footer-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.85rem;
}

.copyright svg {
  flex-shrink: 0;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.85rem;
}

.legal-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.legal-links a:hover {
  color: #3b82f6;
}

.legal-links .separator {
  color: #475569;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .ocellaris-cta-section {
    min-height: 250px;
  }
  
  .cta-content {
    padding: 40px 20px;
  }
  
  .cta-title {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
  
  .cta-subtitle {
    font-size: 0.9rem;
  }
  
  .cta-button {
    padding: 12px 30px;
    font-size: 0.85rem;
  }
  
  .ocellaris-footer {
    padding-top: 40px;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .footer-contact {
    padding-right: 0;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 1.25rem;
  }
  
  .cta-subtitle {
    font-size: 0.85rem;
  }
  
  .footer-logo img {
    height: 35px;
  }
  
  .social-links {
    justify-content: center;
  }
}