@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

html {
    scroll-behavior: smooth;
  }

body {

    padding: 0;
    margin: 0;
    font-family: "Bebas Neue", sans-serif;    
    background-color: #eeeeee;
}


/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 15px 40px; /* Reduje el padding para ajustar el espacio */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 20px 20px;
    width: 100%; /* Asegura que el header ocupe todo el ancho */
    box-sizing: border-box; /* Incluye el padding en el ancho total */
}

/* Logo */
.logo img {
    width: 60px;
}

/* Navegación */
nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 10px;
    transition: background 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
    background-color: #e8bb19;
    color: #000000;
}

/* Contenedor del buscador */
.search-container {
    position: relative;
    flex-grow: 1; /* Hace que el contenedor se ajuste al espacio disponible */
    max-width: 260px; /* Limita el ancho máximo del contenedor */
}

#search-input {
    width: 100%;
    padding: 8px 20px;
    border: 2px solid #e94560;
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #ffffff;
    color: #333333;
    box-sizing: border-box; /* Incluye el padding en el ancho total */
    font-family: "Bebas Neue", sans-serif; 
    margin: 16px;
}

#search-input:focus {
    outline: none;
    border-color: #0f3460;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Sugerencias */
.suggestions {
    position: absolute;
    top: 50px;
    left: 0;
    background-color: #ffffff;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    overflow: hidden;
}

.suggestions a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #0f3460;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease, padding-left 0.3s ease;
}

.suggestions a:last-child {
    border-bottom: none;
}

.suggestions a:hover {
    background-color: #e8bb19;
    color: #ffffff;
    padding-left: 25px;
}

/* Responsivo */
@media (max-width: 768px) {
    nav {
        display: none; /* Oculta los enlaces de navegación */
    }

    .search-container {
        max-width: none;
        flex-grow: 1; /* Permite que el buscador crezca según el espacio disponible */
    }

    #search-input {
        width: 100%;
    }

    .logo img{
        margin-left: -18px;
    }
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #eeeeee;
    background-size: cover;
    background-position: center;
    color: #333;
}

.hero-text h1 {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-size: 36px;
    color: #333;
}

.hero-text h1 span {
    color: #e8bb19;
}

.hero-text p {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: #666;
    font-weight: bold;
}

.hero-text p span {
    color:#e8bb19;
    font-weight: bold;
}

@media (max-width: 768px) {

    .hero-image{
        display: none;
    }

}

.learn-more-link {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Espacio entre el ícono y el texto */
    margin-top: 10px;
    font-weight: bold;
    font-family: "Bebas Neue", sans-serif;
    animation: heartBeat 1.5s infinite;
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
}

.learn-more-link i {
    color: #ffffff; /* Color blanco para el ícono */
}

@media (max-width: 768px) {
    .popup-message {
        right: 10px;
        bottom: 10px;
        width: 140px; /* Más ancho en pantallas pequeñas */
        max-width: 300px; /* Asegura que no se vuelva demasiado grande */
        height: 100px; /* Altura automática para adaptarse al contenido */
    }

    .popup-message p {
        font-size: 12px; /* Más pequeño en pantallas reducidas */
    }
}


.a {
    text-decoration: none;
    color: #000000;
    font-family: "Poppins", sans-serif;
}

.arrow{
    color: #e8bb19;
}

.hero-image img {
    width: 100%;
    height: auto;
    width: 400px;
    margin-left: 20px;
    margin-right: 20px;
}

::selection{
    color: white;
    background-color:#e8bb19;
}

.slider {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-item {
    min-width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    text-align: center;
    margin-right: 20px;
}

.slider-item h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.slider-item img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
}

.details {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    color: #666;
    display: flex;
    justify-content: center;
    
}

.details li {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.details i {
    margin-right: 10px;
    margin-left: 10px;
    color: #666;
}

.download-button {
    display: inline-block;
background-color: #15376b;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color:#e8bb19;
}

.slider-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.nav-button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}






.show {
    display: flex;
}

.about-us {
    padding: 50px 20px;
}

.about-us-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    flex-wrap: wrap;
}

.about-us-text {
    flex: 1;
}

.about-us-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.highlight {
    color: #e8bb19;
}

.about-us-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
}

.about-us-image {
    flex: 1;
    text-align: center;
}

.about-us-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    max-width: 600px;
}

@media (max-width: 768px) {
    .about-us-container {
        flex-direction: column;
    }

    .about-us-text h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .about-us-text h1 {
        font-size: 24px;
    }

    .about-us-text p {
        font-size: 14px;
    }
}

.machine-exhibition {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.machine-card {
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.machine-card:hover {
    transform: scale(1.05);
}

.machine-card img {
    width: 300px;
    height: auto;
    margin-bottom: 10px;
}


.machine-card h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.details {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    color: #666;
    text-align: left;
}

.details li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.details i {
    margin-right: 10px;
}

.download-button {
    display: inline-block;
    background-color: #e8bb19;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #e8bb19;
}

.download-buttonn {
    display: inline-block;
    background-color: transparent;
    color: rgb(0, 148, 22);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.highlighti {
    text-align: center;
    color: #e8bb19;
}

.g {
    text-align: center;
    color: #000;
}

.why-choose-us {
    text-align: center;
    padding: 50px 20px;
    background-color: white;
}

.why-choose-us h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.why-choose-us .intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.reasons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.reason {
    width: 250px;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.reason i {
    font-size: 40px;
    color: #e8bb19;
    margin-bottom: 10px;
}

.reason h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.reason p {
    font-size: 16px;
    color: #666;
}

@media (max-width: 768px) {
    .reason {
        width: 100%;
    }
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.logo-slide-track {
    display: flex;
    width: calc(250px * 12); /* Adjust based on the number of logos */
    animation: scroll 20s linear infinite;
}

.logo-slide {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-slide img {
    width: 200px;
    height: auto;

    transition: filter 0.3s ease;
}

.logo-slide img:hover {
    filter: none;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.h1 {
    text-align: center;
    font-size: 20px;
}

.spann {
    text-align: center;
    font-size: 80px;
}

.hero-imageS {
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero-imageS{
        display: none;
    }
}

.contact-section {
    text-align: center;
    padding: 50px 20px;
    background-color: white;
}

.contact-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.contact-form,
.contact-info {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: left;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: "Bebas Neue", sans-serif;    
}

.form-group a {
    color: #000;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #333;
}

button[type="submit"] {
    background-color: #ffc80000;
    color: rgb(0, 0, 0);
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: "Bebas Neue", sans-serif;    
}

button[type="submit"]:hover {
    background-color: #e33a4b00;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.contact-info p {
    font-size: 16px;
    color: #666;
    display: flex;
    align-items: center;
}

.contact-info p i {
    margin-right: 10px;
}

iframe {
    border-radius: 10px;
}
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-form,
    .contact-info {
        max-width: 100%;
    }


}

@media (max-width: 480px) {
    .contact-section h1 {
        font-size: 28px;
    }

    .contact-info h2 {
        font-size: 20px;
    }

    .form-group input,
.form-group textarea {
    width: 250px;
}

.button[type="submit"]{
width: 150px;
}

iframe{
    width: 280px;
}
}

.footer {
    background-color:#e8bb19;
    color: white;
    text-align: center;
    padding: 20px;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-social .line {
    height: 1px;
    background-color: white;
    width: 50px;
}

.footer-social a {
    color: white;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #f39c12;
}

.footer-logo h1 {
    font-size: 24px;
    margin: 10px 0 5px 0;
}

.footer-logo p {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.projects {
    padding: 50px 20px;
    background-color: white;
    text-align: center;
}

.projects h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.projects-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.project {
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.project:hover {
    transform: scale(1.05);
}

.project img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 10px;
}

.project h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.project p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .project {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .projects h1 {
        font-size: 28px;
    }

    .project h2 {
        font-size: 16px;
    }

    .project p {
        font-size: 12px;
    }
}
.code{
    font-weight: bold;
}

.code-strong-number {
    color: #e33a4a;
}

.code-strong-slash {
    color: #000;
}

.coded {
    color: #0067cf;
    font-weight: bold;
}

.codede{
    color: #ff7809;
    font-weight: bold;
    font-size: 20px;
}

.codee{
    color: #0067cf;
    font-size: 20px;
    font-weight: bold;
}

.codeee {
    color: #ff0000;
    font-size: 20px;
    font-weight: bold;
}


/* Estilos para el fondo oscuro */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: none; /* Oculto por defecto */
  }
  
  /* Estilos para la ventana del popup */
  .popup-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: white;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Botón para cerrar el popup */
  .close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 20px;
  }
  
  .popup-link {
    color: #2caa1b;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 20px;
  }
  

.aaa{
    text-align: center;
    text-decoration: none;
    color: #000;
    margin-bottom: 10px;
    
}

.aaaa{
    margin-top: 20px;
}

.facebook-float {
    position: fixed;
    left: 10px; /* Adjust this value based on desired distance from the left edge */
    top: 50%; /* Centers the icon vertically */
    transform: translateY(-50%); /* Ensures precise vertical centering */
    z-index: 1000; /* Keeps the icon above other content */
}

.facebook-float a {
    display: block;
    background-color: #3b5998; /* Facebook blue */
    color: white; /* Icon color */
    width:  50px; /* Size of the container */
    height: 50px; /* Size of the container */
    text-align: center; /* Centers the icon horizontally */
    line-height: 40px; /* Centers the icon vertically */
    border-radius: 50%; /* Makes the container circular */
    font-size: 20px; /* Size of the icon */
    box-shadow: 0 2px 5px rgba(0,0,0,0.3); /* Adds a shadow for better visibility */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.facebook-float a:hover {
    background-color: #305777; /* Darker blue on hover */
}

.facebook-float i{
    width: 50px;
    height: 50px;
} 

/* service */

.service {
background-color: #fffcfc;
}

.service, .title {
    font-size: 24px;
    color: #666;
}



.reasons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.reason1 {
    width: 150px;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.reason1 i {
    font-size: 40px;
    color: #e8bb19;
    margin-bottom: 10px;
}

.reason1 h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.reason1 p {
    font-size: 16px;
    color: #666;
}

@media (max-width: 768px) {
    .reason1 {
        width: 100%;
    }
}

.images-div{
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.img-card img {
    border-radius: 18px;
    transition: 1s;
    width: 300px;
    height: 200px;
}

.title-description {
    text-align: center;
}

.description p {
    text-align: justify;
    justify-content: center;
    font-size: 20px;
    margin-left: 300px;
    margin-right: 300px;
}

@media (max-width: 768px) {
    .description p {
        margin: 20px;
    }

    .images-div{
        flex-direction: column;
    }

    .img-card img {
        margin-left: 28px;
    }
}

/* button whatsapp */

.whatsapp-button {
    
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-family: 'Montserrat', sans-serif;
}

.whatsapp-icon {
    background: linear-gradient(145deg, #25D366, #128C7E);
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    height: 65px;
    width: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.whatsapp-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-icon img {
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 320px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.popup.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.popup-header {
    background: linear-gradient(145deg, #25D366, #128C7E);
    color: white;
    padding: 20px;
    text-align: center;
}

.popup-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.popup-body {
    padding: 20px;
}

.agent {
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 12px;
}

.agent:hover {
    background-color: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.agent-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.agent-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-info {
    flex-grow: 1;
}

.agent-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.agent-status {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
}

.online-dot {
    width: 8px;
    height: 8px;
    background-color: #25D366;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

.info-link{
    text-decoration: none;
}