* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header {
    background:-webkit-linear-gradient( 360deg, rgb(21, 2, 131), rgb(13, 2, 173), rgb(17, 3, 148), rgb(16, 0, 156));
    padding: 10px 10px;
}

.logo-nucia {
    color: #ffffff;
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .logo-nucia {
        font-size: 1.2rem;
    }
}

@media (min-width: 769px) {
    .logo-nucia {
        font-size: 1.3rem;
    }
}

@media (min-width: 1200px) {
    .logo-nucia {
        font-size: 1.5rem;
    }
}

.container {
    width: 100%;
    height: 20vh;
    display: flex;
    flex-direction: column;
}

.franja {
    flex: 1;
    background:-webkit-linear-gradient( 360deg, rgb(21, 2, 131), rgb(13, 2, 173), rgb(17, 3, 148), rgb(16, 0, 156));
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.animated-text {
    font-size: 2rem;
    color: yellow;
    position: relative;
    animation: fadeIn 2s;
}

@keyframes slideIn {
    0% {
        transform: translateY(200%);
        opacity: 0;
    }
    25% {
        transform: translateY(100%);
        opacity: 1;
    }
    50% {
        transform: translateY(0);
        opacity: 1;
    }
    75% {
        transform: translateY(-100%);
        opacity: 1;
    }
    100% {
        transform: translateY(-200%);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .animated-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .animated-text {
        font-size: 1.5rem;
    }

    .franja {
        flex: none;
        height: 20vh;
    }
}

.call-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
    background:-webkit-linear-gradient( 360deg, rgb(21, 2, 131), rgb(13, 2, 173), rgb(17, 3, 148), rgb(16, 0, 156));
}

.call-button {
    background-color: rgb(234, 93, 65);
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
    .call-button {
        padding: 12px 23px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .call-button {
        padding: 12px 22px;
        font-size: 1.3rem;
    }
}


.image-fabricantes {
    max-width: 290px;
    max-height: 290px;
}

.seccion-nucia * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.seccion-nucia {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 25vh;
    padding: 20px;
    color: #fff; /* Texto blanco para contraste */
}

.container-nucia {
    max-width: 800px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #333; /* Color del texto */
}

#titulo-lista {
    color: #042861;
}

.title-nucia {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #3A86FF; /* Color del título */
}

.text-nucia {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .title-nucia {
        font-size: 1.5rem;
    }

    .text-nucia {
        font-size: 1.2rem;
    }

    .container-nucia {
        padding: 15px;
    }
}

@media (min-width: 769px) {
    .title-nucia {
        font-size: 1.9rem;
    }

    .text-nucia {
        font-size: 1.3rem;
    }
}

.section-nucia {
    text-align: center;
    padding: 20px;
    max-width: 90%;
    margin: auto;
    background-color: #f0f4f8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 49vh;
}

.treetittle {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.treetext {
    font-size: 1.25rem;
    color: #34495e;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 2s ease-in-out 1 forwards;
}

/* Animación del texto explicativo */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .treetittle {
        font-size: 1.7rem;
    }

    .treetext {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .treetittle {
        font-size: 1.6rem;
    }

    .treetext {
        font-size: 1rem;
    }
}

.elegant-footer {
    background:-webkit-linear-gradient( 360deg, rgb(21, 2, 131), rgb(13, 2, 173), rgb(17, 3, 148), rgb(16, 0, 156));
    color: #ffffff;
    min-height: 29vh;
    padding: 20px;
    text-align: center;
    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.45rem;
}

.footer-links {
    margin-top: 10px;
}

.footer-link {
    color: #ffea00;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1.4rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

@keyframes elegant-glow {
    0% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    }
    100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 600px) {
    .footer-text {
        font-size: 1.2rem;
    }

    .footer-link {
        display: block;
        margin: 5px 0;
    }
}

.seccion-boton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.boton-rebote {
    padding: 15px 30px;
    font-size: 18px;
    margin-left: 40px;
    color: #fff;
    background-color: #33fd2c;
    border: none;
    border-radius: 25px; /* Bordes redondeados */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    animation: rebote 0.6s ease-in;
    transition: background-color 0.3s;
}

.boton-rebote:hover {
    background-color: #05ee2c; /* Color más oscuro al pasar el ratón */
}

@keyframes rebote {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px); /* Mayor rebote */
    }
    60% {
        transform: translateY(-8px);
    }
}

/* Estilos responsivos */
@media (max-width: 600px) {
    .boton-rebote {
        font-size: 16px;
        padding: 12px 24px;
    }
}

.seccion-servicios-nucia {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.seccion-servicios-nucia img {
    width: 69%;
    height: auto;
    border-radius: 10px;
    transition: transform 1s ease, opacity 1s ease;
}



.seccion-servicios-nucia .descripcion {
    font-size: 1.3rem;
    color: #333;
    margin-top: 15px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.lista-seccion {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 90%;
    max-width: 400px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
    margin: 20px auto; /* Asegura que la sección esté centrada */
}

@keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}

.lista-seccion h2 {
    font-size: 1.6em;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.lista-seccion ul {
    list-style: none;
    padding: 0;
}

.lista-seccion li {
    font-size: 1em;
    color: #555;
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.6s forwards;
}

@keyframes slideIn {
    0% {
      opacity: 0;
      transform: translateX(-20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
}

.lista-seccion li:nth-child(1) {
    animation-delay: 0.4s;
}

.lista-seccion li:nth-child(2) {
    animation-delay: 0.6s;
}

.lista-seccion li:nth-child(3) {
    animation-delay: 0.8s;
}

.lista-seccion li:nth-child(4) {
    animation-delay: 1s;
}

.lista-seccion li:nth-child(5) {
    animation-delay: 1.2s;
}

.lista-seccion li:nth-child(6) {
    animation-delay: 1.4s;
}

@media (min-width: 768px) {
    .lista-seccion {
      max-width: 600px;
    }
}

@media (min-width: 1024px) {
    .lista-seccion {
      max-width: 800px;
    }
}




.faq-section {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin: 20px;
}

.faq-title {
    font-size: 1.3rem;
    color: #5145f6;
    text-align: center;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s ease-out forwards;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: bold;
    color: #444;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: #777;
}

.faq-answer {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Ajusta según el contenido */
    opacity: 1;
}

.faq-item.active .faq-question::after {
    content: "-";
}

/* Animaciones suaves */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos para pantallas más grandes */
@media (min-width: 768px) {
    .faq-section {
        padding: 40px;
    }

    .faq-title {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 1.3rem;
    }

    .faq-answer {
        font-size: 1.1rem;
    }
}





* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.call-nucia {
    position: fixed;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: center;
    padding: 12px 23px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.call-btn {
    border: none;
    padding: auto;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 25px;
    margin-top: 10px;
    transition: transform 0.3s ease;
}
  
@media (max-width: 768px) {
    .call-btn {
      font-size: 1.2rem;
      padding: auto;
    }
  
    .call-nucia p {
      font-size: 1.3rem;
    }
}
  
@media (max-width: 480px) {
    .call-btn {
      font-size: 1.1rem;
      padding: auto;
    }
  
    .call-nucia p {
      font-size: 1.2rem;
    }
}

.boton-de-llamada {
    display: flex;
    background-color: rgb(255, 140, 0);
    justify-content: center;
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 15px 90px;
    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 59px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .boton-de-llamada {
        padding: 15px 39px;
        font-size: 1.4rem;
    }
}

.animated-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    max-width: 100%;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px); 
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

#section-title {
    color:#0f095f;
}

.animated-section.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .animated-section {
        max-width: 400px;
    }
}

@media (min-width: 1024px) {
    .animated-section {
        max-width: 600px;
    }
}

.animated-section img {
    max-width: 69%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

.lista-inicial {
    font-size: 1.2rem;
}

.descripcion-lista {
    font-size: 1.1rem;
    font-style: oblique;
}

.seccion-imagen-nucia {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 24px;
    max-width: 900px;
    margin: 40px auto;
    font-family: 'Segoe UI', sans-serif;
}

.seccion-imagen-nucia__imagen {
    width: 260px;
    height: 260px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.seccion-imagen-nucia:hover .seccion-imagen-nucia__imagen {
    transform: scale(1.03);
}

.seccion-imagen-nucia__contenido {
    text-align: center;
}

.seccion-imagen-nucia__titulo {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 12px;
}

.seccion-imagen-nucia__descripcion {
        font-size: 1rem;
        color: #555;
        line-height: 1.6;
}

@media (min-width: 768px) {
    .seccion-imagen-nucia {
        flex-direction: row;
        gap: 24px;
        text-align: left;
    }

    .seccion-imagen-nucia__imagen {
        margin-bottom: 0;
    }

    .seccion-imagen-nucia__contenido {
        flex: 1;
    }

    .seccion-imagen-nucia__titulo {
        font-size: 2rem;
    }

    .seccion-imagen-nucia__descripcion {
        font-size: 1.1rem;
    }
}

.whatsapp-banner {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #1cb253, #0b665b);
    color: white;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    max-width: 100%;
    margin: 1rem auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.whatsapp-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.whatsapp-text h2 {
    margin: 0;
    font-size: 1.5rem;
}

.whatsapp-text p {
    margin: 0.5rem 0 1rem;
    font-size: 1.2rem;
}

.whatsapp-button {
    display: inline-block;
    background-color: #ffffff;
    color: #128C7E;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-button:hover {
    background-color: #e9fdf2;
    transform: scale(1.05);
}

@media (min-width: 600px) {
    .whatsapp-container {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
    }

    .whatsapp-text {
      flex: 1;
    }

    .whatsapp-button {
      margin-left: 2rem;
      white-space: nowrap;
    }
}