         /* Header */
        .navbar {
            background-color: #333;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
        }
        
        .navbar-brand .titulo {
            font-weight: bold;
        }
        
        
        
     /* Navigation Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #314575;
    border: 2px solid white;
}

.dot:hover {
    background: #314575;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .dot {
        width: 10px;
        height: 10px;
    }
}
        
        
        
        
        
        /* Secciones de la pagina principal */
        .seccion1 {
            background-image: url('../img/parnaso_intro.jpg');
            background-size: cover;
            background-position: center;
            height: 80vh;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
        }
        .seccion1::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(2px);
            z-index: 0;
        }
        .seccion1-content {
            position: relative;
            z-index: 2;
        }
        .seccion1-content h1 {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 20px;
            color:#fff;
        }
        .seccion1-content h4 {
            font-weight: bold;
            margin-bottom: 20px;
            color:#fff;
        }
        .section2 {
            background-color: #F5F5F5;
            text-align: center;
            padding: 50px 20px;
        }
        .section2 h2, h4, h5, .section2 p {
            color: #4a64a1;
            font-weight: bold;
        }
        
        .section2 iframe {
            max-width: 100%;
            height: auto;
            aspect-ratio: 4 / 3;
        }
        
        .section2 p {
            max-width: 800px; /* Limita el ancho del párrafo */
            margin: 0 auto; /* Centra el párrafo horizontalmente */
            text-align: center; /* Asegura que el texto quede centrado */
        }
        
        .section3 {
            background-color: #333;
            color: white;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            align-items: center;
            padding: 50px 20px;
        }
        
        .section3 h3, p {
            color: white;
            font-weight: bold;
        }
        
        .section3-content {
            display: flex;
            flex-direction: column;
            text-align: center;
            max-width: 50%;
        }
        
        .section3-content ul {
            display: flex;
            flex-direction: column;
            text-align: left;
            max-width: 50%;
        }
        .section3-right {
            max-width: 40%;
        }
        .section3-right img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 5px solid #4a64a1;
        }

        .elegant-button {
            background-color: #4a64a1;
            color: #fff;
            font-weight: bold;
            border: none;
            border-radius: 10px;
            padding: 15px 50px;
            font-size: 16px;
            cursor: pointer;
            text-decoration: none;
            text-align: center;
        }
        .elegant-button:hover {
            background-color: #314575;
            color: #fff;
        }

        .sketchfab-embed-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            text-align: center;
        }

        .sketchfab-embed-wrapper iframe {
            max-width: 100%;
            height: auto;
            aspect-ratio: 4 / 3;
        }

        .sketchfab-embed-wrapper p {
            width: 100%;
            max-width: 640px;
            font-size: 13px;
            color: #4A4A4A;
            margin-top: 10px;
        }

        .gallery {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 60px;
        }
        .gallery-item img {
            width: 110px;
            height: auto;
            border-radius: 10px;
        }
        
        
        body {
            font-family: Arial, sans-serif;
            background-color: #f0f0f0;
            margin: 0;
            padding: 0;
        }


        /* Seccion del resto de paginas */
        .content {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            text-align: center;
            padding: 20px;
            margin: 20px auto;
            max-width: 1200px; /* Limita el ancho en pantallas grandes */
        }
        

        h1, h3 {
            color:#4a64a1;
            font-weight: bold;
            font-size: 2rem;
            margin-bottom: 20px;
        }

        p {
            color: #666;
            font-size: 1rem;
            line-height: 1.5;
            font-weight: normal;
        }
        
        p.justificado {
            text-align: justify;
        }
        
        p.blanco {
            color: white;
        }
        
         /* Textos de descripcion de imagen en ceramica */
        .descripcion-imagen {
            text-align: center; /* Centra el texto horizontalmente */
            color: #666; /* Mismo color que los otros párrafos */
            font-style: italic;
            font-size: 12px; /* Tamaño de fuente más pequeño para que sea una descripción */
           
        }

        .imagen-ajustada {
            max-width: 40%;
            height: auto;
            border: 1px solid black;
        }
        
        .imagen-reducida {
            width: 20%; /* Tamaño base para pantallas grandes */
            height: auto;
        }
        
        img {
            max-width: 100%;
            height: auto;
            margin: 20px 0;
        }
        
        @media (max-width: 768px) {
            .seccion1-content h1 {
                font-size: 2.5rem;
            }
            .gallery {
                gap: 20px;
            }
            .gallery-item img {
                width: 120px;
            }
            .section3 {
                flex-direction: column;
                text-align: center;
            }
            .section3-content, .section3-right {
                max-width: 100%;
            }
        }
        
        
        /* Responsive: pantallas medianas */
        @media screen and (max-width: 768px) {
          .content {
            margin: 10px;
            padding: 15px;
          }
          h1 {
            font-size: 1.8rem;
          }
          p {
            font-size: 0.9rem;
          }
          .imagen-reducida {
            width: 30%;
          }
        }

        /* Responsive: pantallas pequeñas */
        @media screen and (max-width: 480px) {
          .content {
            margin: 5px;
            padding: 10px;
          }
          h1 {
            font-size: 1.5rem;
          }
          p {
            font-size: 0.8rem;
          }
          .imagen-reducida {
            width: 40%;
          }
        }
        
        a {
        text-decoration: none;
        }

        
       
        
    /* Footer */
    .footer {
        background-color: #333;
        color: #fff;
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.8);
    }

    .footer-content {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-logo img {
        max-width: 100%; /* Ajustar el ancho de la imagen al contenedor */
    }

    /* Estilos para la sección de contacto y propiedad */

    .footer-info {
        display: flex;
        flex-direction: column; /* Cambiar a dirección vertical en pantallas pequeñas */
        align-items: center; /* Centrar verticalmente */
        margin-top: 20px;
    }

    .contacto, .propiedad {
        text-align: center; /* Centrar el texto en pantallas pequeñas */
        padding: 10px;
    }

    .contacto h3, .propiedad h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: white;
    }

    @media (min-width: 768px) {
        /* Estilos para pantallas más grandes */
        .footer-content {
            flex-direction: row; /* Volver a la dirección horizontal */
        }

        .contacto, .propiedad {
            text-align: left; /* Restablecer el texto a la izquierda */
        }
    }