/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

header {
    background-color: #fff;
    color: #333;
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.navbar-brand img {
    width: 150px;
    height: auto;
}

.nav-link {
    color: #333 !important;
}

.navbar-nav {
    margin-left: auto;
}

.cta-button {
    background-color: #ff5733;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.hero-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    height: 70vh;
    background: url('/images/header2.jpg') no-repeat center center/cover;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay de color oscuro */
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}
.hero-section .container h1,
.hero-section .container p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Sombra oscura para el texto */
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 1rem;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.proyecto img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.proyecto .info {
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-slider {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.testimonial-item {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-item h5 {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #333;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
.responsive-image {
    width: 100%; /* La imagen ocupará el 100% del ancho del contenedor */
    height: auto; /* La altura se ajustará automáticamente para mantener la proporción */
    max-width: 100%; /* Asegura que la imagen no sobresalga del contenedor */
    display: block; /* Elimina el pequeño espacio debajo de las imágenes en línea */
}
.service-benefits {
    background-color: #e9ecef;
    padding: 50px 0;
}
.service-benefits h3 {
    margin-bottom: 30px;
}
.service-benefits ul {
    list-style: none;
    padding-left: 0;
}
.service-benefits ul li {
    margin-bottom: 15px;
    font-size: 18px;
}
  /* Estilos del banner notificación */
  .notification-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background-color: #007bff;
    color: white;
    text-align: left;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none; /* Inicia oculto */
    animation: slideIn 0.3s ease-in-out;
}

.notification-banner h3 {
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.notification-banner h3 i {
    margin-right: 10px;
}

.notification-banner p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.notification-banner a {
    color: white;
    font-weight: bold;
    text-decoration: underline;
}

.notification-banner .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 16px;
}

.notification-banner .close-btn:hover {
    color: #ffdddd;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Estilos responsivos */
@media (max-width: 576px) {
    .notification-banner {
        width: 90%;
        right: 5%;
        bottom: 10px;
        padding: 10px;
    }

    .notification-banner h3 {
        font-size: 16px;
    }

    .notification-banner p {
        font-size: 13px;
    }

    .notification-banner .close-btn {
        font-size: 14px;
    }
}
/* Estilos generales para la sección de solicitud de presupuesto */
#charca-presupuesto {
    padding: 60px 0;
}

.charca-form-card {
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 30px;
    background-color: white;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.charca-form-card:hover {
    transform: translateY(-5px);
}

.charca-form-section {
    display: none;
}

.charca-form-section.active {
    display: block;
}

.charca-btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    transition: background-color 0.3s ease;
}

.charca-btn-primary:hover {
    background-color: #0056b3;
}

.charca-dynamic-section {
    display: none;
}

/* Estilo mejorado para el selector de archivos */
.dropzone {
    border: 2px dashed #007bff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    background-color: #f7f8fa;
    color: #007bff;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropzone.dragover {
    background-color: #eaf4ff;
}

.dropzone:hover {
    background-color: #e0f0ff;
    color: #0056b3;
}

.dropzone i {
    font-size: 50px;
    margin-bottom: 10px;
}

.dropzone input {
    display: none;
}

.file-list {
    margin-top: 15px;
    list-style: none;
    padding-left: 0;
}

.file-list li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
}

.file-list li::before {
    content: "\f016";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: #007bff;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .charca-form-card {
        padding: 20px;
    }

    #charca-presupuesto {
        padding: 40px 15px;
    }

    .charca-form-card h2, .charca-form-card h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .charca-form-card {
        padding: 15px;
    }

    .charca-form-card h2, .charca-form-card h3 {
        font-size: 20px;
    }
}

.beta-floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    font-size: 20px;
    z-index: 1050;
    cursor: pointer;
    transition: all 0.3s ease;
}

.beta-floating-button:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}