/* ---- ----- ----- Scroll Bar ----- ----- ----- */

::-webkit-scrollbar {
    width: 10px;
  }

  ::-webkit-scrollbar-track {
    background: transparent !important;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #bbbbbb;
    border-radius: 10px;
 }


/* General */
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
    line-height: 1.6;
}

h1, h2 {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('background.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero .content {
    position: relative;
    z-index: 1;
}

.rose-image {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.title {
    font-size: 3.5rem;
}

.cursive {
    font-family: 'Dancing Script', cursive;
    color: #ff6f61;
}

.store {
    color: #fff;
    font-weight: 700;
}

/* Main Content */
main {
    padding: 40px 20px;
    text-align: center;
    background: #fff;
}

.about {
    margin-bottom: 40px;
}

.catalog-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.item {
    background: #fafafa;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    width: 280px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.item:hover {
    transform: translateY(-5px);
}

/* Sección de Catálogo */
.catalog {
    padding: 40px 20px;
    background: #fefefe;
}

.catalog h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.catalog-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 12px;
    width: 300px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.item-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #c62828;
}

.item p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #c62828;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #a00020;
}


/* Misión y Visión */
.mission-vision {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.mission-vision .section-title {
    margin-bottom: 40px;
}

.mission-vision .section-title h2 {
    font-size: 2.5rem;
    color: #c62828;
    margin-bottom: 10px;
}

.mission-vision .section-title p {
    font-size: 1.2rem;
    color: #555;
}

.mission-vision .content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.mission-vision .card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    width: 45%;
    text-align: left;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-vision .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.mission-vision .card h3 {
    font-size: 1.8rem;
    color: #c62828;
    margin-bottom: 15px;
}

.mission-vision .card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Estilo Mejorado para "Sobre Nosotros" */
.about-section {
    background: linear-gradient(135deg, #f8f9fa, #e8eaf6);
    padding: 80px 20px;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 1100px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.about-text {
    flex: 1;
    color: #333;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-text p {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}


/* Sección Testimonios */
.testimonios {
    background: #f4f7fa;
    padding: 80px 20px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.testimonios h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
}

.testimonios-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonio {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonio p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonio .info {
    margin-top: 15px;
    text-align: center;
}

.testimonio h3 {
    font-size: 1.4rem;
    color: #333;
    font-weight: 600;
}

.testimonio span {
    font-size: 0.9rem;
    color: #888;
    font-weight: 300;
}

.testimonio:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Imagen del testimonio */
.testimonio .imagen {
    position: absolute;
    top: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonio .imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Estilos para la fuente y contenedores */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsividad */
@media (max-width: 768px) {
    .testimonios h2 {
        font-size: 2rem;
    }

    .testimonio {
        padding: 20px;
    }

    .testimonio p {
        font-size: 1rem;
    }

    .testimonio .imagen {
        top: -40px;
        width: 80px;
        height: 80px;
    }
}





/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-family: 'Lato', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-container p {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #bbb;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    text-decoration: none;
    font-size: 1rem;
    color: #fff;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f39c12;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

