body {
    margin: 0;
    font-family: "Roboto Condensed", sans-serif;
    background-color: #002d52;
}

.logo {
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
}

section {
    padding-top: 90px; 
}

section h2, section p {
    color: white;
}

.navbar {
    display: flex;
    background-color: #0088d2;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid #002d52;
}

.navbar img {
   margin-left: 10px;
}

.navbar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 900px;
    margin: 0 auto;
}



.nav-links {
    list-style: none;
    display: flex;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
}

@media (max-width: 768px) {
    .navbar__content {
        min-width: 100%;
    }
    .navbar__content a {
        margin-left: 30px;
    }
    .nav-links {
        margin: 0 30px;
    }
}


.slider-container {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.slider {
    display: flex;
    overflow: hidden;
    position: relative;
}

.slide {
    display: none;
    width: 100%;
}

.slide img {
    width: 100%;
    height: auto;
}

.fade {
    animation: fadeEffect 1.5s;
}

@keyframes fadeEffect {
    from { opacity: 0.4; } 
    to { opacity: 1; }
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
}

.dots-container {
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.5);
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    background: #0088d2;
    border-radius: 8px;
}


.column {
    flex: 1;
    padding: 20px;
    position: relative;
}

.column .icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: white;
}

.column h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.column p {
    font-size: 16px;
    color: white;
    text-align: left;
}

.column:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: white;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .column {
        padding: 15px;
    }

    .column:not(:last-child)::after {
        display: none;
    }
}

.full__container {
    padding: 30px;
    margin: 0 auto 60px auto;
    max-width: 900px;
}

footer {
    background-color: #202020;
    color: white;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    margin: 0 20px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p, 
.footer-section ul {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    color: #bbb;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    color: #bbb;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: white;
}

.footer-bottom {
    background-color: #2e2e2e;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    margin: 0;
    color: #bbb;
}

@media (max-width: 768px) {
    .footer-container {
        display: inherit;
        flex-direction: column;
    }

    .footer-section {
        margin: 0 auto;

    }
}


.title {
    margin-top: 150px;
    text-align: center;
    color: white;
}

@media (max-width: 768px) {
    .title {
        display: none;
    }
    
}

/* Botón flotante de WhatsApp */
#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    cursor: pointer;
  }
  
  #whatsapp-button img {
    width: 32px;
    height: 32px;
  }
  
  @media (max-width: 600px) {
    #whatsapp-button {
      width: 50px;
      height: 50px;
      bottom: 15px;
      right: 15px;
    }
  
    #whatsapp-button img {
      width: 28px;
      height: 28px;
    }
  }
  