.container-contacto{
    padding: 0 80px;
}
        /* Banner Nosotros */
        .nosotros-banner {
            height: 70vh;
            position: relative;
            overflow: hidden;
            background-color: var(--primary-color);
        }
        
        .banner-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(28, 47, 80, 0.7) 0%, rgba(28, 47, 80, 0.9) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .banner-content {
            text-align: center;
            color: var(--secondary-color);
            max-width: 800px;
            padding: 0 20px;
        }
        
        .banner-quote {
            font-size: 1.5rem;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.5;
        }
        
        .banner-source {
            font-size: 1rem;
            opacity: 0.8;
        }


        /* Sección Contacto */
        .contacto {
            padding: 60px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .contacto-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        @media (min-width: 1024px) {
            .contacto-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Información de Contacto */
        .contacto-info {
            background: var(--secondary-color);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .info-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--primary-color);
            position: relative;
        }

        .info-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
        }

        .contacto-items {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contacto-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contacto-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(139, 115, 85, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-color);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contacto-details h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--primary-color);
        }

        .contacto-details p {
            color: #666;
            line-height: 1.5;
        }

        .contacto-details a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contacto-details a:hover {
            color: var(--accent-color);
        }

        /* Horario de Atención */
        .horario {
            margin-top: 30px;
        }

        .horario-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .horario-item {
            display: flex;
            gap: 10px;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--medium-gray);
        }

        .horario-item:last-child {
            border-bottom: none;
        }

        .horario-dia {
            font-weight: 500;
            color: var(--primary-color);
        }

        .horario-horas {
            color: #666;
        }

        /* Formulario de Contacto */
        .contacto-form {
            background: var(--secondary-color);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .form-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--primary-color);
            position: relative;
        }

        .form-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-color);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--medium-gray);
            border-radius: 5px;
            font-family: var(--font-primary);
            font-size: 1rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231c2f50' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 16px;
        }

        .btn-submit {
            background-color: var(--accent-color);
            color: var(--secondary-color);
            border: none;
            padding: 14px 30px;
            border-radius: 5px;
            font-family: var(--font-primary);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            width: 100%;
        }

        .btn-submit:hover {
            background-color: #7a6549;
            transform: translateY(-2px);
        }

        .btn-submit:active {
            transform: translateY(0);
        }

        /* Mapa */
        .mapa-container {
            margin-top: 60px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .mapa-placeholder {
            background-color: var(--medium-gray);
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-weight: 600;
        }

        /* Mensaje de confirmación */
        .mensaje-confirmacion {
            display: none;
            background-color: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 5px;
            margin-top: 20px;
            border: 1px solid #c3e6cb;
        }

        .mensaje-confirmacion.mostrar {
            display: block;
        }

        /* Tablet screens */
@media (max-width: 992px) {
    .banner-quote {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contacto-grid {
        gap: 30px;
    }

    .contacto-info, .contacto-form {
        padding: 30px;
    }
}

/* Mobile screens */
@media (max-width: 768px) {
    .container-noticias{
    padding: 0 40px;
}
    .nosotros-banner {
        height: 50vh;
    }

    .banner-content {
        padding: 0 10px;
    }

    .banner-quote {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contacto-info, .contacto-form {
        padding: 20px;
    }

    .contacto-item {
        align-items: center;
    }

    .contacto-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .form-control {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .btn-submit {
        padding: 12px;
        font-size: 0.95rem;
    }
}

/* Extra small screens (phones under 480px) */
@media (max-width: 480px) {
    .banner-quote {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .form-title, .info-title {
        font-size: 1.2rem;
    }

    .contacto-details p,
    .contacto-details a {
        font-size: 0.9rem;
    }

    .horario-item {
        font-size: 0.9rem;
    }
}

