/* Ondas de Innovación - Stylesheet */
/* NO BEM, NO consistency - Human imperfections included */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: arial, helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  background: #ffffff;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.site-head {
  background: #fff;
  padding: 15px 0;
}

.header-secondary {
  border-bottom: 2px solid #06699b;
}

.mobile-nav {
  display: none;
  background: #0a5a84;
  padding: 20px;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav ul li {
  margin-bottom: 15px;
}

.mobile-nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}

.mobile-nav-trigger {
  display: none;
  font-size: 28px;
  color: #06699b;
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 768px) {
  .mobile-nav-trigger {
    display: block;
  }
  .main-nav {
    display: none;
  }
}

.header-middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 15px;
}

.site-head-logo-picture {
  height: 50px;
  width: auto;
}

.contact-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-block .phone {
  font-size: 18px;
  font-weight: bold;
  color: #06699b;
  margin: 0;
}

/* Main Navigation */
.main-nav {
  background: #06699b;
  padding: 0;
}

.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.main-nav ul li {
  margin: 0;
}

.main-nav ul li a {
  display: block;
  padding: 15px 25px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.main-nav ul li a:hover {
  background: #0a5a84;
}

/* Hero Section */
.slider-main-block {
  padding: 60px 0;
  background: linear-gradient(135deg, #f5f9fc 0%, #ffffff 100%);
}

.hero-section {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  min-width: 300px;
}

.hero-image {
  flex: 1;
  text-align: center;
  min-width: 300px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-blue {
  background: #06699b;
  color: #ffffff;
}

.btn-blue:hover {
  background: #0a5a84;
}

.btn-triangle {
  position: relative;
  padding-right: 45px;
}

.btn-triangle:after {
  content: '▶';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-action {
  background: green;
  color: #fff;
  padding: 14px 35px;
  font-size: 18px;
}

.btn-big {
  padding: 14px 35px;
  font-size: 18px;
}

/* Features Section */
.ftco-section {
  padding: 50px 0;
}

.services-section {
  background: rgba(255, 255, 255, 0.9);
  margin-top: -50px;
  position: relative;
}

.container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.px-md-5 {
  padding-left: 40px;
  padding-right: 40px;
}

.py-3 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-4 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.d-flex {
  display: flex;
}

.col-md-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
}

@media (max-width: 992px) {
  .col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.services {
  padding: 20px;
  transition: all 0.3s ease;
}

.services .num {
  font-weight: 600;
  color: #83b582;
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

.services .heading {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
}

.services .heading a {
  color: #000000;
  text-decoration: none;
}

.services p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* Podcast Grid */
.category-discounts {
  padding: 60px 0;
  background: #f8f9fa;
}

#podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.podcast-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.podcast-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.podcast-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, #06699b 0%, #0a5a84 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: rgba(255,255,255,0.3);
}

.podcast-content {
  padding: 20px;
}

.podcast-title {
  font-size: 18px;
  font-weight: 600;
  color: #0a5a84;
  margin-bottom: 12px;
  line-height: 1.3;
}

.podcast-platform {
  display: inline-block;
  padding: 5px 12px;
  background: #83b582;
  color: #ffffff;
  font-size: 12px;
  border-radius: 3px;
  margin-bottom: 15px;
  font-weight: 600;
}

.podcast-link {
  display: inline-block;
  padding: 10px 20px;
  background: #06699b;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s;
}

.podcast-link:hover {
  background: #0a5a84;
}

/* About Section */
.site-section {
  padding: 70px 0;
}

.text-image-about-layout {
  background: #ffffff;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.mb-5 {
  margin-bottom: 3rem;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.text-center {
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.col-lg-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
  padding: 0 15px;
}

.ml-auto {
  margin-left: auto;
}

@media (max-width: 992px) {
  .col-lg-6, .col-lg-5 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
}

.circle-bg {
  position: relative;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.h3 {
  font-size: 28px;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.text-black {
  color: #000000;
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
}

/* Numbers/Stats Section */
.numbers-block {
  background: linear-gradient(135deg, #06699b 0%, #0a5a84 100%);
  padding: 60px 0;
  margin: 50px 0;
}

.number-block {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.large-num {
  display: block;
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
}

.num-text {
  display: block;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.4;
}

/* About Small Block */
.about-small-block {
  padding: 70px 0;
  background: #f5f9fc;
  text-align: center;
}

.about-small-block .wrapper {
  max-width: 900px;
}

/* Topics Section */
.topics-section {
  padding: 70px 0;
  background: #ffffff;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin-top: 20px;
}

.topic-card {
  text-align: center;
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.topic-card:hover {
  background: #e9f5ff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(6,105,155,0.15);
}

.topic-icon {
  margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
  padding: 70px 0;
  background: #f8f9fa;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f5f9fc;
}

.faq-icon {
  color: #06699b;
  transition: transform 0.3s;
  font-size: 14px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* CTA Contact Section */
.cta-contact-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #0a5a84 0%, #06699b 100%);
  text-align: center;
}

.cs-bg-3 {
  background: #0a5a84;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Footer */
.footer-big {
  background: #2c3e50;
  color: #ffffff;
  padding: 50px 0 20px;
}

.footer-white {
  background: #34495e;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-top .contact {
  flex: 1;
  min-width: 250px;
}

.footer-top .contact .phone {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  margin: 10px 0;
}

.footer-top .contact .address,
.footer-top .contact .email-footer {
  color: #bdc3c7;
}

.footer-nav {
  flex: 2;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 180px;
}

.footer-nav ul li {
  margin-bottom: 12px;
}

.footer-nav ul li a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-nav ul li a:hover {
  color: #3498db;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid #7f8c8d;
  margin-top: 30px;
}

.footer-bottom p {
  margin: 0;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 90, 132, 0.95);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-content p {
  color: #ffffff;
  font-size: 15px;
  flex: 1;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cookie-link {
  color: #ffffff;
  text-decoration: underline;
  font-size: 14px;
}

.btn-cookie-accept {
  background: green;
  color: #ffffff;
  border: none;
  padding: 10px 25px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-cookie-accept:hover {
  background: darkgreen;
}

/* Page Header Section */
.page-header-section {
  background: linear-gradient(135deg, #06699b 0%, #0a5a84 100%);
  padding: 80px 0 60px;
  text-align: center;
  color: #ffffff;
}

.page-header-section h1 {
  color: #ffffff !important;
}

.page-header-section p {
  color: #ecf0f1 !important;
}

/* Podcast Detail Section */
.podcast-detail-section {
  padding: 60px 0;
  background: #ffffff;
}

.breadcrumb {
  font-size: 14px;
  color: #666;
}

/* Disclaimer Box */
.disclaimer-box {
  animation: fadeIn 0.5s ease-in;
}

/* About Content Section */
.about-content-section {
  padding: 60px 0;
  background: #ffffff;
}

.content-block {
  margin-bottom: 40px;
}

/* Contact Content Section */
.contact-content-section {
  padding: 60px 0;
  background: #ffffff;
}

.contact-form {
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
}

.form-input {
  font-family: arial, helvetica, sans-serif;
}

.form-input:focus {
  outline: none;
  border-color: #06699b;
  box-shadow: 0 0 0 3px rgba(6,105,155,0.1);
}

.contact-info-box {
  margin-top: 20px;
}

/* Legal Content Section */
.legal-content-section {
  padding: 60px 0;
  background: #ffffff;
}

.legal-content-section h2 {
  margin-top: 40px;
}

.legal-content-section h3 {
  margin-top: 30px;
}

.legal-content-section ul {
  margin-bottom: 25px;
}

.legal-content-section ul li {
  margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
  }
  
  .header-middle {
    flex-direction: column;
    gap: 20px;
  }
  
  .numbers-block .wrapper {
    flex-direction: column;
  }
  
  .footer-top {
    flex-direction: column;
  }
  
  .topics-grid {
    grid-template-columns: 1fr;
  }
  
  #podcast-grid {
    grid-template-columns: 1fr;
  }
}

/* Hidden elements */
.page-overlay {
  display: none;
}

[hidden] {
  display: none !important;
}

/* Animations */
.ftco-animate {
  opacity: 1;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Utility Classes */
.align-self-stretch {
  align-self: stretch;
}

.media-body {
  flex: 1;
}

.ftco-no-pb {
  padding-bottom: 0 !important;
}

.ftco-no-pt {
  padding-top: 0 !important;
}
