@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Lora:wght@400;700&family=Merriweather:wght@400;700&family=Open+Sans:wght@400;700&family=Playfair+Display:wght@400;700&family=Raleway:wght@400;700&family=Roboto:wght@400;700&family=Source+Sans+Pro:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;700&display=swap");
@font-face {
  font-family: "Tabarra Light";
  src: url("content/Fonts/tabarra.light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html, body {
  margin: 0;
  padding: 0;
  height: 100vh;
  font-family: "Raleway", sans-serif;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  flex-grow: 1;
  background: radial-gradient(ellipse at center, rgb(255, 255, 255) 0%, rgb(255, 255, 248) 35%, #e5feff 100%);
  overflow-x: hidden;
}

main {
  display: flex;
  padding: 0 1rem;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
}

header, footer {
  position: relative;
  width: 100%;
}

.header-content {
  margin-top: 200px;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.sky, .ocean {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

header {
  top: 0;
  z-index: 1;
}

.contact h2 {
  text-align: center;
}

footer {
  z-index: auto;
  bottom: 0;
}

h1 {
  margin-bottom: 1rem;
  font-size: 5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0;
  font-family: "EB Garamond", serif;
}

h2, h3 {
  margin: 10px 0;
  font-size: 1.35rem;
  color: #2C3E50;
  font-family: "Tabarra Light", "Merriweather", serif;
}

h3 {
  font-family: "Raleway";
  font-size: 1.27rem;
  font-weight: 600;
  color: #3f3f3f;
}

p {
  line-height: 1.5;
}

.content {
  text-align: center;
  padding: 50px 20px;
}

.icons {
  text-align: center;
  margin-top: 20px;
}
.icons a {
  margin: 0 10px;
  color: #2C3E50;
  font-size: 1.5em;
  text-decoration: none;
}

.sky {
  width: 100%;
  position: absolute;
  top: 0;
  transform: rotate(180deg);
}

.ocean {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.wave {
  background: url(content/wave3.svg) repeat-x;
  position: absolute;
  top: 0;
  width: 6400px;
  height: 198px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
}

.oceanwave {
  background: url(content/wave3.svg) repeat-x;
  position: absolute;
  bottom: -50px;
  width: 6400px;
  height: 145px;
  animation: wave-ocean 6s linear infinite;
  transform: translate3d(0, 0, 0);
}

.island {
  background: url(content/island.svg) repeat-x;
  position: absolute;
  bottom: -50px;
  width: 6400px;
  height: 200px;
  transform: translate3d(0, 0, 0);
  opacity: 0.9;
}

.wave:nth-of-type(2) {
  top: 0;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 7s ease -1.25s infinite;
  opacity: 1;
}

.oceanwave:nth-of-type(2) {
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) 0.125s infinite, swelll 7s ease -0.25s infinite;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 7s ease -1.25s infinite;
  animation: wave 16s linear infinite;
  opacity: 1;
}

@keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}
@keyframes wave-ocean {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}
@keyframes swell {
  0%, 100% {
    transform: translate3d(0, -25px, 0);
  }
  50% {
    transform: translate3d(0, 5px, 0);
  }
}
@keyframes swelll {
  0%, 100% {
    transform: translate3d(0, 15px, 0);
  }
  50% {
    transform: translate3d(0, -5px, 0);
  }
}
.footer-text {
  margin-bottom: 200px;
  text-align: center;
  padding: 0 1rem;
}

section {
  width: 100%;
  position: relative;
}

.hojas-decoration {
  position: absolute;
  top: -23px;
  left: 191px;
  z-index: auto;
  pointer-events: none;
}
.hojas-decoration .hojas-image {
  width: 100px;
  height: auto;
  opacity: 0.8;
  filter: hue-rotate(17deg) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: all 0.3s ease;
}

.cta-container:hover .hojas-image {
  opacity: 1;
  transform: scale(1.1) rotate(5deg);
}

@media (max-width: 768px) {
  .hojas-decoration {
    top: -23px;
    right: 15px;
  }
  .hojas-decoration .hojas-image {
    width: 100px;
  }
}
@media (max-width: 480px) {
  .hojas-decoration {
    top: -15px;
    right: 10px;
  }
  .hojas-decoration .hojas-image {
    width: 100px;
  }
}
@media (max-width: 480px) {
  .hojas-decoration {
    top: -15px;
    left: calc(100lvw - 8rem);
  }
  .hojas-decoration .hojas-image {
    width: 100px;
  }
}
.service-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.service-item:last-child {
  border-bottom: none;
}
.service-item:hover {
  background-color: #f8f9fa;
}
.service-item:hover .service-tooltip .tooltip-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.service-item:hover .service-tooltip i {
  color: #4169E1;
}

.service-name {
  font-weight: 500;
  color: #2C3E50;
  flex-grow: 1;
  margin-left: 0.75rem;
}

.service-tooltip {
  position: relative;
  flex-shrink: 0;
}
.service-tooltip i {
  color: #2C3E50;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.service-tooltip .tooltip-content {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 0.5rem;
  background: #2C3E50;
  color: white;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.4;
  width: 280px;
  max-width: 90vw;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.service-tooltip .tooltip-content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 1rem;
  border: 6px solid transparent;
  border-top-color: #2C3E50;
}

@media (max-width: 768px) {
  .service-tooltip .tooltip-content {
    width: 250px;
    right: -50px;
  }
  .service-tooltip .tooltip-content::after {
    right: 50px;
  }
}
@media (max-width: 480px) {
  .service-tooltip .tooltip-content {
    width: 200px;
    right: -30px;
    font-size: 0.8rem;
  }
  .service-tooltip .tooltip-content::after {
    right: 30px;
  }
}
.credentials-container {
  display: flex;
  flex-direction: row;
}

.credentials-badges {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
}
.credentials-badges i.fas.fa-award {
  font-size: 1.9rem;
}

.credential-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 10px;
  padding: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.credential-badge:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 100%;
  background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  transition: width 0.3s ease;
}
.credential-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
  border-color: #c7d2fe;
}
.credential-badge:hover:before {
  width: 6px;
}
.credential-badge:hover i {
  transform: scale(1.1);
  color: #6366f1;
}
.credential-badge:nth-child(1):before {
  background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
}
.credential-badge:nth-child(1) i {
  color: #484c51;
}
.credential-badge:nth-child(1):hover i {
  color: #d97706;
}
.credential-badge:nth-child(2):before {
  background: linear-gradient(180deg, #10b981 0%, #059669 100%);
}
.credential-badge:nth-child(2) i {
  color: #484c51;
}
.credential-badge:nth-child(2):hover i {
  color: #059669;
}
.credential-badge:nth-child(3):before {
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
}
.credential-badge:nth-child(3) i {
  color: #484c51;
}
.credential-badge:nth-child(3):hover i {
  color: #2563eb;
}
.credential-badge i {
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.badge-content {
  flex-grow: 1;
}
.badge-content .degree {
  font-weight: 600;
  color: #555555;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.badge-content .institution {
  color: #6b7280;
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.2;
}

.education-section,
.education-list,
.education-item {
  display: none;
}

@media (max-width: 768px) {
  div.credentials-container {
    margin-top: 1.5rem;
    padding: 0.75rem;
    flex-wrap: wrap;
  }
  div.credentials-badges {
    flex-wrap: wrap;
  }
  div.credential-badge {
    padding: 0.875rem;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  div.credential-badge i {
    font-size: 1.5rem;
  }
  div.credential-badge .degree {
    font-size: 0.9rem;
  }
  div.credential-badge .institution {
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  div.credential-badge, div.credentials-container {
    padding: 0;
  }
  div.credential-badge:hover, div.credentials-container:hover {
    padding: 0.875rem;
    gap: 0.75rem;
  }
}
div.hr {
  display: flex;
  width: 100%;
  position: relative;
}

hr {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  position: relative;
  width: 100%;
  margin: 2rem 0;
}

div .logo {
  position: absolute;
  top: 19px;
  left: 50%;
  transform: translateX(-50%);
  background: white url("content/tridente.svg") no-repeat center center;
  background-size: contain;
  height: 25px;
  width: 30px;
  padding: 0 0.5em;
  border-radius: 50%;
  filter: grayscale(100%);
}

/* Navigation Styles */
header nav {
  display: none;
  position: fixed;
  z-index: auto;
  top: 0;
  left: 0;
  width: 45px;
  height: 45px;
  border-radius: 0 0 25% 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

nav ul {
  margin: 0;
}

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}

button.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
  position: fixed;
  z-index: 7;
}

.hamburger {
  width: 25px;
  height: 2px;
  background: #2C3E50;
  position: relative;
  transition: all 0.3s;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.nav {
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 45px;
  height: 45px;
  top: 0;
  left: 0;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  z-index: 6;
}

.nav-open {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.nav li {
  margin: 1rem 0;
}

.nav a {
  text-decoration: none;
  color: #2C3E50;
  font-size: 1.5rem;
}

@media only screen and (max-width: 479px) {
  header nav {
    display: flex;
  }
  .header-content {
    margin-top: 46px;
  }
  .sky, .ocean {
    height: 97px;
  }
  h2 {
    text-align: center;
    font-size: 1.25rem;
  }
}
.cta-container {
  position: relative;
  display: flex;
  justify-content: flex-start;
  margin: 0.9rem 0;
}
.cta-container:hover .hojas-decoration {
  z-index: 1;
}

.cta-button {
  min-width: 275px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  border: 2px solid white;
  border-radius: 12px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FBFF 100%);
  color: #2C3E50;
  text-decoration: none;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: rgb(209, 230, 252) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(44, 62, 80, 0.15);
  border-color: #BBDEFB;
  background: linear-gradient(135deg, #F8FBFF 0%, #E3F2FD 100%);
}
.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(44, 62, 80, 0.1);
}
.cta-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(100, 149, 237, 0.3);
}

.cta-icon {
  font-size: 2rem;
  flex-shrink: 0;
  color: #6495ED;
}

.cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.cta-text strong {
  font-weight: 600;
  font-size: 1.1rem;
}
.cta-text small {
  opacity: 0.9;
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

.cta-button.secondary {
  background: linear-gradient(135deg, #f4fbff 0%, #ffffff 100%);
  color: #2C3E50;
  border-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  box-sizing: border-box;
}
.cta-button.secondary:hover {
  background: linear-gradient(135deg, #F8FBFF 0%, #E3F2FD 100%);
  border-color: #a6b5dd;
  color: #2C3E50;
  box-shadow: 0 8px 30px rgba(65, 105, 225, 0.25);
}
.cta-button.secondary .cta-icon {
  color: #2C3E50;
}
.cta-button.secondary .cta-text {
  color: #2C3E50;
}
.cta-button.secondary .cta-text strong {
  color: #131c24;
}
.cta-button.secondary .cta-text small {
  color: #2C3E50;
}

@media (max-width: 768px) {
  .cta-button {
    padding: 0.875rem 1.5rem;
    gap: 0.75rem;
  }
  .cta-button .cta-icon {
    font-size: 1.5rem;
  }
  .cta-button .cta-text strong {
    font-size: 1rem;
  }
  .cta-button .cta-text small {
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 3rem;
  }
  ul#services-list {
    padding-left: 1rem;
  }
  .icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-evenly;
  }
  .icons i {
    font-size: 35px;
  }
  .cta-button {
    padding: 0.75rem 1.25rem;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    min-width: 100%;
  }
  .cta-button .cta-button.secondary {
    max-width: calc(100% - 2rem);
    box-sizing: border-box;
  }
  .cta-button .cta-text {
    align-items: center;
  }
}

/*# sourceMappingURL=style.css.map */
