/* Importar fuentes desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Roboto:wght@400;700&family=Poppins:wght@400;700&display=swap');

/* Variables de colores */
:root {
    --primary-color: #0056b3;
    --secondary-color: #e9e9e9;
    --accent-color: #ffcc00;
    --text-color: #333;
    --text-colorinv: #fff;
    --navbar-bg-color: rgba(0, 86, 179, 0.9);
}

/* Estilos generales */
body, html {
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* Hero Section */
header.hero-section {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

header.hero-section .swiper-container {
    width: 100%;
    height: 100%;
}

header.hero-section .swiper-slide img {
    height: 80vh;
    object-fit: cover;
}

header.hero-section .carousel-caption {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-colorinv);
}

/* Contenedor principal */
.container {
    flex: 1;
    padding: 20px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-colorinv);
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    text-align: center;
}

/* Navbar adjustments for two-line layout */





/* Dropdown submenu adjustments */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: 0;
}

.dropdown-menu .dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

/* Estilos de las imágenes */
.img-fluid {
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Estilos de los encabezados */
h3, h1, h2, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    margin-top: 10px;
    margin-bottom: 15px;
}

/* Modal customization */
.modal-header {
    background-color: #0056b3;
    color: white;
}

.modal-body {
    font-size: 18px;
}

.btn-danger {
    background-color: #dc3545;
    border: none;
}

.btn-warning {
    background-color: #ffc107;
    border: none;
}

/* Progress bar styling */
.progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Step styling */
.progress-step {
    width: 40px;
    height: 40px;
    background-color: #e0e0e0;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
}

/* Progress line styling */
.progress-line {
    height: 5px;
    background-color: #e0e0e0;
    flex-grow: 1;
    z-index: 1;
}

/* Active step styling */
.progress-step.active {
    background-color: #007bff;
    color: #fff;
}

/* Completed line styling */
.progress-step.active + .progress-line {
    background-color: #007bff;
}
.suggestions-list {
    list-style-type: none;
    padding: 0;
    margin-top: 10px;
    background-color: white;
    border: 1px solid #ccc;
    max-height: 200px; /* Increased height for more visibility */
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow for a floating effect */
    border-radius: 4px; /* Rounded corners */
    width: 100%; /* Ensure it takes full width of the input field */
    z-index: 1000; /* Ensure it is above other elements */
}

.suggestions-list li {
    padding: 12px 15px; /* Add more padding for better touch/click area */
    cursor: pointer;
    font-size: 16px; /* Adjust font size for better readability */
    color: var(--text-color); /* Use your text color */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.suggestions-list li:hover {
    background-color: var(--primary-color); /* Highlight with primary color */
    color: var(--text-colorinv); /* Invert text color for better contrast */
}

/* Optional: add a scroll bar style for better UX on overflow */
.suggestions-list::-webkit-scrollbar {
    width: 8px;
}

.suggestions-list::-webkit-scrollbar-thumb {
    background-color: #cccccc; /* Color of the scrollbar thumb */
    border-radius: 10px;
}

.suggestions-list::-webkit-scrollbar-thumb:hover {
    background-color: #999999; /* Darken on hover */
}

.hero-title {
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    padding: 10px 20px; /* Padding to give space around the text */
    border-radius: 5px; /* Optional: Rounded corners */
    display: inline-block; /* Ensures the background only covers the text */
}
.whatsapp-float {
    position: fixed;
    bottom: 30px; /* Distance from the bottom */
    
    
    right: 35px;  /* Distance from the right */
    z-index: 1000; /* Ensures it stays on top */
}

.whatsapp-float img {
    width: 50px; /* Adjust size as needed */
    height: 50px; /* Circular button */
    transition: transform 0.3s ease; /* Animation for hover */
}

.whatsapp-float img:hover {
    transform: scale(1.1); /* Slightly enlarges the button when hovered */
}
.sms-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    color: white;
    border-radius: 50px;
    padding: 10px 15px;transition: transform 0.3s ease;
     /* Animation for hover */
}
.sms-float img:hover {
    transform: scale(1.1); /* Slightly enlarges the button when hovered */
}
.sms-float img {
    width: 50px;
    height: 50px;
}

/* Sticky Navbar */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1030;
}

/* Semi-transparente */
.bg-light {
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
}

/* Adjust Logo Size for Mobile */
.navbar-brand img {
    max-width: 100%;
    height: auto;
}
/* Styling for Mobile Sticky Bottom Buttons */
.fixed-bottom {
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  }
  
/* Styles for Navbar */
.navbar {
    background-color: #f8f9fa;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    background-color: #fff;
    border: 1px solid #ddd;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

.dropdown-menu .dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

/* Adjustments for Mobile View */
@media (max-width: 992px) {
    .navbar-toggler {
        margin-left: auto;
    }
    
    .navbar-collapse {
        background-color: #f8f9fa;
    }
    
    .dropdown-submenu .dropdown-menu {
        left: 0;
    }
    
    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: start;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 20px;
    }
}

  
  @media (max-width: 576px) {

 
  
    /* Adjust Logo Size for Mobile */
    .navbar-brand img {
        max-width: 60%;
        height: auto;
    }
   }

/* Sticky Buttons for Mobile */
@media (max-width: 992px) {
    .fixed-bottom {
        display: flex;
        justify-content: space-between;
        width: 100%;
        background-color: #f8f9fa; /* Optional: background color */
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* Optional: add shadow */
    }

    .fixed-bottom .btn {
        border-radius: 0; /* Remove rounded corners */
        padding: 15px 0; /* Add padding for larger touch area */
        flex: 1; /* Ensure buttons take equal width */
        text-align: center; /* Center text */
    }

    .btn-primary {
        margin-right: 2px; /* Add small space between buttons */
    }
    
    .btn-warning {
        margin-left: 2px; /* Add small space between buttons */
    }
}

