/*
Theme Name: Reale
Theme URI: 
Author: Slash SpA
Author URI: https://slashstudio.cl
Description: Plantilla de WordPress para sitio web Reale Seguros Chile
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: reale
*/

/* ==========================================================================
   Root Variables & General Styles
   ========================================================================== */
:root {
  --primary-color: #004b9b;
  --warning-color: #fdb414;
  --text-color: #686868;
}

body {
  font-family: "Titillium Web", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-color);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.color-warning {
  color: var(--warning-color);
}

.title-separator {
  width: 80px;
  height: 4px;
  background-color: var(--warning-color);
  margin: 1rem auto 2rem;
  border-radius: 2px;
}

/* ==========================================================================
   Button Styles
   ========================================================================== */
.btn-warning-long {
  padding: 1rem 1.5rem;
  font-size: 12px;
  font-weight: 600;
  border-radius: 15px;
  text-transform: uppercase;
  background-color: var(--warning-color);
  color: white;
  border: 1px solid var(--warning-color);
  min-width: 35%;
}

.btn-warning-long:hover {
  background-color: #e5a012;
  border-color: #e5a012;
  color: white;
  transform: translateY(-2px);
}

/* Navigation Buttons */
.nav-button {
  border-radius: 15px;
  padding: 1rem 1.5rem !important;
  font-size: 14px;
  transition: all 0.3s ease !important;
}

#button-siniestro {
  background-color: var(--primary-color);
  color: white;
  border: 1px solid var(--primary-color);
}

#button-siniestro:hover {
  background-color: white;
  color: var(--primary-color);
}

#button-cuota {
  background-color: var(--warning-color);
  color: white;
  border: 1px solid var(--warning-color);
}

#button-cuota:hover {
  background-color: white;
  color: var(--warning-color);
}

#button-contacto {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  background-color: transparent;
}

#button-contacto:hover {
  background-color: var(--primary-color);
  color: white;
}

/* ==========================================================================
   Header Styles
   ========================================================================== */
/* Header Top */
.header-top {
  font-size: 0.875rem;
  background-color: var(--primary-color);
  padding: 0.5rem 0;
}

.header-top a {
  font-weight: 300;
}

.header-top a:hover {
  opacity: 0.8;
}

.header-top span,
.header-top span a {
  color: var(--warning-color);
}

/* Header Top Dropdown */
.header-top .dropdown-menu {
  min-width: 200px;
  padding: 0.5rem;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: var(--primary-color);
  margin: 0px;
  margin-top: 10px !important;
  left: -10px !important;
 
}

.header-top .dropdown-item {
  padding: 0.75rem 1rem;
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.header-top .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--warning-color);
}

.header-top .dropdown-item i {
  margin-right: 0.75rem;
  font-size: 1.1rem;
  color: var(--warning-color);
}

.menu-toggler{
	border: 1px solid white;
	padding: 10px;
	border-radius: 10px;
	cursor:pointer;
}

/* ==========================================================================
   Navigation Styles
   ========================================================================== */
.navbar {
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
  height: 60px;
  width: auto;
}

.navbar-nav .nav-item {
  margin-left: 1rem;
}

/* Dropdown Menu */
.dropdown-menu {
  padding: 0;
  min-width: 400px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown-menu .d-flex {
  min-height: 200px;
}

.dropdown-column {
  padding: 1rem;
}

.menu-options {
  background-color: #f8f9fa;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  width: 150px;
  flex: none;
}

.menu-content {
  flex: 1;
}

.menu-option {
  padding: 0.75rem 1rem;
  cursor: pointer;
  color: var(--text-color);
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.menu-option:hover,
.menu-option.active {
  color: var(--primary-color);
  background-color: white;
  border-left-color: var(--primary-color);
}

.menu-items {
  display: none;
}

.menu-items.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.dropdown-item {
  padding: 0.5rem 0;
  color: var(--text-color);
  font-weight: 400;
}

.dropdown-item:hover {
  background: transparent;
  color: var(--primary-color);
}

.nav-button {
  border-radius: 15px;
  padding: 1rem 1.5rem !important;
  font-size: 14px;
  transition: all 0.3s ease !important;
}
#nosotros-menu {
  text-align: left;
  margin-left: -45px;
  margin-top: 13px;
  min-width: 200px;
  padding: 5px 15px;
  background-color: #f8f9fa;
}

#nosotros-menu .dropdown-item {
  padding: 0.75rem 1rem;
  color: var(--text-color);
  font-weight: 400;
  border-left: 3px solid transparent;
}

#nosotros-menu .dropdown-item:hover {
  border-left: 3px solid var(--primary-color);
  background-color: white;
}

#button-siniestro {
  background-color: var(--primary-color);
  color: white;
  border: 1px solid var(--primary-color);
}

#button-siniestro:hover {
  background-color: white;
  color: var(--primary-color);
}

#button-cuota {
  background-color: var(--warning-color);
  color: white;
  border: 1px solid var(--warning-color);
}

#button-cuota:hover {
  background-color: white;
  color: var(--warning-color);
}

#button-contacto {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  background-color: transparent;
}

#button-contacto:hover {
  background-color: var(--primary-color);
  color: white;
}

/* ==========================================================================
   Mobile Menu Styles
   ========================================================================== */
.mobile-menu {
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 135px);
}

.mobile-menu-wrapper {
  padding: 0;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  text-decoration: none;
  color: white;
  border-radius: 0;
  transition: all 0.3s ease;
  margin: 0;
}

.mobile-menu-item.warning {
  background-color: var(--warning-color);
}

.mobile-menu-item.primary {
  background-color: var(--primary-color);
}

.mobile-menu-item.secondary {
  background-color: #f8f9fa;
  color: var(--text-color);
}

.mobile-menu-item i {
  font-size: 1.2rem;
}

.mobile-menu-item span {
  font-weight: 500;
  margin-left: 1rem;
}

.mobile-menu-emergency {
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem;
  text-align: center;
  margin-top: 20px;
}

.mobile-menu-emergency p {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
}

.mobile-menu-emergency a {
  color: var(--warning-color);
  text-decoration: none;
  font-weight: 500;
}

.mobile-menu-logos {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: white;
}

.mobile-menu-logos img {
  height: 40px;
  width: auto;
}

@media (max-width: 1200px) and (min-width: 991px) {
  #button-siniestro,
  #button-cuota,
  #button-contacto {
    font-size: 11px;
  }
}

/* ==========================================================================
   Hero Section Styles
   ========================================================================== */
.hero-section {
  background-color: var(--primary-color);
  color: white;
  overflow: hidden;
}

.carousel,
.carousel-inner,
.carousel-item {
  height: 100%;
}

.hero-wrapper {
  display: flex;
  align-items: stretch;
  min-height: 500px;
  position: relative;
}

.hero-wrapper-base {
  min-height: 300px;
}

.hero-image {
  width: 50%;
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  width: 82%;
  height: 100%;
  background-color: white;
  clip-path: ellipse(63% 67% at 30% 50%);
  z-index: 1;
}

.hero-image img {
  position: absolute;
  width: 80%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  clip-path: ellipse(63% 64% at 30% 50%);
  z-index: 2;
}

.hero-content {
  width: 50%;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 500px;
}

.hero-content .btn-warning {
  padding: 1rem 1.5rem;
  font-size: 14px;
  font-weight: 600;
  border-radius: 15px;
  text-transform: uppercase;
  background-color: var(--warning-color);
  color: white;
  border: 1px solid var(--warning-color);
  transition: all 0.3s ease;
}

.carousel-indicators {
  position: absolute;
  right: auto;
  left: 50%;
  bottom: 2rem;
  margin: 0;
  padding: 0;
  z-index: 10;
  transform: translateX(-50%);
}

.carousel-indicators [data-bs-target] {
  width: 14px;
  height: 14px;
  margin: 0 5px;
  background-color: white;
  border: none;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: var(--warning-color);
  transform: scale(1.2);
}

@media (max-width: 991px) {
  .hero-section {
    background-color: var(--warning-color);
  }

  .hero-wrapper {
    flex-direction: column;
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero-image {
    width: 100%;
    height: 300px;
    order: 1;
    margin-bottom: 0;
  }

  .hero-image::before {
    display: none;
  }

  .hero-image img {
    position: relative;
    width: 100%;
    height: 100%;
    clip-path: none;
    object-fit: cover;
    border-bottom-right-radius: 150px;
    border-bottom-left-radius: 150px;
    object-position: top;
  }

  .hero-content {
    width: 100%;
    order: 2;
    padding: 2rem 1.5rem 1rem;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
    color: white;
  }

  .hero-content h1 .text-warning {
    color: var(--primary-color) !important;
  }

  .hero-content p {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--primary-color);
  }

  .hero-content .btn-warning {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
  }

  .hero-content .btn-warning:hover {
    background-color: transparent;
    color: var(--primary-color);
  }

  .carousel-indicators {
    bottom: 1rem;
  }

  .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    margin: 0 3px;
    background-color: var(--primary-color);
    opacity: 0.3;
  }

  .carousel-indicators .active {
    opacity: 1;
    background-color: var(--primary-color);
    transform: scale(1.2);
  }
}

/* ==========================================================================
   Insurance Types Section
   ========================================================================== */
.insurance-types {
  background-color: #eef1f5;
  padding: 4rem 0;
}

.insurance-types h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.insurance-types .subtitle {
  color: var(--text-color);
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-weight: 300;
}

.insurance-types .subtitle b {
  font-weight: 600;
}

.title-separator {
  width: 80px;
  height: 4px;
  background-color: var(--warning-color);
  margin: 1rem auto 2rem;
  border-radius: 2px;
}

.insurance-tabs {
  margin-bottom: 3rem !important;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 5px;
  gap: 0.5rem;
  width: 100%;
}

.insurance-grid .card-content p {
  min-height: 130px;
}

.btn-tab {
  padding: 0.75rem 2rem;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  border: 1px solid transparent;
  background-color: #fff;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex: 1 1 0;
  min-width: 120px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-tab:hover,
.btn-tab.active {
  background-color: var(--primary-color);
  color: white;
}

.insurance-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.insurance-card:hover {
  transform: translateY(-5px);
}

.card-image {
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-content h3 a {
  color: var(--primary-color);
  text-decoration: none;
}

.card-content h3 i {
  color: var(--warning-color);
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.insurance-card:hover .card-content h3 i {
  opacity: 1;
  transform: translateX(0);
}

.card-content p {
  color: var(--text-color);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .insurance-card {
    margin: 10px 0px;
  }
}

/* ==========================================================================
   Emergency Section Styles
   ========================================================================== */
.emergency-section {
  background-color: white;
  padding: 4rem 0;
}

.emergency-section h2 {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.emergency-section .separator {
  width: 60px;
  height: 4px;
  background-color: var(--warning-color);
  border-radius: 2px;
}

.emergency-section p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.emergency-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.emergency-steps .step {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: var(--primary-color);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.emergency-steps .step i {
  font-size: 1.2rem;
  margin-right: 1rem;
  width: 20px;
  text-align: center;
  color: var(--warning-color);
}

.emergency-steps .step:hover {
  background-color: #f8f9fa;
  color: var(--warning-color);
  transform: translateX(5px);
}

.emergency-steps .step:hover i {
  color: var(--warning-color);
}

.emergency-steps .step span {
  font-weight: 500;
}

.emergency-section img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .emergency-section {
    text-align: left;
    padding: 3rem 0;
  }

  .emergency-section img {
    margin-top: 3rem;
  }

  .emergency-section .separator {
    margin: 1rem 0;
  }
}

@media (max-width: 768px) {
  .emergency-section {
    text-align: center;
  }

  .emergency-section .separator {
    margin: 1rem auto;
  }
}

/* ==========================================================================
    FAQS Section Styles
   ========================================================================== */

.faqs-section .accordion-body p strong {
  font-weight: 700;
}

/* ==========================================================================
   Anti-theft Section Styles
   ========================================================================== */
.anti-theft-section {
  padding: 4rem 0;
  position: relative;
}

#antiTheftCarousel {
  background: var(--primary-color);
  border-radius: 29px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.anti-theft-content {
  color: white;
  padding: 2rem 3rem;
}

.anti-theft-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.anti-theft-content h3 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: white;
}

.anti-theft-content .btn-primary {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 15px;
  background-color: var(--warning-color);
  border-color: var(--warning-color);
  color: white;
  text-transform: none;
}

.anti-theft-content .btn-primary:hover {
  background-color: transparent;
  border-color: var(--warning-color);
  color: var(--warning-color);
}

#antiTheftCarousel .carousel-indicators {
  bottom: 1rem;
  margin: 0;
  justify-content: center;
}

#antiTheftCarousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 4px;
  border: none;
}

#antiTheftCarousel .carousel-indicators .active {
  background-color: white;
  transform: scale(1.2);
}

@media (max-width: 767px) {
  .anti-theft-section {
    background-color: var(--warning-color);
    padding: 0;
    margin: 0;
  }

  #antiTheftCarousel {
    background: transparent;
    border-radius: 0;
    margin: 0;
  }

  #antiTheftCarousel .carousel-inner {
    padding: 0;
  }

  #antiTheftCarousel .carousel-item {
    padding: 0;
  }

  #antiTheftCarousel img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
  }

  .anti-theft-content {
    text-align: center;
    padding: 2rem 1rem;
  }

  .anti-theft-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }

  .anti-theft-content h3 {
    font-size: 1.9rem;
    color: white;
    margin-bottom: 1.5rem;
  }

  .anti-theft-content .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
  }

  .anti-theft-content .btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    opacity: 0.9;
  }

  #antiTheftCarousel .carousel-indicators {
    bottom: 0;
  }

  #antiTheftCarousel .carousel-indicators [data-bs-target] {
    background-color: var(--primary-color);
    opacity: 0.3;
  }

  #antiTheftCarousel .carousel-indicators .active {
    opacity: 1;
    background-color: var(--primary-color);
  }
}

/* ==========================================================================
   News Section Styles
   ========================================================================== */
.news-section {
  padding: 4rem 0;
  background-color: #eef1f5;
}

.news-section h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.news-section .title-separator {
  width: 80px;
  height: 4px;
  background-color: var(--warning-color);
  margin: 0.5rem auto 1rem;
  border-radius: 2px;
}

.news-section .subtitle {
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.news-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 1.5rem;
}

.news-content h3 {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.btn-read {
  color: var(--warning-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-read i {
  transition: transform 0.3s ease;
}

.btn-read:hover {
  color: var(--primary-color);
}

.btn-read:hover i {
  transform: translateX(5px);
}

@media (max-width: 767px) {
  .mobile-menu-wrapper {
    padding: 0;
    width: 100%;
  }

  .mobile-menu-wrapper .navbar-brand {
    padding: 0px 5px;
  }

  .mobile-menu-wrapper .navbar-toggler {
    padding: 0px 25px;
  }

  .news-section {
    background-color: white;
    padding: 2rem 0;
  }

  .news-section h2 {
    color: var(--primary-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .news-section h2 i {
    color: var(--warning-color);
    opacity: 0.5;
  }

  .news-section .subtitle {
    color: var(--text-color);
    text-align: center;
  }

  .news-section .title-separator {
    background-color: var(--warning-color);
  }

  #newsCarousel {
    padding: 0;
  }

  #newsCarousel .carousel-inner {
    padding: 0 1rem;
  }

  #newsCarousel .news-card {
    margin: 20px auto;
    max-width: 350px;
    border-radius: 20px;
  }

  #newsCarousel img {
    height: 180px;
    border-radius: 20px 20px 0 0;
  }

  #newsCarousel .news-content {
    padding: 1.5rem;
    text-align: center;
  }

  #newsCarousel .news-content h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  #newsCarousel .btn-read {
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }

  #newsCarousel .btn-read i {
    color: var(--warning-color);
    font-size: 0.8em;
  }

  #newsCarousel .btn-read:hover {
    color: var(--primary-color);
  }

  #newsCarousel .btn-read:hover i {
    transform: translateX(5px);
  }

  #newsCarousel .carousel-indicators {
    bottom: -2rem;
    margin: 0;
  }

  #newsCarousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--warning-color);
    opacity: 0.3;
    margin: 0 4px;
    border: none;
  }

  #newsCarousel .carousel-indicators .active {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */
footer {
  background-color: var(--primary-color);
  padding: 4rem 0 0rem;
}

footer h5 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

footer ul li {
  margin-bottom: 0.75rem;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

footer a:hover {
  color: white;
}

.footer-logo img {
  width: 100%;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  transform: translateY(-3px);
  opacity: 0.9;
  text-decoration: none;
}

.social-links img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-bottom {
  background-color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
}

.footer-bottom img {
  width: 100%;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-bottom img:hover {
  opacity: 1;
}

@media (max-width: 991px) {
  footer {
    padding: 3rem 0 0rem;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-logo img {
    width: 75%;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom .row {
    text-align: center;
  }

  .footer-bottom img {
    margin: 1rem 0;
  }
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 991px) {
  .navbar-nav .nav-item {
    margin: 0.5rem 0;
  }

  .hero-section {
    text-align: center;
  }

  .emergency-section {
    text-align: center;
  }

  .emergency-section img {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .navbar-nav .nav-item {
    margin: 0.5rem 0;
  }

  .hero-section {
    text-align: center;
  }

  .emergency-section {
    text-align: center;
  }

  .emergency-section img {
    margin-top: 2rem;
  }
}

/* ==========================================================================
   Additional Components
   ========================================================================== */
.action-buttons {
  background-color: #0f4188;
}

.action-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.action-button i {
  color: var(--warning-color);
}

.action-button span {
  font-weight: 500;
  font-size: 1rem;
}

.action-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-3px);
}

.navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.mobile-menu {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  text-decoration: none;
  color: white;
  border-radius: 0;
  transition: all 0.3s ease;
  margin-bottom: 1px;
}

.mobile-menu-item.warning {
  background-color: var(--warning-color);
}

.mobile-menu-item.primary {
  background-color: var(--primary-color);
}

.mobile-menu-item.secondary {
  background-color: #f8f9fa;
  color: var(--text-color);
}
.mobile-menu-item i {
  font-size: 1.2rem;
}

.mobile-menu-item span {
  font-weight: 500;
  margin-left: 1rem;
}

.mobile-menu-emergency {
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem;
  text-align: center;
  margin-top: auto;
}

.mobile-menu-emergency p {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
}

.mobile-menu-emergency a {
  color: var(--warning-color);
  text-decoration: none;
  font-weight: 500;
}

.mobile-menu-logos {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: white;
}

.mobile-menu-logos img {
  height: 40px;
  width: auto;
}

/* Header Top Dropdown */
.header-top .dropdown-menu {
  min-width: 200px;
  padding: 0.5rem;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
  background-color: var(--primary-color);
}

.header-top .dropdown-item {
  padding: 0.75rem 1rem;
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.header-top .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--warning-color);
}

.header-top .dropdown-item i {
  margin-right: 0.75rem;
  font-size: 1.1rem;
  color: var(--warning-color);
}

.mobile-menu-dropdown {
  position: relative;
}

.mobile-menu-dropdown-toggle {
  position: relative;
  z-index: 2;
}

.mobile-menu-dropdown-toggle .fa-chevron-down {
  transition: transform 0.3s ease;
}

.mobile-menu-dropdown-toggle.active .fa-chevron-down {
  transform: rotate(180deg);
}

.mobile-menu-dropdown-content {
  display: none;
  background-color: var(--primary-color);
}

.mobile-menu-dropdown-content.show {
  display: block;
}

.mobile-menu-dropdown-content .mobile-menu-item {
  padding-left: 2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
}

#mobile-menu-dropdown-2 .mobile-menu-dropdown-content {
  background-color: var(--secondary-color);
}

#mobile-menu-dropdown-2 .dropdown-item {
  font-size: 11px;
  padding: 6px 15px;
}

/* Timeline Section */
.timeline-section {
  background-color: white;
}

.timeline-card {
  border-radius: 10px;
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-5px);
}

.timeline-card-inner {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.timeline-image {
  flex: 0 0 200px;
  width: 200px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-content-wrapper {
  flex: 1;
}

.timeline-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.timeline-content p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .timeline-card {
    margin-bottom: 1rem;
  }

  .timeline-card-inner {
    flex-direction: column;
  }

  .timeline-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
  }
}

/* Contact Options */
.intro-types {
  background-color: white;
  padding: 4rem 0;
}

.intro-types h2 {
  color: var(--primary-color);
}

.contact-option {
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
  position: relative;
}

.contact-option:hover {
  transform: translateY(-5px);
}

.contact-option img {
  width: 128px;
  height: 128px;
  object-fit: contain;
}

.contact-option h4 {
  color: var(--primary-color);
  margin: 1rem 0;
  font-weight: 600;
}

.contact-option p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.contact-option .form-check {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

.contact-option .form-check-input {
  width: 1.5em;
  height: 1.5em;
  margin-top: 0;
  cursor: pointer;
}

.contact-option .form-check-input:checked {
  background-color: var(--warning-color);
  border-color: var(--warning-color);
}

/* Contact Forms Section */
.contact-forms {
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.contact-content {
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-content h3 {
  color: white;
  font-weight: 600;
  margin-bottom: 2rem;
}

.contact-content .form-control,
.contact-content .form-select {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #dee2e6;
  font-size: 0.95rem;
}

.contact-content .form-control:focus,
.contact-content .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 75, 155, 0.25);
}

.contact-content textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-content .btn-success {
  background-color: #25d366;
  border-color: #25d366;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact-content .btn-success:hover {
  background-color: #128c7e;
  border-color: #128c7e;
  transform: translateY(-2px);
}

.contact-content .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact-content .btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.contact-content .btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.contact-content .btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.required-data {
  background-color: #f6f6f6;
  padding: 4rem 0;
}

.required-data h2 {
  color: var(--primary-color);
}

.required-data .payment-info-box {
  background-color: white;
  border-radius: 8px;
  transition: transform 0.3s ease;
  height: 100%;
}

.required-data .payment-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.required-data .payment-info-box img {
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.required-data .payment-info-box h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.required-data .payment-info-box p {
  color: var(--text-color);
  line-height: 1.6;
  padding-left: 20px;
  padding-right: 20px;
}

.payment-methods {
  background-color: #ececec;
  padding: 4rem 0;
}

.payment-methods h2 {
  color: var(--primary-color);
}

.payment-method-card {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.payment-method-card .img-wrapper {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.payment-method-card img {
  max-width: 200px;
  height: 100%;
  width: auto;
  object-fit: contain;
}

.payment-method-card h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.payment-method-card p {
  color: var(--text-color);
  text-align: center;
  margin-bottom: 0;
}

.payment-methods .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 1rem 3rem;
  font-size: 1rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.payment-methods .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.payment-method-radio {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .intro-types {
    padding: 2rem 0;
  }

  .contact-option {
    padding: 1.5rem;
  }

  .contact-content {
    padding: 1.5rem;
    margin: 0;
  }

  .contact-content .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .btn-warning-long {
    width: 100%;
    max-width: 300px;
  }
}

.pac-section {
  background-color: white;
  padding: 4rem 0;
}

.pac-section h2 {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.pac-section .title-separator {
  width: 80px;
  height: 4px;
  background-color: var(--warning-color);
  margin: 1.5rem 0;
  border-radius: 2px;
}

.pac-section p {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.pac-section .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.pac-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pac-section .btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.pac-section .btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pac-section .bank-select {
  max-width: 300px;
  margin-bottom: 1.5rem;
  background-color: #ececec;
  border-radius: 8px;
  padding: 0.5rem;
}

.pac-section .form-select {
  border: none;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 500;
  background-color: transparent;
  cursor: pointer;
}

.pac-section .form-select:focus {
  box-shadow: none;
  border: none;
}

.pac-section .btn-container {
  display: flex;
  gap: 1rem;
}

.pac-section .btn {
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 15px;
  min-width: 140px;
  text-align: center;
}

.pac-section .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.pac-section .btn-outline-primary {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.pac-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .pac-section {
    padding: 2rem 0;
  }

  .pac-section h2 {
    font-size: 1.5rem;
  }

  .pac-section .title-separator {
    margin: 1rem 0;
  }

  .pac-section p {
    font-size: 0.9rem;
  }

  .pac-section .btn-primary {
    padding: 0.75rem 1rem;
  }

  .pac-section .btn-outline-primary {
    padding: 0.75rem 1rem;
  }

  .pac-section .bank-select {
    max-width: 100%;
  }

  .pac-section .btn-container {
    flex-direction: column;
  }

  .pac-section .btn {
    width: 100%;
  }
}

.claims-section {
  background-color: var(--primary-color);
  padding: 5rem 0 40px 0;
  color: white;
  text-align: center;
}

.claims-section h2 {
  color: white;
  font-size: 2rem;
  font-weight: 100;
  margin-bottom: 1rem;
}

.claims-section .title-separator {
  width: 80px;
  height: 4px;
  background-color: var(--warning-color);
  margin: 1rem auto;
  border-radius: 2px;
}

.claims-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 3rem;
}

.claims-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.claims-option .icon-wrapper {
  width: 96px;
  height: 96px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.claims-option .icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.claims-option h5 {
  color: var(--warning-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.claims-option p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.claims-section .btn-warning {
  background-color: var(--warning-color);
  border-color: var(--warning-color);
  color: white;
  padding: 1rem 3rem;
  font-size: 1rem;
  border-radius: 15px;
  margin-top: 1rem;
  transition: all 0.3s ease;
  width: 280px;
}

.claims-section .btn-warning:hover {
  background-color: #e5a012;
  border-color: #e5a012;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.claims-section .form-check-input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 1rem;
  cursor: pointer;
  border-color: rgba(255, 255, 255, 0.5);
}

.claims-section .form-check-input:checked {
  background-color: var(--warning-color);
  border-color: var(--warning-color);
}

@media (max-width: 768px) {
  .claims-section {
    padding: 3rem 0;
  }

  .claims-section h2 {
    font-size: 1.5rem;
  }

  .claims-option {
    margin-bottom: 2rem;
  }
}

.faq-section {
  background-color: #ececec;
  padding: 2rem 0 4rem 0;
}

.faq-section .faq-container {
  margin-top: -55px;
}

.faq-section h2 {
  color: white;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.faq-accordion {
  margin: 0 auto;
  padding: 0 1rem;
}

.faq-accordion .accordion-item {
  border: none;
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-accordion .accordion-button {
  padding: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
  background-color: white;
  border: none;
  border-radius: 8px !important;
  position: relative;
}

.faq-accordion .accordion-button::after {
  content: "";
  width: 12px;
  height: 12px;
  border: solid var(--text-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  position: absolute;
  right: 1.5rem;
  margin-top: -6px;
  background-image: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(-135deg);
  margin-top: 0;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--text-color);
  background-color: white;
  box-shadow: none;
}

.faq-accordion .accordion-button:hover::after {
  border-color: var(--primary-color);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-accordion .accordion-body {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 2rem 0;
  }

  .faq-section h2 {
    font-size: 1.5rem;
  }

  .faq-accordion {
    padding: 0;
  }

  .faq-accordion .accordion-button {
    padding-right: 3rem;
    padding-left: 1.25rem;
    text-align: left;
  }

  .faq-accordion .accordion-button::after {
    right: 1rem;
  }
}

/* Claims Process Section */
.claims-process {
  background-color: white;
  padding: 5rem 0;
}

.claims-process h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.claims-process .title-separator {
  width: 80px;
  height: 4px;
  background-color: var(--warning-color);
  margin: 0 auto 2rem;
  border-radius: 2px;
}

.claims-process-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.claims-process-buttons .btn {
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.claims-process-buttons .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.claims-process-buttons .btn-primary:hover,
.claims-process-buttons .btn-primary.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.claims-process-buttons .btn-light {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  color: var(--text-color);
}

.claims-process-buttons .btn-light:hover {
  background-color: #e9ecef;
  border-color: #e9ecef;
  color: var(--primary-color);
}

.process-step {
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}

.process-step .icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step .icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.process-step h5 {
  text-align: center;
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.process-step p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: justify;
}

@media (max-width: 768px) {
  .claims-process {
    padding: 2rem 0;
  }

  .claims-process h2 {
    font-size: 2rem;
  }

  .claims-process-buttons {
    flex-direction: column;
  }

  .claims-process-buttons .btn {
    width: 100%;
  }

  .process-step {
    margin-bottom: 1rem;
  }
}

.process-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process-content.active {
  display: flex;
  opacity: 1;
}

@media (max-width: 768px) {
  .claims-process-buttons {
    flex-direction: column;
  }

  .claims-process-buttons .btn {
    width: 100%;
  }
}

/* How to Report Section */
.how-to-report {
  background-color: #f8f9fa;
}

.how-to-report h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
}

.title-separator {
  width: 80px;
  height: 4px;
  background-color: var(--warning-color);
  margin: 0;
  border-radius: 2px;
}

.steps-list {
  margin-top: 2rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.step-text {
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.5;
}

.report-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.report-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background-color: var(--warning-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button i {
  color: white;
  font-size: 2rem;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: #e5a012;
}

.how-to-report .btn-primary {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: white;
}

.how-to-report .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .how-to-report h2 {
    font-size: 2rem;
  }

  .step-text {
    font-size: 1rem;
  }

  .report-image {
    margin-top: 25px;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-button i {
    font-size: 1.5rem;
  }
}

/* Organigrama Section */
.organigrama {
  background-color: #f8f9fa;
}

.organigrama h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.organigrama .title-separator {
  width: 80px;
  height: 4px;
  background-color: var(--warning-color);
  margin: 0 auto 1rem;
  border-radius: 2px;
}

.organigrama h5 {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.organigrama .subtitle {
  color: var(--text-color);
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-weight: 300;
}

.company-item {
  transition: all 0.3s ease;
}

.company-item:hover {
  transform: translateY(-3px);
}

.company-item.active {
  background-color: var(--primary-color);
}

.company-item.active span {
  color: white !important;
}

.company-item .flag {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.company-item span {
  font-size: 0.9rem;
  color: var(--text-color);
}

.company-item span:last-child {
  font-weight: 500;
}

/* Legend Styles */
.legend-item {
  font-size: 0.85rem;
  color: var(--text-color);
}

.legend-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-circle.bg-white {
  background-color: white;
}

.legend-circle.bg-primary {
  background-color: var(--primary-color) !important;
}

.legend-circle.border {
  border: 1px solid #dee2e6 !important;
}

@media (max-width: 768px) {
  .organigrama {
    padding: 2rem 0;
  }

  .organigrama h2 {
    font-size: 1.5rem;
  }

  .company-item {
    margin-bottom: 0.5rem;
  }

  .legend-item {
    font-size: 0.8rem;
  }

  .legend-circle {
    width: 10px;
    height: 10px;
  }
}

/* Services Description Section */
.services-description {
  background-color: white;
}

.services-content {
  color: var(--text-color);
}

.services-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.services-content a {
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services-content a:hover {
  opacity: 0.8;
}

.services-image img {
  width: 100%;
  height: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .services-content {
    margin-bottom: 2rem;
  }

  .services-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .services-image {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.sucursal-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
  margin: 30px 0;
  transition: transform 0.3s ease;
}

.sucursal-card:hover {
  transform: translateY(-5px);
}

.map-container {
  height: 200px;
  overflow: hidden;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sucursal-info {
  padding: 1.5rem;
}

.sucursal-info h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.info-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #666;
}

@media (max-width: 768px) {
  .sucursal-card {
    margin-bottom: 1rem;
  }

  .map-container {
    height: 150px;
  }
}

/* Canal de Denuncias Content Sections */
.content-section {
  position: relative;
  overflow: hidden;
}

.content-section .content-text {
  padding: 2rem 0;
}

.content-section h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.content-section h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.content-section a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.content-section a:hover {
  opacity: 0.8;
}

.denuncias-list h6 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-color);
}

.denuncias-list ul li {
  margin-bottom: 1rem;
  padding-left: 1rem;
  position: relative;
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.5;
}

.denuncias-list ul li i {
  position: absolute;
  left: 0;
  top: 0.3rem;
  color: var(--warning-color);
  font-size: 1rem;
}

.content-section .content-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.content-section .content-image:hover {
  transform: translateY(-5px);
}

.content-section .content-image img {
  width: 100%;
  height: auto;
  display: block;
}

.content-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.content-section .btn-primary-long {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 15px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.content-section .btn-primary-long:hover {
  background-color: #e5a012;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .content-section .content-text {
    padding: 1rem 0;
  }

  .content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .denuncias-list h6 {
    font-size: 1.1rem;
  }

  .denuncias-list ul li {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .content-section {
    text-align: center;
  }

  .content-section .content-text {
    padding: 2rem 0;
  }

  .denuncias-list ul li {
    text-align: left;
  }

  .content-section .content-image {
    margin: 1rem auto;
    max-width: 500px;
  }

  .content-section .btn-primary-long {
    width: 100%;
    max-width: 300px;
  }
}

/* Denuncias Options Styles */
.denuncias-options {
  margin-top: 2rem;
}

.denuncias-options a {
  color: var(--primary-color);
}

.denuncia-option {
  margin-bottom: 2rem;
}

.denuncia-option h6 {
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.denuncia-option h6 a {
  font-weight: 600;
  color: var(--primary-color) !important;
}

.denuncia-option p {
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.denuncia-disclaimer {
  font-style: italic;
  font-size: 0.6rem;
}

.bank-manuals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  align-items: center;
}

.bank-manual-link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: white;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.bank-manual-link:hover {
  transform: translateY(-2px);
}

.bank-logo {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

.denuncia-disclaimer p.small {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 0;
}

.content-section.bg-light {
  background-color: #f8f9fa;
}

@media (max-width: 991px) {
  .denuncia-option h6 {
    font-size: 1rem;
  }

  .denuncia-option p {
    font-size: 0.9rem;
  }

  .denuncia-disclaimer {
    padding: 1rem;
  }

  .denuncia-disclaimer p.small {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .denuncias-options {
    margin-top: 1rem;
  }

  .denuncia-option {
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .denuncia-disclaimer {
    text-align: left;
  }
}

/* Assistance Types Section */
.assistance-types {
  background-color: #ececec;
  padding: 4rem 0;
}

.assistance-types h2 {
  color: var(--primary-color);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.assistance-types .title-separator {
  width: 80px;
  height: 4px;
  background-color: var(--warning-color);
  margin: 2rem auto !important;
  display: block;
  border-radius: 2px;
}

.assistance-card {
  background: white;
  border-radius: 10px;
  padding: 0;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.assistance-card:hover {
  transform: translateY(-5px);
}

.assistance-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin-bottom: 1.5rem;
}

.assistance-card h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0rem;
  padding: 0.5rem 1rem;
}

.assistance-card p {
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
  padding: 1rem 1rem;
}

@media (max-width: 768px) {
  .assistance-types {
    padding: 2rem 0;
  }

  .assistance-card {
    margin-bottom: 1rem;
  }

  .assistance-card img {
    height: 180px;
  }
}

/* Banner Section */

.banner-wrapper {
  background-color: var(--primary-color);
  border-radius: 10px;
  overflow: hidden;
  margin: 2rem 0;
  display: flex;
  align-items: stretch;
}

.banner-image {
  width: 40%;
  position: relative;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content {
  width: 60%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-content h2 {
  color: var(--warning-color);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.banner-content h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.banner-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.banner-content .btn {
  background-color: var(--warning-color);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 15px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.banner-content .btn:hover {
  background-color: #e5a012;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .banner-wrapper {
    flex-direction: column;
  }

  .banner-image,
  .banner-content {
    width: 100%;
  }

  .banner-image {
    height: 300px;
  }

  .banner-content {
    padding: 2rem;
    text-align: center;
  }

  .banner-content h2,
  .banner-content h3 {
    font-size: 1.75rem;
  }

  .banner-content .btn {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .banner-section {
    margin: 1rem 0;
    border-radius: 0;
  }

  .banner-image {
    height: 200px;
  }

  .banner-content {
    padding: 1.5rem;
  }

  .banner-content h2,
  .banner-content h3 {
    font-size: 1.5rem;
  }
}

/* Nosotros Dropdown Specific Styles */
.nav-item:has(> a:contains("Nosotros")) .dropdown-menu {
  min-width: 200px;
  background-color: #f8f9fa;
}

.nav-item:has(> a:contains("Nosotros")) .dropdown-item {
  padding: 0.75rem 1rem;
  transition: all 0.2s ease;
}

.nav-item:has(> a:contains("Nosotros")) .dropdown-item:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateX(5px);
}

.coverage-explanation {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.coverage-explanation .title-separator {
  margin: 20px auto;
}

/* Plan Selector Tabs */
.plan-selector {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  white-space: nowrap;
}

.btn-plan {
  padding: 15px 40px;
  background: #e8e8e8;
  border: none;
  border-radius: 15px;
  color: #686868;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 220px;
  text-align: center;
}

.btn-plan:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

.btn-plan.active {
  background-color: var(--primary-color) !important;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Small Plan Buttons */
.btn-plan-m {
  padding: 12px 25px;
  font-size: 14px;
  min-width: 150px;
}

@media (max-width: 576px) {
  .btn-plan-sm {
    padding: 6px 12px;
    font-size: 12px;
    min-width: 60px;
  }
}

/* Tab Content */
.coverage-explanation h2 {
  color: var(--primary-color);
  font-size: 32px;
  margin-bottom: 20px;
}

.coverage-explanation h3 {
  color: var(--primary-color);
  font-size: 24px;
  margin: 30px 0 20px;
}

.plan-description {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.coverage-explanation .features-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.coverage-explanation .features-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: #666;
}

.coverage-explanation .features-list li:before {
  content: "-";
  color: #ffb81c;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -2px;
}

.coverage-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.coverage-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Tab transitions */
.tab-content > .tab-pane {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.tab-content > .tab-pane.active {
  display: block;
}

.tab-content > .tab-pane.show {
  opacity: 1;
}

/* Plans Comparison Table */
.plans-comparison {
  padding: 60px 0;
  background-color: var(--primary-color);
}

.comparison-table {
  width: 100%;
  color: white;
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-table thead th {
  padding: 20px 15px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  color: var(--warning-color);
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table .table-header-row {
  background-color: #0f3886;
}

.comparison-table tbody td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
}

/* Icons */
.table-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

/* Hover effect */
.comparison-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* Responsive styles */
@media (max-width: 768px) {
  .coverage-explanation {
    padding: 40px 0;
  }

  .plan-selector {
    gap: 10px;
    padding: 0 15px;
  }

  .btn-plan {
    padding: 12px 20px;
    font-size: 14px;
    min-width: 160px;
  }

  .coverage-image {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .coverage-explanation h2 {
    font-size: 28px;
  }

  .coverage-explanation h3 {
    font-size: 20px;
  }

  .plans-comparison {
    padding: 40px 0;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table thead th {
    font-size: 16px;
    padding: 15px 10px;
  }

  .comparison-table tbody td {
    font-size: 14px;
    padding: 12px 10px;
    white-space: nowrap;
  }
}

/* Mobile Comparison Styles */
.mobile-comparison {
  padding: 20px 0;
}

.mobile-plan-selector {
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  padding: 0 20px 10px;
  -webkit-overflow-scrolling: touch;
  /* Hide scrollbar but keep functionality */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.mobile-plan-selector::-webkit-scrollbar {
  display: none;
}

/* Container to ensure proper centering */
.mobile-plan-selector-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.btn-mobile-plan {
  padding: 8px 16px;
  background: transparent;
  border: 2px solid #ffb81c;
  border-radius: 20px;
  color: #ffb81c;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-mobile-plan.active {
  background: #ffb81c;
  color: #002b49;
}

.mobile-plan {
  display: none;
}

.mobile-plan.active {
  display: block;
}

.plan-title {
  color: #ffb81c;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.mobile-plan-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item-label {
  color: white;
  font-size: 14px;
}

.item-value {
  color: white;
  font-size: 14px;
  font-weight: 500;
}

/* Why Choose Reale Section */
.why-reale {
  background-color: #fff;
}

.why-reale h2 {
  color: var(--primary-color);
  font-size: 32px;
  margin-bottom: 20px;
}

.why-reale .title-separator {
  width: 80px;
  height: 4px;
  background-color: var(--warning-color);
  margin: 0 auto 20px;
}

.why-reale .subtitle {
  color: #666;
  font-size: 14px;
  max-width: 600px;
  margin: 0 auto;
}

.feature-card {
  padding: 20px;
  height: 100%;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper img {
  width: 100%;
  height: auto;
}

.feature-card h3 {
  color: var(--primary-color);
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .why-reale h2 {
    font-size: 28px;
  }

  .why-reale .subtitle {
    font-size: 16px;
  }

  .feature-card {
    padding: 15px;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .feature-card h3 {
    font-size: 18px;
  }
}

/* Contact Form Section */
.contact-form {
  background-color: #f2f2f2;
}

.contact-form h2 {
  color: var(--primary-color);
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form .form-control {
  padding: 1rem;
  border-radius: 30px;
  border: none;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  outline: none;
}

.contact-form textarea.form-control {
  resize: none;
  border-radius: 20px;
}

.contact-form .form-control::placeholder {
  color: #666;
  font-size: 0.9rem;
}

.contact-form .form-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.contact-form .btn-warning {
  padding: 0.8rem 3rem;
  border-radius: 15px;
  font-weight: 500;
  font-size: 1rem;
  background-color: var(--warning-color);
  border: none;
  color: #fff;
}

.contact-form .btn-warning:hover {
  background-color: #e5a619;
}

.form-small .form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.form-small .form-footer p:last-child {
  margin-bottom: 0;
  justify-self: flex-end;
}

@media (max-width: 768px) {
  .contact-form .form-footer {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .contact-form .form-control {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .contact-form .btn-warning {
    width: 100%;
    padding: 0.8rem;
  }
}

/* Coverage Cards Section */
.coverage-cards {
  background-color: #fff;
}

.coverage-cards .coverage-item {
  margin-bottom: 2rem;
}

.coverage-cards .item-icon {
  width: 200px;
  min-width: 200px;
}

.coverage-cards h2 {
  color: var(--primary-color);
}

.coverage-cards .item-icon img {
  width: 100%;
  height: auto;
}

.coverage-cards ul li {
  margin-bottom: 0.5rem;
  color: #666;
}

.coverage-cards ul li:last-child {
  margin-bottom: 0;
}

.coverage-cards h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.coverage-cards p,
.coverage-cards li {
  font-size: 0.9rem;
  line-height: 1.4;
}

.coverage-cards .item-content {
  flex: 1;
}

@media (max-width: 768px) {
  .coverage-cards .item-icon {
    width: 100px;
    min-width: 100px;
  }

  .coverage-cards h3 {
    font-size: 1.1rem;
  }

  .coverage-cards p,
  .coverage-cards li {
    font-size: 0.85rem;
  }
}

/* Assistance Types Section */
.assistance-types {
  background-color: var(--primary-color);
}

.assistance-types h2 {
  color: #fff;
}

.assistance-types .assistance-item {
  margin-bottom: 2rem;
}

.assistance-types .assistance-item li{
	font-size: 0.9em;
}

.assistance-types .item-icon {
  width: 200px;
  min-width: 200px;
}

.assistance-types .item-icon img {
  width: 100%;
  height: auto;
}

.assistance-types h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.assistance-types p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.assistance-types .item-content {
  flex: 1;
}

@media (max-width: 768px) {
  .assistance-types .item-icon {
    width: 80px;
    min-width: 80px;
  }

  .assistance-types h3 {
    font-size: 1.1rem;
  }

  .assistance-types p {
    font-size: 0.85rem;
  }
}

.coverage-box {
  padding: 2rem 0px;
  border-radius: 15px;
  height: 100%;
}

.coverage-box h2 {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 20px;
}

.coverage-box p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .coverage-box {
    padding: 1.5rem;
  }

  .coverage-box h2 {
    font-size: 20px;
  }

  .coverage-box p {
    font-size: 14px;
  }
}

/* Insurance Options */
.insurance-options {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.form-check-inline {
  margin-right: 0;
}

.form-check-input[type="radio"] {
  width: 1.2em;
  height: 1.2em;
  margin-top: 0.2em;
  border-color: var(--primary-color);
  cursor: pointer;
}

.form-check-input[type="radio"]:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-label {
  color: var(--primary-color);
  font-size: 1rem;
  cursor: pointer;
  padding-left: 0.5rem;
}

@media (max-width: 768px) {
  .insurance-options {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .form-check {
    padding: 0;
  }

  .form-check-label {
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   Single Post Styles
   ========================================================================== */

.single-post-main .hero-section {
  background-color: var(--primary-color);
}

.single-post-main .hero-wrapper {
  min-height: 400px;
}

.single-post-main .hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.post-meta i {
  color: var(--warning-color);
  margin-right: 0.5rem;
}

/* Post Content */
.post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
}

.post-content p {
  margin-bottom: 1.5rem;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  color: var(--primary-color);
  margin: 2rem 0 1rem;
}

/* Tags */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-link {
  display: inline-block;
  padding: 0.3rem 1rem;
  background-color: #f8f9fa;
  border-radius: 20px;
  color: var(--text-color);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag-link:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Share Buttons */
.share-buttons h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.social-share {
  display: flex;
  gap: 1rem;
}

.social-share a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.share-facebook {
  background-color: #1877f2;
}

.share-twitter {
  background-color: #1da1f2;
}

.share-linkedin {
  background-color: #0a66c2;
}

.share-whatsapp {
  background-color: #25d366;
}

.social-share a:hover {
  transform: translateY(-3px);
  opacity: 0.9;
  text-decoration: none;
}

/* Author Box */
.author-box {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 10px;
}

.author-avatar img {
  border-radius: 50%;
}

.author-info h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.author-info p {
  font-size: 0.9rem;
  margin: 0;
}

/* Post Navigation */
.post-navigation a {
  display: block;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-navigation span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.post-navigation h6 {
  color: var(--primary-color);
  margin: 0;
  font-size: 1rem;
}

.post-navigation a:hover {
  background-color: var(--primary-color);
}

.post-navigation a:hover span,
.post-navigation a:hover h6 {
  color: white;
}

/* Related Posts */
.related-posts h4 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.related-post-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.related-post-card:hover {
  transform: translateY(-5px);
}

.related-post-card .post-image {
  height: 200px;
  overflow: hidden;
}

.related-post-card .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-post-card .post-content {
  padding: 1rem;
}

.related-post-card h6 {
  margin-bottom: 0.5rem;
}

.related-post-card h6 a {
  color: var(--primary-color);
  text-decoration: none;
}

.related-post-card .post-date {
  font-size: 0.8rem;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .single-post-main .hero-wrapper {
    min-height: 300px;
  }

  .single-post-main .hero-content h1 {
    font-size: 1.8rem;
  }

  .post-meta {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .post-content {
    font-size: 1rem;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .author-avatar {
    margin: 0 auto;
  }

  .related-post-card .post-image {
    height: 150px;
  }
}

/* Archive Page Styles */
.archive-main .hero-section {
  background-color: var(--primary-color);
}

.archive-main .hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Posts Grid */
.posts-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.post-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
}

.post-card .post-image {
  height: 100%;
  min-height: 250px;
}

.post-card .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card .post-content {
  padding: 2rem;
}

.post-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.post-card h2 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-card h2 a:hover {
  color: var(--warning-color);
}

.post-card .post-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--text-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.post-card .post-meta i {
  color: var(--warning-color);
  margin-right: 0.5rem;
}

.post-card .post-excerpt {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.post-card .btn-read {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--warning-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.post-card .btn-read:hover {
  color: var(--primary-color);
}

.post-card .btn-read i {
  transition: transform 0.3s ease;
}

.post-card .btn-read:hover i {
  transform: translateX(5px);
}

/* Pagination */
.pagination-wrapper {
  margin-top: 3rem;
}

.pagination {
  gap: 0.5rem;
}

.page-link {
  padding: 0.75rem 1.25rem;
  color: var(--primary-color);
  background-color: white;
  border: 1px solid #dee2e6;
  border-radius: 8px !important;
  transition: all 0.3s ease;
}

.page-link:hover {
  color: white;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.page-link.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* No Posts */
.no-posts {
  padding: 3rem 0;
}

.no-posts h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.no-posts p {
  color: var(--text-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .archive-main .hero-wrapper {
    min-height: 200px;
  }

  .archive-main .hero-content h1 {
    font-size: 2rem;
  }

  .post-card .post-image {
    min-height: 200px;
  }

  .post-card .post-content {
    padding: 1.5rem;
  }

  .post-card h2 {
    font-size: 1.25rem;
  }

  .post-card .post-meta {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .pagination .page-link {
    padding: 0.5rem 1rem;
  }
}

/* Mobile Plan Styles */
.mobile-plan {
  display: none;
}

.mobile-plan.active {
  display: block;
}

.btn-mobile-plan {
  padding: 10px 20px;
  border: 1px solid #0f3886;
  background: #0f3886;
  margin: 0 5px;
  border-radius: 4px;
  cursor: pointer;
}

.btn-mobile-plan.active {
  background: #ffc107;
  border-color: #ffc107;
  color: #000;
}

.mobile-plan-selector {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mobile-plan-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.mobile-plan-item .item-label {
  flex: 1;
  padding-right: 15px;
}

.mobile-plan-item .item-value {
  flex-shrink: 0;
}

.sucursal-card .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.sucursal-card .info-item:last-child {
  margin-bottom: 0;
}

.sucursal-card .info-item i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.sucursal-card .info-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #666;
}
