* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header {
    background:-webkit-linear-gradient(290deg, rgb(3, 25, 97), rgb(1, 35, 131), rgb(8, 15, 110), rgb(30, 2, 109), rgb(1, 29, 155), rgb(20, 3, 173));
    padding: 10px 0;
}


.logo-moraira {
    color: #ffffff;
    font-size: 1.4rem;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .logo-moraira {
        font-size: 1.3rem;
    }
}

@media (min-width: 769px) {
    .logo-moraira {
        font-size: 1.4rem;
    }
}

@media (min-width: 1200px) {
    .logo-moraira {
        font-size: 1.6rem;
    }
}

.container-moraira {
    width: 100%;
    height: 15vh;
    display: flex;
    flex-direction: column;
}

.franja-moraira {
    flex: 1;
    font-size: 1.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: rgb(251, 251, 63);
}

.animated-text {
    font-size: 1.7rem;
    color: white;
    position: relative;
    animation: fadeIn 2s;
}

@media (max-width: 768px) {
    .animated-text {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .animated-text {
        font-size: 1..5rem;
    }
}

.bounce-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
}

.bounce-text {
    font-size: 1.7rem;
    font-weight: bold;
    color: #1f0481;
    text-align: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .bounce-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .bounce-text {
        font-size: 1.5rem;
    }
}

.independent-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.independent-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 30vh;
    padding: 20px 20px;
    background-color: rgb(255, 255, 255); 
}

.independent-container {
    max-width: 800px;
    padding: 20px 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #333;
}

.independent-title {
    font-size: 1.7rem;
    color: #01032b;
}

.independent-text {
    font-size: 1.35rem;
    line-height: 1.5;
    color: #555;
}

@media (max-width: 768px) {
    .independent-title {
        font-size: 1.4rem;
    }

    .independent-text {
        font-size: 1.2rem;
    }
}

@media (min-width: 769px) {
    .independent-title {
        font-size: 1.5rem;
    }

    .independent-text {
        font-size: 1.3rem;
    }
}

#responsive-section {
    display: auto;
    background-color: #f4f4f4;
    padding: 20px 10px;
    margin: 10px;
    text-align: center;
    max-width: 100%;
}

#responsive-section h1 {
    font-size: 1.7rem;
    color: #333;
}

#responsive-section p {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.5;
}

@media (min-width: 768px) {
    #responsive-section h1 {
        font-size: 1.7rem;
    }

    #responsive-section p {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    #responsive-section h1 {
        font-size: 1.7rem;
    }

    #responsive-section p {
        font-size: 1.2rem;
    }
}

.sectiontree {
    text-align: center;
    padding: 20px;
    max-width: 100%;
    margin: auto;
    background-color: #f0f4f8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 49vh;
}

.treetittle {
    font-size: 1.7rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.treetext {
    font-size: 1.2rem;
    color: #34495e;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 2s ease-in-out 1 forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .treetittle {
        font-size: 1.6rem;
    }

    .treetext {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .treetittle {
        font-size: 1.5rem;
    }

    .treetext {
        font-size: 1.1rem;
    }
}

.elegant-footer {
    background:-webkit-linear-gradient(290deg, rgb(3, 25, 97), rgb(1, 35, 131), rgb(8, 15, 110), rgb(30, 2, 109), rgb(1, 29, 155), rgb(20, 3, 173));
    color: #ffffff;
    padding: 10px 10px;
    text-align: center;
    min-height: 10vh;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

@media (min-width: 1200px) {
    .elegant-footer {
        min-height: 20vh;
    }
}

.footer-text {
    margin: 0;
    font-size: 1.4rem;
}

.footer-links {
    margin-top: 10px;
}

.footer-link {
    font-size: 1.5rem;
    color: #d1ca0a;
    font-weight: bold;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

@media (max-width: 600px) {
    .footer-text {
        font-size: 1.2rem;
    }

    .footer-link {
        display: block;
        margin: 5px 0;
    }
}

.faq {
    margin: 16px;
    padding: 0;
}

.faq-item {
    margin-bottom: 1.3rem;
}

.faq-question {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    text-align: left;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 8px;
}

.faq-answer {
    display: none;
    padding: 10px;
    background-color: #f4f4f4;
    border-radius: 8px;
    margin-top: 8px;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    display: block;
}

/* Estilos para pantallas más grandes */
@media(min-width: 600px) {
    .faq-question {
        font-size: 1.3rem;
    }

    .faq-answer {
        font-size: 1.1rem;
    }
}

/* Estilo para elementos visualmente ocultos pero accesibles */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(100%);
    overflow: hidden;
}

.boton-de-llamada {
    display: flex;
    background-color: rgb(255, 238, 3);
    justify-content: center;
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 15px 50px;
    border-radius: 25px;
    font-size: 1.6rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.boton-de-llamada:hover {
    background-color: #f0f32f;
}

@media (max-width: 768px) {
    .boton-de-llamada {
        padding: 15px 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .boton-de-llamada {
        padding: 15px 40px;
        font-size: 1.2rem;
    }
}

.cta-call-section {
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
    font-family: system-ui, -apple-system, sans-serif;
}

.cta-call-container {
    max-width: 600px;
    margin: 0 auto;
}

.cta-message {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.cta-call-button {
    background-color: #ffffff;
    color: #0056b3;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 999px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.cta-call-button:hover,
.cta-call-button:focus {
  background-color: #e6f0ff;
  transform: translateY(-2px);
  outline: none;
}

.cta-icon {
  width: 48px;
  height: 48px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Responsive Enhancements */
@media (min-width: 768px) {
  .cta-message {
    font-size: 1.5rem;
  }

  .cta-call-button {
    font-size: 1.125rem;
    padding: 1rem 2rem;
  }

  .cta-icon {
    width: 28px;
    height: 28px;
  }
}


.whatsapp-message-section {
  padding: 2rem 1rem;
  font-family: system-ui, -apple-system, sans-serif;
  text-align: center;
}

.whatsapp-container {
  max-width: 480px;
  margin: 0 auto;
}

.whatsapp-text {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: hsl(51, 100%, 48%);
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #01792d;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-button:hover,
.whatsapp-button:focus {
  background-color: #1ebe5d;
  transform: translateY(-2px);
  outline: none;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Responsivo para pantallas mayores */
@media (min-width: 768px) {
  .whatsapp-text {
    font-size: 1.5rem;
  }

  .whatsapp-button {
    font-size: 1.125rem;
    padding: 1rem 2rem;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}
