body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #ddd;
    line-height: 1.6;
}

/* Header */
.card__header {
    background-image: url(../img/floor-4335428_1920.jpg);
    padding: 3rem 1rem;
    text-align: center;
    border-bottom: 3px solid #800000;
    
}

/* Estilos para la navegación */
.header__main {
    background-color: #000000cc;
    padding: 1rem;
    border-bottom: 1px solid #800000;
}

.main__option {
    color: #ccc;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main__option:hover {
    color: #fff;
    background-color: rgba(139, 0, 0, 0.3);
    text-shadow: 0 0 5px #c00;
}

.header__title {
    color: #c00;
    font-size: 2rem;
    text-shadow: 2px 2px 4px #000;
    margin-bottom: 1rem;
}

.header__contect{
    color: #aaa;
    max-width: 800px;
    margin: 0 auto;
    background-color: #000000cc;;
}

/* Carrusel CSS - Añadir sin modificar estilos existentes */
.testimonials {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-css {
    position: relative;
    background: #000000b3;
    border: 1px solid #800000;
    padding: 2rem;
    min-height: 200px;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 300%;
    transition: transform 0.5s ease;
}

.testimonial-card {
    width: 33.33%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.testimonial-card blockquote {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-card blockquote::before {
    content: '"';
    font-size: 3rem;
    color: #800000;
    position: absolute;
    left: -0.5rem;
    top: -1rem;
    opacity: 0.5;
}

.testimonial-card cite {
    display: block;
    color: #aaa;
    font-style: normal;
    text-align: right;
    margin-top: 1rem;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.dots label {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    transition: background 0.3s;
}

.dots label:hover {
    background: #666;
}

#testimonio1:checked ~ .slides {
    transform: translateX(0);
}

#testimonio2:checked ~ .slides {
    transform: translateX(-33.33%);
}

#testimonio3:checked ~ .slides {
    transform: translateX(-66.66%);
}

#testimonio1:checked ~ .dots label:nth-child(1),
#testimonio2:checked ~ .dots label:nth-child(2),
#testimonio3:checked ~ .dots label:nth-child(3) {
    background: #800000;
}
@media (max-width: 600px) {
    header h1 {
        font-size: 1.5rem;
    }
    
    .card__title, .contect__title {
        font-size: 1.3rem;
    }
}