@charset "UTF-8";
/* Variables for colors */
/* Dorado */
/* Black */
/* White */
/* Light gold for hover effects */
body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background-color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInDown 0.6s ease-out;
}
.navbar--scrolled {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  padding: 0.8rem 2rem;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.navbar__logo:hover {
  transform: scale(1.05);
}
.navbar__logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}
.navbar__logo span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d4af37;
  text-decoration: none;
}
.navbar__menu {
  flex: 1;
  display: flex;
  justify-content: center;
}
.navbar__menu ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.navbar__menu ul .active {
  color: #d4af37;
}
.navbar__menu ul li {
  position: relative;
}
.navbar__menu ul li a {
  text-decoration: none;
  font-size: 1rem;
  color: #000;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  display: inline-block;
  position: relative;
}
.navbar__menu ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.navbar__menu ul li a:hover {
  color: #d4af37;
}
.navbar__menu ul li a:hover::after {
  width: 80%;
}
.navbar__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.navbar__action-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  background: transparent;
  border: 2px solid #d4af37;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.navbar__action-btn:hover {
  background: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}
.navbar__action-btn .sistelar-logo,
.navbar__action-btn .banco-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar__action-btn .sistelar-logo img,
.navbar__action-btn .banco-logo img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.navbar__action-btn .sistelar-logo i,
.navbar__action-btn .banco-logo i {
  font-size: 1.2rem;
  color: #d4af37;
  transition: color 0.3s ease;
}
.navbar__action-btn .sistelar-text,
.navbar__action-btn .banco-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.navbar__action-btn .sistelar-text .sistelar-title,
.navbar__action-btn .sistelar-text .banco-title,
.navbar__action-btn .banco-text .sistelar-title,
.navbar__action-btn .banco-text .banco-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #d4af37;
  line-height: 1.2;
  transition: color 0.3s ease;
}
.navbar__action-btn .sistelar-text .sistelar-subtitle,
.navbar__action-btn .sistelar-text .banco-subtitle,
.navbar__action-btn .banco-text .sistelar-subtitle,
.navbar__action-btn .banco-text .banco-subtitle {
  font-size: 0.7rem;
  color: #000;
  line-height: 1.2;
  transition: color 0.3s ease;
}
.navbar__action-btn:hover .sistelar-title,
.navbar__action-btn:hover .banco-title,
.navbar__action-btn:hover .sistelar-subtitle,
.navbar__action-btn:hover .banco-subtitle {
  color: #fff;
}
.navbar__action-btn:hover .banco-logo i {
  color: #fff;
}
.navbar__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
}
.navbar__toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #000;
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  position: relative;
  margin: 5px 0;
}
.navbar__toggle.active span {
  background-color: #000;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2.5px;
}
.navbar__toggle.active span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}
.navbar__toggle.active span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 1024px) {
  .navbar {
    padding: 1rem 1.5rem;
  }
  .navbar__menu ul {
    gap: 1rem;
  }
  .navbar__action-btn {
    padding: 0.5rem 0.75rem;
    gap: 0.5rem;
  }
  .navbar__action-btn .sistelar-text .sistelar-title,
  .navbar__action-btn .sistelar-text .banco-title,
  .navbar__action-btn .banco-text .sistelar-title,
  .navbar__action-btn .banco-text .banco-title {
    font-size: 0.75rem;
  }
  .navbar__action-btn .sistelar-text .sistelar-subtitle,
  .navbar__action-btn .sistelar-text .banco-subtitle,
  .navbar__action-btn .banco-text .sistelar-subtitle,
  .navbar__action-btn .banco-text .banco-subtitle {
    font-size: 0.65rem;
  }
}
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.25rem;
    gap: 0.5rem;
  }
  .navbar__logo img {
    height: 40px;
  }
  .navbar__logo span {
    font-size: 1.25rem;
  }
  .navbar__menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    z-index: 1000;
    overflow-y: auto;
    animation: slideInRight 0.3s ease-out;
    flex-direction: column;
    justify-content: flex-start;
  }
  .navbar__menu ul {
    flex-direction: column;
    gap: 0;
    padding: 4rem 0 1rem;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .navbar__menu ul li {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .navbar__menu ul li a {
    display: block;
    padding: 1rem 1.5rem;
    border-radius: 0;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.2s ease;
  }
  .navbar__menu ul li a::after {
    display: none;
  }
  .navbar__menu ul li a:hover, .navbar__menu ul li a:active {
    background-color: rgba(212, 175, 55, 0.1);
    color: #d4af37;
  }
  .navbar__menu.active {
    display: flex;
  }
  .navbar__actions {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    padding: 1.5rem;
    margin-top: auto;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    background: rgba(249, 249, 249, 0.5);
  }
  .navbar__actions.active {
    display: flex;
  }
  .navbar__action-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    border-radius: 8px;
    min-height: 56px;
  }
  .navbar__action-btn .sistelar-text .sistelar-title,
  .navbar__action-btn .sistelar-text .banco-title,
  .navbar__action-btn .banco-text .sistelar-title,
  .navbar__action-btn .banco-text .banco-title {
    font-size: 0.95rem;
  }
  .navbar__action-btn .sistelar-text .sistelar-subtitle,
  .navbar__action-btn .sistelar-text .banco-subtitle,
  .navbar__action-btn .banco-text .sistelar-subtitle,
  .navbar__action-btn .banco-text .banco-subtitle {
    font-size: 0.8rem;
  }
  .navbar__toggle {
    display: block;
    position: relative;
    z-index: 1001;
    order: 3;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  .navbar__toggle.active {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1002;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0.75rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  .navbar__toggle.active span {
    background-color: #000;
    width: 24px;
    height: 2.5px;
  }
}
@media (max-width: 480px) {
  .navbar {
    padding: 0.875rem 1rem;
  }
  .navbar__logo img {
    height: 35px;
  }
  .navbar__logo span {
    font-size: 1.1rem;
  }
  .navbar__menu ul {
    padding: 3.5rem 0 1rem;
  }
  .navbar__actions {
    padding: 1rem;
  }
  .navbar__toggle.active {
    top: 0.75rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
    padding: 0.5rem;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.navbar__links {
  position: relative;
}
.navbar__links .dropdown {
  position: relative;
}
.navbar__links .dropdown > a {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  position: relative;
}
.navbar__links .dropdown > a i {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}
.navbar__links .dropdown:hover > a i, .navbar__links .dropdown.active > a i {
  transform: rotate(180deg);
}
.navbar__links .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  z-index: 999;
  padding: 0.75rem 0;
  min-width: 320px;
  animation: fadeInDown 0.3s ease-out;
  border: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.2s ease 0.1s, transform 0.2s ease 0.1s, visibility 0s 0.3s;
  margin-top: 0.5rem;
}
.navbar__links .dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -0.75rem;
  left: -30px;
  right: -30px;
  height: 0.75rem;
  background: transparent;
}
.navbar__links .dropdown .dropdown-menu li a {
  display: block;
  padding: 0.875rem 1.75rem;
  text-decoration: none;
  color: #000;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  position: relative;
}
.navbar__links .dropdown .dropdown-menu li a:hover {
  background: rgba(212, 175, 55, 0.12);
  color: #d4af37;
  border-left-color: #d4af37;
  padding-left: 2rem;
  transform: translateX(2px);
}
@media (min-width: 769px) {
  .navbar__links .dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    pointer-events: all !important;
    visibility: visible !important;
    animation: fadeInDown 0.3s ease-out;
    transition-delay: 0s;
  }
  .navbar__links .dropdown .dropdown-menu:hover {
    display: block !important;
    opacity: 1 !important;
    pointer-events: all !important;
    visibility: visible !important;
  }
  .navbar__links .dropdown:hover::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -30px;
    right: -30px;
    height: 0.75rem;
    background: transparent;
    z-index: 998;
  }
}
.navbar__links .dropdown.active .dropdown-menu {
  display: block !important;
  opacity: 1 !important;
  pointer-events: all !important;
  visibility: visible !important;
  transition-delay: 0s;
}
@media (max-width: 1024px) {
  .navbar__links .dropdown .dropdown-menu {
    min-width: 250px;
  }
}
@media (max-width: 768px) {
  .navbar__links .dropdown {
    width: 100%;
  }
  .navbar__links .dropdown > a {
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
  }
  .navbar__links .dropdown > a i {
    margin-left: auto;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
  }
  .navbar__links .dropdown.active > a i {
    transform: rotate(180deg);
  }
  .navbar__links .dropdown .dropdown-menu {
    position: relative !important;
    display: block !important;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    background: rgba(212, 175, 55, 0.05);
    margin-top: 0;
    min-width: 100%;
    max-height: 0 !important;
    overflow: hidden;
    opacity: 0 !important;
    transform: translateY(-10px);
    visibility: hidden !important;
    pointer-events: none !important;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.3s, pointer-events 0s 0.3s;
    will-change: max-height, opacity, transform;
  }
  .navbar__links .dropdown .dropdown-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateX(0);
    transition: transform 0.2s ease;
  }
  .navbar__links .dropdown .dropdown-menu li a {
    padding: 0.875rem 1.5rem 0.875rem 2.5rem;
    font-size: 1rem;
    border-left: none;
    position: relative;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
  }
  .navbar__links .dropdown .dropdown-menu li a::before {
    content: "→";
    position: absolute;
    left: 1.5rem;
    color: #d4af37;
    opacity: 0.6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: bold;
  }
  .navbar__links .dropdown .dropdown-menu li a:hover, .navbar__links .dropdown .dropdown-menu li a:active {
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    padding-left: 2.75rem;
    transform: translateX(4px);
  }
  .navbar__links .dropdown .dropdown-menu li a:hover::before, .navbar__links .dropdown .dropdown-menu li a:active::before {
    opacity: 1;
    left: 1.75rem;
  }
  .navbar__links .dropdown.active .dropdown-menu, .navbar__links .dropdown.active > .dropdown-menu {
    max-height: 1000px !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    pointer-events: all !important;
    display: block !important;
    transition-delay: 0s !important;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}
.banner {
  position: relative;
  height: 40vh;
  min-height: 300px;
  background: url("../assets/hero_img1.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
  z-index: 1;
}
.banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}
.banner__content h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  margin: 0;
}
@media (max-width: 768px) {
  .banner {
    height: 30vh;
    min-height: 250px;
  }
  .banner__content h1 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .banner {
    height: 25vh;
    min-height: 200px;
  }
  .banner__content {
    padding: 1rem;
  }
  .banner__content h1 {
    font-size: 1.75rem;
  }
}

.about-section {
  padding: 5rem 2rem;
  background-color: #f9f9f9;
  color: #1d3a4f;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-section .about-content {
  max-width: 800px;
  padding: 3rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.about-section .about-content h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #d9943c;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-bottom: 4px solid #e4b94f;
  display: inline-block;
  padding-bottom: 0.5rem;
  margin: 0 auto;
}
.about-section .about-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #444;
}
.about-section .about-content p:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .about-section {
    padding: 4rem 1.5rem;
  }
  .about-section .about-content {
    padding: 2.5rem;
  }
}
@media (max-width: 768px) {
  .about-section {
    padding: 3rem 1rem;
  }
  .about-section .about-content {
    padding: 2rem;
  }
  .about-section .about-content h2 {
    font-size: 2rem;
    letter-spacing: 0.8px;
  }
  .about-section .about-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
}
@media (max-width: 480px) {
  .about-section {
    padding: 2rem 1rem;
  }
  .about-section .about-content {
    padding: 1.5rem;
  }
  .about-section .about-content h2 {
    font-size: 1.75rem;
    border-bottom-width: 3px;
  }
  .about-section .about-content p {
    font-size: 0.95rem;
  }
}

.organization-section {
  padding: 4rem 2rem;
  background-color: #ffffff;
  text-align: center;
}
.organization-section .organization-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #d4af37;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.organization-section .organization-link {
  text-decoration: none;
  color: inherit;
  display: block;
  max-width: 1200px;
  margin: 0 auto;
}
.organization-section .organization-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  transition: transform 0.3s ease;
}
.organization-section .organization-container:hover {
  transform: translateY(-5px);
}
.organization-section .organization-side-block {
  flex: 1;
  height: 300px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  transition: all 0.3s ease;
}
.organization-section .organization-side-block.left-block {
  border-radius: 20px 0 0 20px;
}
.organization-section .organization-side-block.right-block {
  border-radius: 0 20px 20px 0;
}
.organization-section .organization-center {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  margin: 0 auto;
}
.organization-section .organization-image-wrapper {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.organization-section .organization-image-wrapper:hover {
  transform: scale(1.05);
}
.organization-section .organization-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.organization-section .organization-label {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
  margin: 0;
}
@media (max-width: 1024px) {
  .organization-section {
    padding: 3rem 1.5rem;
  }
  .organization-section .organization-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .organization-section .organization-center {
    max-width: 450px;
  }
  .organization-section .organization-side-block {
    height: 250px;
  }
}
@media (max-width: 768px) {
  .organization-section {
    padding: 2.5rem 1rem;
  }
  .organization-section .organization-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  .organization-section .organization-container {
    flex-direction: column;
  }
  .organization-section .organization-side-block {
    display: none;
  }
  .organization-section .organization-center {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .organization-section .organization-image-wrapper {
    height: 250px;
  }
  .organization-section .organization-label {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .organization-section {
    padding: 2rem 1rem;
  }
  .organization-section .organization-title {
    font-size: 1.5rem;
  }
  .organization-section .organization-center {
    padding: 1rem;
  }
  .organization-section .organization-image-wrapper {
    height: 180px;
  }
  .organization-section .organization-label {
    font-size: 1rem;
  }
}

.license-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #d4af37, #b5932c);
  display: flex;
  justify-content: center;
  align-items: center;
}
.license-section .license-banner {
  text-align: center;
  max-width: 800px;
  width: 100%;
}
.license-section .license-banner h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.license-section .license-banner .license-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #fff;
  color: #d4af37;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.license-section .license-banner .license-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.95);
}
@media (max-width: 768px) {
  .license-section {
    padding: 3rem 1.5rem;
  }
  .license-section .license-banner h2 {
    font-size: 1.75rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
  }
  .license-section .license-banner .license-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .license-section {
    padding: 2.5rem 1rem;
  }
  .license-section .license-banner h2 {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
  }
  .license-section .license-banner .license-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}

.complaints-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}
.complaints-section .complaints-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.complaints-section .complaints-content {
  flex: 1;
}
.complaints-section .complaints-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.complaints-section .complaints-content .complaints-questions {
  margin-bottom: 2rem;
}
.complaints-section .complaints-content .complaints-questions p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1rem;
}
.complaints-section .complaints-content .complaints-questions p:last-child {
  margin-bottom: 0;
}
.complaints-section .complaints-content .complaints-banner {
  background: linear-gradient(135deg, #d4af37, #b5932c);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.complaints-section .complaints-content .complaints-banner h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.complaints-section .complaints-content .complaints-banner .complaints-button {
  padding: 0.875rem 2rem;
  background: #fff;
  color: #d4af37;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: inline-block;
  text-decoration: none;
}
.complaints-section .complaints-content .complaints-banner .complaints-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.complaints-section .complaints-content > .complaints-button {
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #d4af37, #b5932c);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: inline-block;
  text-decoration: none;
  margin-top: 1.5rem;
}
.complaints-section .complaints-content > .complaints-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #b5932c, #9a7d25);
}
.complaints-section .complaints-illustration {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.complaints-section .complaints-illustration .denuncias-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .complaints-section {
    padding: 3rem 1.5rem;
  }
  .complaints-section .complaints-container {
    gap: 2rem;
  }
  .complaints-section .complaints-content h2 {
    font-size: 2rem;
  }
  .complaints-section .complaints-content .complaints-questions p {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .complaints-section {
    padding: 2.5rem 1rem;
  }
  .complaints-section .complaints-container {
    flex-direction: column;
    gap: 2rem;
  }
  .complaints-section .complaints-content {
    width: 100%;
  }
  .complaints-section .complaints-content h2 {
    font-size: 1.75rem;
    text-align: center;
  }
  .complaints-section .complaints-content .complaints-questions {
    text-align: center;
  }
  .complaints-section .complaints-content .complaints-questions p {
    font-size: 1rem;
  }
  .complaints-section .complaints-content .complaints-banner h3 {
    font-size: 1.25rem;
  }
  .complaints-section .complaints-illustration {
    width: 100%;
    order: -1;
  }
}
@media (max-width: 480px) {
  .complaints-section {
    padding: 2rem 1rem;
  }
  .complaints-section .complaints-content h2 {
    font-size: 1.5rem;
  }
  .complaints-section .complaints-content .complaints-questions p {
    font-size: 0.95rem;
  }
  .complaints-section .complaints-content .complaints-banner {
    padding: 1.5rem;
  }
  .complaints-section .complaints-content .complaints-banner h3 {
    font-size: 1.1rem;
  }
  .complaints-section .complaints-content .complaints-banner .complaints-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

.complaint-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 2000;
  overflow-y: auto;
  padding: 2rem 1rem;
}
.complaint-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.complaint-modal .complaint-modal-content {
  background: #fff;
  border-radius: 16px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}
.complaint-modal .complaint-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 2px solid #e0e0e0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
  border-radius: 16px 16px 0 0;
}
.complaint-modal .complaint-modal-header h2 {
  font-size: 1.75rem;
  font-weight: bold;
  color: #000;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.complaint-modal .complaint-modal-header .complaint-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #000;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.complaint-modal .complaint-modal-header .complaint-modal-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #d4af37;
  transform: rotate(90deg);
}
.complaint-modal .complaint-form {
  padding: 2rem;
}
.complaint-modal .complaint-form .form-group {
  margin-bottom: 1.5rem;
}
.complaint-modal .complaint-form .form-group .form-label-bold {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.complaint-modal .complaint-form .form-group .form-textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.3s ease;
}
.complaint-modal .complaint-form .form-group .form-textarea:focus {
  outline: none;
  border-color: #d4af37;
}
.complaint-modal .complaint-form .form-date-range {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.complaint-modal .complaint-form .form-date-range .form-date-group {
  flex: 1;
}
.complaint-modal .complaint-form .form-date-range .form-date-group .form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.complaint-modal .complaint-form .form-date-range .form-date-group .date-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.complaint-modal .complaint-form .form-date-range .form-date-group .date-input-wrapper .date-icon {
  position: absolute;
  left: 0.75rem;
  color: #d4af37;
  pointer-events: none;
}
.complaint-modal .complaint-form .form-date-range .form-date-group .date-input-wrapper .form-date-input {
  width: 100%;
  padding: 0.875rem 0.875rem 0.875rem 2.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.complaint-modal .complaint-form .form-date-range .form-date-group .date-input-wrapper .form-date-input:focus {
  outline: none;
  border-color: #d4af37;
}
.complaint-modal .complaint-form .form-date-range .form-date-group .date-input-wrapper .date-icon-small {
  display: none;
}
.complaint-modal .complaint-form .form-checkbox-group {
  margin-bottom: 1.5rem;
}
.complaint-modal .complaint-form .form-checkbox-group .checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  color: #000;
}
.complaint-modal .complaint-form .form-checkbox-group .checkbox-label input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #d4af37;
}
.complaint-modal .complaint-form .form-file-input {
  display: none;
}
.complaint-modal .complaint-form .file-input-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: #d4af37;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.complaint-modal .complaint-form .file-input-label:hover {
  background: #b5932c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}
.complaint-modal .complaint-form .file-input-label i {
  font-size: 1.1rem;
}
.complaint-modal .complaint-form .form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: flex-end;
}
.complaint-modal .complaint-form .form-actions .form-submit-btn {
  padding: 0.875rem 2rem;
  background: #d4af37;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.complaint-modal .complaint-form .form-actions .form-submit-btn:hover {
  background: #b5932c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}
.complaint-modal .complaint-form .form-actions .form-cancel-btn {
  padding: 0.875rem 2rem;
  background: transparent;
  color: #000;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.complaint-modal .complaint-form .form-actions .form-cancel-btn:hover {
  border-color: #000;
  background: rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .complaint-modal {
    padding: 1rem;
    align-items: flex-start;
  }
  .complaint-modal .complaint-modal-content {
    max-height: 95vh;
    margin: 1rem 0;
  }
  .complaint-modal .complaint-modal-header {
    padding: 1rem 1.5rem;
  }
  .complaint-modal .complaint-modal-header h2 {
    font-size: 1.5rem;
  }
  .complaint-modal .complaint-form {
    padding: 1.5rem;
  }
  .complaint-modal .complaint-form .form-date-range {
    flex-direction: column;
    gap: 1rem;
  }
  .complaint-modal .complaint-form .form-actions {
    flex-direction: column-reverse;
  }
  .complaint-modal .complaint-form .form-actions .form-submit-btn,
  .complaint-modal .complaint-form .form-actions .form-cancel-btn {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .complaint-modal {
    padding: 0.5rem;
  }
  .complaint-modal .complaint-modal-content {
    border-radius: 12px;
  }
  .complaint-modal .complaint-modal-header {
    padding: 1rem;
  }
  .complaint-modal .complaint-modal-header h2 {
    font-size: 1.25rem;
  }
  .complaint-modal .complaint-form {
    padding: 1rem;
  }
  .complaint-modal .complaint-form .form-group .form-label-bold {
    font-size: 0.85rem;
  }
  .complaint-modal .complaint-form .form-group .form-textarea {
    font-size: 0.95rem;
  }
}

.team-banner {
  position: relative;
  height: 40vh;
  min-height: 300px;
  background: url("../assets/hero_img1.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
  z-index: 1;
}
.team-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}
.team-banner__content h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  margin: 0;
}
@media (max-width: 768px) {
  .team-banner {
    height: 30vh;
    min-height: 250px;
  }
  .team-banner__content h1 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .team-banner {
    height: 25vh;
    min-height: 200px;
  }
  .team-banner__content {
    padding: 1rem;
  }
  .team-banner__content h1 {
    font-size: 1.75rem;
  }
}

.team-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}
.team-section .team-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.team-section .team-group {
  width: 100%;
}
.team-section .team-group .team-group-title {
  font-size: 2rem;
  font-weight: bold;
  color: #d4af37;
  margin-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 1rem;
  border-bottom: 3px solid #d4af37;
}
.team-section .team-group .team-members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.team-section .team-member-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.team-section .team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.team-section .team-member-card.single-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
}
.team-section .team-member-card.single-card .team-role-title {
  font-size: 1.75rem;
  font-weight: bold;
  color: #d4af37;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.team-section .team-member-card.single-card .team-member-info {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}
.team-section .team-member-card .team-member-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid #d4af37;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.team-section .team-member-card .placeholder-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #d4af37;
  margin-bottom: 1rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.team-section .team-member-card .placeholder-photo::after {
  content: "";
  width: 60px;
  height: 60px;
  border: 3px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  position: absolute;
}
.team-section .team-member-card .team-member-details {
  flex: 1;
  width: 100%;
}
.team-section .team-member-card .team-member-details .team-member-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.5rem;
}
.team-section .team-member-card .team-member-details .team-member-role {
  font-size: 1rem;
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.team-section .team-member-card .team-member-details .team-member-phone {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.5rem;
}
.team-section .team-member-card .team-member-details .team-member-email {
  font-size: 0.95rem;
  color: #d4af37;
  word-break: break-word;
  text-decoration: none;
}
.team-section .team-member-card .team-member-details .team-member-email:hover {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .team-section {
    padding: 3rem 1.5rem;
  }
  .team-section .team-container {
    gap: 2.5rem;
  }
  .team-section .team-group .team-group-title {
    font-size: 1.75rem;
  }
  .team-section .team-group .team-members-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  .team-section .team-member-card.single-card .team-member-info {
    flex-direction: column;
    text-align: center;
  }
  .team-section .team-member-card.single-card .team-member-photo {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .team-section {
    padding: 2.5rem 1rem;
  }
  .team-section .team-container {
    gap: 2rem;
  }
  .team-section .team-group .team-group-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .team-section .team-group .team-members-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
  }
  .team-section .team-member-card {
    padding: 1.25rem;
  }
  .team-section .team-member-card.single-card {
    padding: 1.5rem;
  }
  .team-section .team-member-card.single-card .team-role-title {
    font-size: 1.5rem;
  }
  .team-section .team-member-card.single-card .team-member-info {
    gap: 1.5rem;
  }
  .team-section .team-member-card .team-member-photo {
    width: 120px;
    height: 120px;
  }
  .team-section .team-member-card .placeholder-photo {
    width: 120px;
    height: 120px;
  }
  .team-section .team-member-card .placeholder-photo::after {
    width: 50px;
    height: 50px;
  }
  .team-section .team-member-card .team-member-details .team-member-name {
    font-size: 1.1rem;
  }
  .team-section .team-member-card .team-member-details .team-member-role {
    font-size: 0.9rem;
  }
  .team-section .team-member-card .team-member-details .team-member-phone,
  .team-section .team-member-card .team-member-details .team-member-email {
    font-size: 0.85rem;
  }
}
@media (max-width: 480px) {
  .team-section {
    padding: 2rem 1rem;
  }
  .team-section .team-container {
    gap: 1.5rem;
  }
  .team-section .team-group .team-group-title {
    font-size: 1.25rem;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
  }
  .team-section .team-group .team-members-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .team-section .team-member-card {
    padding: 1rem;
  }
  .team-section .team-member-card.single-card {
    padding: 1.25rem;
  }
  .team-section .team-member-card.single-card .team-role-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .team-section .team-member-card.single-card .team-member-info {
    gap: 1rem;
  }
  .team-section .team-member-card .team-member-photo {
    width: 100px;
    height: 100px;
    margin-bottom: 0.75rem;
  }
  .team-section .team-member-card .placeholder-photo {
    width: 100px;
    height: 100px;
    margin-bottom: 0.75rem;
  }
  .team-section .team-member-card .placeholder-photo::after {
    width: 40px;
    height: 40px;
  }
  .team-section .team-member-card .team-member-details .team-member-name {
    font-size: 1rem;
  }
  .team-section .team-member-card .team-member-details .team-member-role {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
  .team-section .team-member-card .team-member-details .team-member-phone,
  .team-section .team-member-card .team-member-details .team-member-email {
    font-size: 0.8rem;
  }
}

.footer {
  background-color: #1e1e1e;
  color: #fff;
  padding: 2rem 0;
}
.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}
@media (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
}
.footer__logo img {
  max-width: 150px;
  padding: 0.5rem;
}
.footer__contact {
  flex: 1;
  max-width: 400px;
  padding: 0 2rem;
}
.footer__contact h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.footer__contact p {
  font-size: 1rem;
  line-height: 1.5;
}
.footer__contact p a {
  color: #d4af37;
  text-decoration: none;
}
.footer__contact p a:hover {
  text-decoration: underline;
}
.footer__social {
  flex: 1;
  padding: 0 2rem;
}
.footer__social h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.footer__social-icons {
  display: flex;
  gap: 1rem;
}
.footer__social-icons a {
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s;
}
.footer__social-icons a:hover {
  color: #d4af37;
}
.footer__copyright {
  background-color: #111;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 1rem;
}/*# sourceMappingURL=styles.css.map */
/* Presentation Section */
.presentation-section {
  padding: 5rem 2rem;
  background-color: #ffffff;
}

.presentation-container {
  max-width: 1200px;
  margin: 0 auto;
}

.presentation-container h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #d9943c;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-bottom: 4px solid #e4b94f;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.presentation-container p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 3rem;
  max-width: 900px;
}

.iso-certificates {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.iso-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  background: linear-gradient(135deg, #d4af37, #b5932c);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.iso-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.iso-info h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.iso-button {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  background: #fff;
  color: #d4af37;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.iso-button:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: scale(1.05);
  color: #b5932c;
}

@media (max-width: 768px) {
  .presentation-section {
    padding: 3rem 1.5rem;
  }
  .presentation-container h2 {
    font-size: 2rem;
  }
  .presentation-container p {
    font-size: 1rem;
    line-height: 1.6;
  }
  .iso-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
  }
  .iso-info h3 {
    font-size: 1.2rem;
  }
}

/* Documentos Oficiales Section */
.docs-section {
  padding: 3rem 2rem 4rem;
  background-color: #f5f5f5;
}

.docs-container {
  max-width: 1100px;
  margin: 0 auto;
}

.docs-title {
  font-size: 1rem;
  font-weight: 700;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1rem;
}

.docs-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: #d4af37;
  border-radius: 4px;
}

.docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.doc-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  background: #fff;
  border: 2px solid #e8e8e8;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-left: 5px solid #d4af37;
}

.doc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
  border-color: #d4af37;
}

.doc-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #d4af37, #b5932c);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.doc-card__icon i {
  font-size: 1.4rem;
  color: #fff;
}

.doc-card__info {
  flex: 1;
}

.doc-card__info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1d1d1d;
  margin: 0 0 0.25rem 0;
}

.doc-card__info p {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
}

.doc-card__btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, #d4af37, #b5932c);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

.doc-card__btn:hover {
  background: linear-gradient(135deg, #b5932c, #9a7d25);
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {
  .docs-section {
    padding: 3rem 1.25rem;
  }
  .docs-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .doc-card {
    padding: 1.25rem;
    gap: 1rem;
  }
  .doc-card__icon {
    width: 44px;
    height: 44px;
  }
  .doc-card__info h3 {
    font-size: 0.95rem;
  }
}
