/* ----------------- BODY ----------------- */
body {
  height: 100%;
  width: 100%;
  padding: 0;
  min-height: 600px;
  box-sizing: border-box;
  background-image: url('/static/image/background.webp');
  background-repeat: repeat;        
  background-size: 600px;           
  background-position: top left;    
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}


.logo svg {
  height: 60px;
  width: auto;
  display: block;
  fill: white
}



.circular-img {
    width: 400px;
    height: 400px;
    min-width: 400px;
    min-height: 400px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #1C3153;
    font-weight: 400;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #1C3153;
    font-weight: 250;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

p {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    color: #294671;
    font-weight: 300;
    text-align: justify;
}

/* ----------------- NAVBAR ----------------- */
.container-nav {
    margin-top: 0.5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #294671;
    padding: 10px 20px;
    width: 100%;
    height: 110px;
    box-sizing: border-box;
    flex-wrap: wrap;
}

/* Logo */
.logo a {
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 24px;
  text-decoration: none;
}

/* Nav */
.container-nav nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Lista de enlaces */
.container-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
}

/* Enlaces */
.container-nav ul li a {
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    color: white;
    font-weight: 200;
    font-size: 24px;
}

.gold-button a {
    padding: 5px 5px;
    background-color: #EEB95F;
    color: #FFFFFF;
    border-radius: 5px;
}

/* ----------------- COVER ----------------- */
.cover {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 350px;
    padding-top: 15%;
}

.cover img {
    position: absolute;
    top: 2%;
    left: 10%;
    width: 60%;
    height: 75%;
    object-fit: cover;
    z-index: 1;
}

.cover p {
    align-items: flex-end;
    top: 28%;
    left: 50%;
    width: 40%;
    position: absolute;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    text-align: center;
    color: #FFFFFF;
    font-weight: 300;
    background-color: #294671CF;
    text-align: justify;
    padding-top: 150px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 30px;
    box-sizing: border-box;
    z-index: 2;
    flex-wrap: wrap;
    hyphens: auto;
    word-spacing: -2px !important;
}

.cover h1 {
    position: absolute;
    top: 35%;
    width: 100%;
    display: inline-block;
    font-family: 'Playfair Display';
    font-size: 80px;
    text-align: center;
    color: #1C3153;
    font-weight: 300;
    background-color: #EEB95FCF;
    padding: 10px 20px;
    margin: 0;
    z-index: 4;
}



/* ----------------- SERVICES ----------------- */
.services-section {
    display:flex;
    flex-direction: row;
    flex-wrap: wrap; 
    justify-content: space-between;
}

.services-section .text-container {
    width: 70%;
    justify-content: center;
}

.services-section .text-container p {
    padding-left: 100px;
    padding-right: 100px;
    hyphens: auto;
    word-spacing: -1px !important;
}

.services-section .image-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 20%;
    
}

.services-section .text-container {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    text-align: justify;
    color: #1C3153;
    font-weight: 300;
    padding: 20px;

}

/*------------- ABOUT OUR PROFESSIONALS --------*/
.about-our-section{
  margin-top: 2%;
  margin-bottom: 2%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.candidate-box{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.text-container-hp{
    padding-left: 5%;
    padding-right: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.about-our-section p{
  display: flex;
  align-content: center;
  text-align: center;
}

.tab-wrapper {
display: flex;
margin-top: 20px;
border-radius: 6px;
overflow: hidden;
}


.tab {
flex: 1;
padding: 5px 0;
font-size: 1.4rem;
font-weight: bold;
cursor: pointer;
transition: 0.3s ease;
user-select: none;
background: #EEB95F;
color: #294671;
width: 100%;
text-align: center;
}


#tab-hourly {
background: #F6E1BA;
color: #294671;

}


.tab:hover {
filter: brightness(0.92);
}


/* Panels */
.panel {
max-height: 0;
overflow: hidden;
background: #4d6180cd;
color: white;
transition: max-height 0.5s ease;
padding: 0 30px;
text-align: left;
}


/* Hover Trigger */
#tab-exec:hover ~ #panel-exec,
#panel-exec:hover {
max-height: 800px;
padding: 30px;
}


#tab-hourly:hover ~ #panel-hourly,
#panel-hourly:hover {
max-height: 800px;
padding: 30px;
}


/* List Styles */
.panel ul {
columns: 2;
margin: 0;
padding-left: 20px;
}


.panel li {
margin: 6px 0;
}

/* ----------------- PRICING ----------------- */
.pricing-section{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2%;
}

.pricing-section h2{
    width: 100%;
    margin-bottom: 2%;
}

/* .pricing-section .image-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 20%;
} */

.pricing-section .plans-container {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}


.plan-card {
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 430px;
    padding: 20px;
    border: 4px solid #f6e1ba91;
    box-sizing: border-box;
}

.plan-card-candidate {
    display: flex;
    flex-direction: column;
    width: 500px;
    height: 350px;
    padding: 20px;
    border: 4px solid #edb34e91;
    box-sizing: border-box;
}


.plan-header-temp {
    background: #F6E1BA;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    color: #294671;
    padding: 10px;
    margin: -24px -20px 20px -24px;
    font-size: 1.1rem;
    width: 111%;
    text-align: center;
}

.plan-header-full {
    background: #edcb91;;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    color: #294671;
    padding: 10px;
    margin: -24px -20px 20px -24px;
    font-size: 1.1rem;
    width: 111%;
    text-align: center;
}

.plan-header-candidate {
    background: #edcb91;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    color: #294671;
    padding: 10px;
    margin: -24px -20px 20px -24px;
    font-size: 1.1rem;
    width: 106%;
    text-align: center;
}

.plan-card ul, .plan-card-candidate ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
    float: 1;
    height: 400px;
}

.plan-card ul li, .plan-card-candidate ul li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.plan-card ul li::before, .plan-card-candidate ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #294671;
}

.price {
    font-size: 1.4rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-top: 0;
}

.price span {
    font-size: 0.8rem;
    font-weight: normal;
}

.btn-card {
    display: inline-block;
    background: #294671;
    color: white;
    text-decoration: none;
    border: none;
    margin: 0%;
    padding-bottom: 10px;
    padding-top: 10px;
    width: 100%;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    text-align: center;
}

.btn-card:hover {
    background: #1c3153;
    color: white;
    text-decoration: none;
}


/* ----------- CANDIDATES -----------
.candidate-section{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding-bottom: 2%;
    padding-top: 5%;
    margin-left:1% ;
    margin-right: 1%;
}

.image-container-candidate{
    display: flex;
    justify-content: center;
}

.container-candidate{
    display: flex;
    justify-content: center;
}

.plan-card-candidate {
    display: flex;
    flex-direction: column;
    width: 40%;
    height: 100%;
    padding: 20px;
    border: 4px solid #f6e1ba91;
    box-sizing: border-box;
}

.plan-header-candidate {
    background: #edb34e;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    color: #294671;
    padding: 10px;
    margin: -24px -20px 20px -24px;
    font-size: 1.1rem;
    width: 106%;
    text-align: center;
}

.candidate-section button {
    background: #294671;
    color: white;
    border: none;
    padding: 10px 15px;
    width: 100%;
    cursor: pointer;
    font-size: 1rem;
    margin-top: auto;
}

.candidate-section button:hover {
    background: #1c3153;
}

.candidate-section p{
    font-size: 19px;
    padding-left: 5%;
    padding-right: 5%;
    text-align: justify;
    margin-bottom: 15px;
    margin-top: 0px;
} */


/* ------------------- FAQ --------------------*/
.FAQ-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  justify-content: flex-start;
  width: 80%;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  color: #294671;
  padding-bottom: 5%;
}

.FAQ-section h2 {
  text-align: center; 
  width: 100%;
  margin-bottom: 2%;
  margin-top: 2%;
}

.FAQ-section p, .FAQ-section li p{
  font-size: 20px;
  text-align: justify;
  hyphens: auto;
  word-spacing: -2px !important;
}

details {
  width: 100%;
  font-size: 19px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

summary {
  font-weight: bold;
  cursor: pointer;
  position: relative;
  list-style: none;
  padding-right: 25px; 
}

summary::after {
  content: '+';
  position: absolute;
  right: 0;
  transition: transform 0.3s ease;
}

details[open] summary::after {
  content: '-';
}

details p, details ul {
  margin: 10px 0 0;
  color: #294671;
  text-align: justify; 
}

details ul {
  padding-left: 20px; /* sangría para las listas */
  list-style-type: disc;
}

/*--------------------FINAL SECTION------------*/
.final-section {
 width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 2rem;
}


.big-p {
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    color: #1C3153;
    font-weight: 100px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: left;
    margin-left: 100px;
}

.container-img-end {
  flex: 0 0 400px;
  display: flex;
  justify-content: center;
}

.circular-img {
  width: 150%;
  max-width: 300px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.tab span {
    font-size: 22px;
}


/*------------------ About Us ----------------*/
.cover-about {
  width: 100%;
  height: 600px;
  position: relative; 
  margin-bottom: 2%;
}

.container-cover-about{
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 100%;
}

.cover-p-about{
    background-color: #EEB95FCF;
    width: 100%;
    padding-top: 1%;
    padding-bottom: 1%;
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 400;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    color: #1c3153;
}

.container-img-final {
  position: absolute; 
  top: 5%;
  left: 5%;
  z-index: 1;
}



.img-about{
    width: 80%;         
    height: 80%;
    object-fit: cover;
}

.mission{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 2%;
}

.mission .conteiner-img{
    width: 18%;
}



.main-about{
    width: 80%;
    display: flex;
    flex-direction: column;
    padding-left: 10%;
    padding-right: 10%;
    margin-bottom: 2%;
}

.main-about p{
  font-size: 30px;
}

.main-about h2{
  font-weight: 800;
}

.values-about{
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 10%;
}

.card-values {
    width: 15%;
    padding: 2%;
    border-radius: 25px;
    background-color: #29467130;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.card-values:hover {
    transform: translateY(-8px) scale(1.05);
    background-color: #29467160;
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}


.card-values p{
    padding: 0;
    margin: 0;
    font-size: 18px;
}

.card-values h3{
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    color: #1C3153;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;

}

/* ----------------- FOOTER ----------------- */
footer {
    background: #294671;
    width: 100%;
    text-align: center;
    color: #FFFFFF;
    padding: 2rem 0; 
}

.container-footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 5%;
    padding-right: 5%;
}

.contac-footer p{
    text-align: left;
}

footer p {
  color: #FFFFFF; 
  margin: 0.25rem 0;
  text-align: center;
  font-size: 25px;
}

footer a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 20px;
}

  .social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .social-icons a {
    color: white;
    text-decoration: none;
    text-decoration: none;
    display: inline-flex;
    transition: transform 0.12s ease, opacity 0.12s ease;
  }

  .social-icons svg {
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .social-icons a:hover svg {
    transform: translateY(-3px) scale(1.05);
    opacity: 0.85;
  }

/* ================= MOBILE FIX ================= */
@media (max-width: 900px) {

  body {
    background-size: 400px;
  }

  * {box-sizing: border-box;
  }

  /* ---------- NAV ---------- */
    .container-nav {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }

    .container-nav nav {
        width: 100%;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .container-nav ul {
        flex-direction: column;
        gap: 5px;
    }

    .gold-button a {
        background-color: transparent;
    }

  /* ---------- COVER ---------- */
  .cover {
    height: auto;
    padding: 20px;
    flex-direction: column;
    align-items: center;
  }

  .cover img {
    position: relative;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
  }

  .cover h1 {
    position: relative;
    font-size: 34px;
    width: 100%;
    top: 0;
    margin-top: -40px;
  }

  .cover p {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    padding: 20px;
    font-size: 22px;
    /* hyphens: auto; */
    /* word-spacing: -2px !important; */
    text-align: center;
  }

  /* ---------- SERVICES ---------- */
  .services-section {
    flex-direction: column;
    align-items: center;
  }

  .services-section .text-container {
    width: 100%;
  }

  .services-section .text-container p {
    padding: 0 30px;
    text-align: center;
    /* hyphens: auto;
    word-spacing: -2px !important; */
  }

  .services-section .image-container {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }

  /* ---------- ABOUT SECTION ---------- */
  .about-our-section {
    flex-direction: column;
    align-items: center;
  }

  .text-container-hp {
    padding: 0 20px;
  }

  .about-our-section p {
    text-align: center;
  }

  /* Tabs */
  .panel span{
    font-size: 20px;
  }

  .panel ul {
    columns: 1;
  }

  /* ---------- CANDIDATE CARD ---------- */
  .plan-card-candidate {
    width: 95%;
    height: auto;
  }

  .plan-header-full {
    background: #edcb91;;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    color: #294671;
    padding: 10px;
    margin: -24px 20px 20px -24px;
    font-size: 22px;
    width: 114%;
    text-align: center;
}

.plan-header-candidate {
    background: #edcb91;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    color: #294671;
    padding: 10px;
    margin: -24px -20px 20px -24px;
    font-size: 22px;
    width: 115%;
    text-align: center;
}

    .plan-header-temp {
    background: #F6E1BA;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    color: #294671;
    padding: 10px;
    margin: -24px -20px 20px -24px;
    font-size: 22px;
    width: 114%;
    text-align: center;
}

  /* ---------- PRICING ---------- */
  .pricing-section {
    flex-direction: column;
    align-items: center;
  }

  .pricing-section .plans-container {
    flex-direction: column;
    width: 100%;
  }

  .plan-card {
    width: 90%;
    height: auto;
  }

  /* ---------- FAQ ---------- */
  .FAQ-section {
    width: 80%;
  }

  .FAQ-section p,  .FAQ-section li p{
    font-size: 20px;
    text-align: justify;
    hyphens: auto;
    word-spacing: -1px !important;

  }

  /* ---------- FINAL SECTION ---------- */
  .final-section {
    flex-direction: column;
    text-align: center;
  }

  .big-p {
    font-size: 42px;
    margin: 0;
    text-align: center;
  }

  .container-img-end {
    flex: none;
    margin-top: 20px;
  }

  /* ---------- IMAGES ---------- */
  .circular-img {
    width: 250px !important;
    height: 250px !important;
    min-width: unset;
    min-height: unset;
  }

  /* ---------- FOOTER ---------- */
  .container-footer {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .contac-footer p {
    text-align: center;
  }

  footer p {
    font-size: 18px;
  }

   /* ---------- COVER ABOUT ---------- */
  .cover-about {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .container-cover-about {
    position: relative;
    top: 0;
    transform: none;
  }

  .cover-p-about {
    font-size: 36px;
    padding: 10px 15px;
    margin: 0;
  }

  .container-img-final {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  .img-about {
    width: 100%;
    height: auto;
  }

  /* ---------- MAIN ABOUT ---------- */
  .main-about {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .main-about p {
    font-size: 18px;
    text-align: center;
  }

  .main-about h2 {
    font-size: 28px;
    text-align: center;
  }

  /* ---------- MISSION ---------- */
  .mission {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .mission .conteiner-img {
    width: 60%;
  }

  /* ---------- VALUES ---------- */
  .values-about {
    flex-direction: column;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
    gap: 20px;
  }

  .card-values {
    width: 90%;
  }

  
  .plan-card ul li, .plan-card-candidate ul li {
      margin: 10px 0;
      padding-left: 20px;
      position: relative;
      font-size: 20px;
  }


}