/* ==========================================
   VARIABLES Y CONFIGURACIÓN INICIAL
   ========================================== */
:root {
    --verde-fisiores: #7eb43a;
    --oscuro: #1a1a1a;
    --blanco: #ffffff;
    --gris-claro: #f9f9f9;
    --rosa-destacado: #d63384;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    line-height: 1.6;
    color: #333;
    background-color: var(--blanco);
}

.container { 
    width: 90%; 
    max-width: 1200px; 
    margin: 0 auto; 
}

section {
    margin-bottom: 40px; 
}

section:last-of-type {
    margin-bottom: 0; 
}

/* ==========================================
   HEADER Y NAVEGACIÓN
   ========================================== */
.main-header { 
    background: var(--blanco); 
    padding: 15px 0; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
}

.logo img { 
    height: 60px; 
}

.container-flex { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.nav-links { 
    display: flex; 
    list-style: none; 
}

.nav-links a { 
    font-weight: bold; 
    color: var(--oscuro); 
    text-decoration: none; 
    margin-left: 25px; 
    transition: 0.3s; 
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-links a:hover { 
    color: var(--verde-fisiores); 
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--verde-fisiores);
    font-size: 1.8rem;
    cursor: pointer;
}

/* ==========================================
   HERO SECTION - BANNER DE INICIO (DESKTOP)
   ========================================== */
.hero {
    background: url('../imagenes/Banner3.png') center/contain no-repeat;
    background-color: #ffffff;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.hero-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.hero h1 { 
    font-size: 4.5rem; 
    color: var(--verde-fisiores); 
    text-shadow: 
        -0.5px -0.5px 0 #000,  
         0.5px -0.5px 0 #000,
        -0.5px  0.5px 0 #000,
         0.5px  0.5px 0 #000;
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero p { 
    font-size: 1.2rem; 
    margin-top: 15px; 
    font-weight: 500;
    color: #000;           
    letter-spacing: 0.5px; 
    max-width: 700px;      
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.hero p i, 
.resaltado-rosa {
    color: var(--rosa-destacado) !important; 
}

.btn-cita { 
    background: var(--verde-fisiores); 
    color: white; 
    padding: 14px 35px; 
    text-decoration: none; 
    border-radius: 50px; 
    font-weight: bold; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 25px; 
    transition: 0.3s; 
    border: 1px solid rgba(0,0,0,0.1);
    font-size: 1.1rem;
}

.btn-cita:hover { 
    transform: scale(1.05); 
    background: #6da32f; 
    box-shadow: 0 4px 15px rgba(126, 180, 58, 0.4);
}

/* ==========================================
   SECCIÓN MOTOR - CON FONDO NEGRO
   ========================================== */
.motor-hero {
    background: url('../imagenes/rally/golf3-fondo.jpg') center/contain no-repeat;
    background-color: #000000;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.motor-hero-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

/* ==========================================
   TÍTULOS Y SECCIONES GENERALES
   ========================================== */
.section-padding { 
    padding: 40px 0; 
}

.main-title { 
    text-align: center; 
    color: var(--verde-fisiores); 
    margin-bottom: 40px; 
    font-size: 2.5rem; 
    position: relative;
    padding-bottom: 20px;
    display: block;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px; 
    height: 4px; 
    background-color: var(--verde-fisiores);
    border-radius: 2px;
}

/* ==========================================
   SECCIÓN SERVICIOS
   ========================================== */
.servicios-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.servicio-col {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: border-color 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.servicio-col:hover {
    transform: translateY(-5px);
    border-color: var(--verde-fisiores);
}

.servicio-header {
    text-align: center;
    color: var(--verde-fisiores);
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.servicio-header i {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.servicio-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 22px;
}

.servicio-item i.icon-small {
    background-color: var(--verde-fisiores);
    color: white;
    padding: 7px;
    border-radius: 8px;
    margin-right: 15px;
    font-size: 0.85rem;
    min-width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.servicio-item h4 {
    font-size: 1rem;
    color: var(--oscuro);
    margin-bottom: 4px;
    font-weight: 700;
    line-height: 1.2;
}

.servicio-item p {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.4;
    margin: 0;
}

.servicio-col > div:last-child {
    flex-grow: 1;
}

/* ==========================================
   GALERÍA DE INSTALACIONES
   ========================================== */
.gallery-section { 
    background: var(--gris-claro); 
    padding: 60px 0;
}

.grid-gallery { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
}

.gallery-item { 
    height: 280px; 
    overflow: hidden; 
    border-radius: 12px; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
}

.gallery-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: 0.6s ease; 
}

.gallery-item:hover img { 
    transform: scale(1.1); 
}

/* ==========================================
   GALERÍA DE MOTOR
   ========================================== */
.motor-gallery {
    margin-top: 20px;
}

.motor-item {
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
}

.motor-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
   PRODUCTOS Y FILTROS
   ========================================== */
.filter-container { 
    text-align: center; 
    margin-bottom: 45px; 
}

.filter-btn {
    background: #eee; 
    border: none; 
    padding: 12px 25px; 
    margin: 5px;
    border-radius: 50px; 
    cursor: pointer; 
    font-weight: 600; 
    transition: 0.3s;
}

.filter-btn.active, .filter-btn:hover { 
    background: var(--verde-fisiores); 
    color: white; 
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.producto-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #efefef;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
}

.producto-img {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 20px;
}

.producto-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.btn-asociado {
    display: inline-block;
    background-color: #232f3e;
    color: #ffffff !important;
    padding: 12px 20px;
    text-decoration: none !important;
    border-radius: 8px;
    font-weight: bold;
    width: 100%;
    margin-top: auto;
    transition: 0.3s;
}

.btn-asociado i.fa-amazon {
    color: #FF9900 !important;
    margin-left: 8px;
}

/* ==========================================
   NOTICIAS Y EVENTOS - IMAGEN COMPLETA Y BORDE VERDE EN HOVER
   ========================================== */
.noticia-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: white;
    border-radius: 15px;
    padding: 0;
    border: 1px solid #efefef;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: border-color 0.3s ease;
}

/* Solo cambia el borde a verde al hacer hover */
.noticia-card:hover {
    border-color: var(--verde-fisiores);
}

.noticia-card .producto-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

/* La imagen se ve COMPLETA - sin recortes, sin zoom */
.noticia-card .producto-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: none;
}

.noticia-card h3 {
    font-size: 1.2rem;
    margin: 15px 15px 5px 15px;
    color: var(--oscuro);
}

.noticia-card h3 i {
    color: var(--verde-fisiores);
    margin-right: 8px;
}

.fecha-noticia {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin: 0 15px 12px 15px;
}

.fecha-noticia i {
    margin-right: 5px;
    color: var(--verde-fisiores);
}

.noticia-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin: 0 15px 15px 15px;
    flex-grow: 1;
}

.noticia-meta {
    display: flex;
    gap: 12px;
    margin: 0 15px 15px 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.meta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0f0f0;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    color: #555;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.meta-link i {
    font-size: 1rem;
}

.meta-link:hover {
    background: var(--verde-fisiores);
    color: white;
    transform: translateY(-2px);
}

/* ==========================================
   TESTIMONIALS SLIDER - 4 VISIBLES, SIN BOTONES
   ========================================== */
.testimonials-section {
    background: white;
}

.testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 25px;
}

.testimonial-card {
    flex: 0 0 calc(25% - 19px);
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--verde-fisiores, #7eb43a);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    color: var(--oscuro, #1a1a1a);
    font-size: 1rem;
    margin-bottom: 3px;
}

.testimonial-date {
    font-size: 0.7rem;
    color: #999;
    display: block;
    margin-bottom: 5px;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 15px;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-readmore {
    color: var(--verde-fisiores, #7eb43a);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s;
    display: inline-block;
}

.testimonial-readmore:hover {
    color: #6da32f;
    text-decoration: underline;
}

.slider-dots {
    text-align: center;
    margin-top: 40px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--verde-fisiores, #7eb43a);
    width: 25px;
    border-radius: 10px;
}

.google-reviews-btn-container {
    text-align: center;
    margin-top: 50px;
}

.btn-google-reviews {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #1a1a1a;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--verde-fisiores, #7eb43a);
    transition: all 0.3s ease;
}

.btn-google-reviews i:first-child {
    color: #DB4437;
    font-size: 1.2rem;
}

.btn-google-reviews i:last-child {
    font-size: 0.8rem;
    opacity: 0.7;
}

.btn-google-reviews:hover {
    background: var(--verde-fisiores, #7eb43a);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(126, 180, 58, 0.3);
}

.btn-google-reviews:hover i:first-child {
    color: white;
}

/* ==========================================
   PATROCINIOS
   ========================================== */
.patrocinios-section { 
    background: #1a1a1a; 
    padding: 60px 0; 
    color: white; 
}

.logos-row { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); 
    gap: 25px; 
}

.logo-box { 
    height: 160px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    border-radius: 15px; 
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    color: white;
    text-decoration: none;
}

.rally { background: #333; }
.boxeo { background: #000; border: 1px solid #333; }
.tenis { background: #c6a700; }
.natacion { background: #0277bd; }
.ampa { background: #b71c1c; }

.logo-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    z-index: 10;
}

.logo-box i { font-size: 3rem; margin-bottom: 10px; }
.logo-box span { font-weight: bold; text-transform: uppercase; font-size: 0.9rem; }

/* ==========================================
   MAPA
   ========================================== */
.map-responsive { 
    max-width: 1200px; 
    margin: 0 auto 40px; 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
    background: var(--oscuro);
    color: #ffffff;
    padding: 60px 0 30px;
    width: 100%;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    justify-items: center;
    margin-bottom: 40px;
}

.footer-col {
    max-width: 300px;
    text-align: center;
}

.footer-col h3 {
    color: var(--verde-fisiores);
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--verde-fisiores);
}

.footer-ul { list-style: none; padding: 0; }
.footer-ul li { margin-bottom: 12px; }
.footer-ul li a { color: #bbbbbb; text-decoration: none; transition: 0.3s; }
.footer-ul li a:hover { color: var(--verde-fisiores); }

.footer-info-item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #ddd;
}

.footer-info-item i { 
    color: var(--verde-fisiores); 
    margin-top: 4px;
    min-width: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
}

.social-links a:hover { background: var(--verde-fisiores); transform: translateY(-3px); }

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    color: #666;
    font-size: 0.85rem;
}

/* ==========================================
   COOKIES
   ========================================== */
.cookie-wrapper {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 20px 0;
    transition: bottom 0.5s ease-in-out;
}

.cookie-wrapper.show {
    bottom: 0;
}

.cookie-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-container i {
    font-size: 2rem;
    color: var(--verde-fisiores);
}

.cookie-text p {
    font-size: 0.9rem;
    color: #444;
    margin: 0;
}

.btn-accept {
    background: var(--verde-fisiores);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-accept:hover {
    background: var(--oscuro);
}

.cookie-link {
    color: #888;
    font-size: 0.8rem;
    text-decoration: underline;
    margin-left: 10px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero {
        min-height: 450px;
    }
    
    .motor-hero {
        min-height: 450px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .testimonial-card {
        flex: 0 0 calc(33.333% - 17px);
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 0 !important;
        height: 65px !important;
        display: flex;
        align-items: center;
    }

    .main-header .container-flex {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0 15px !important;
    }

    .logo img {
        height: 40px !important;
        width: auto !important;
    }

    .menu-toggle {
        display: block !important;
        z-index: 1001;
    }

    .nav-links {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--blanco);
        padding: 80px 25px;
        transition: 0.4s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        width: 100%;
        margin-left: 0;
    }

    .hero {
        background-size: contain !important;
        background-position: top center !important;
        background-repeat: no-repeat !important;
        background-color: #ffffff !important;
        min-height: auto !important;
        padding: 160px 15px 40px !important;
    }
    
    .motor-hero {
        background-size: contain !important;
        background-position: top center !important;
        background-repeat: no-repeat !important;
        background-color: #000000 !important;
        min-height: auto !important;
        padding: 160px 15px 40px !important;
    }
    
    .hero-content {
        background-color: rgba(255, 255, 255, 0.85);
        padding: 15px;
        border-radius: 15px;
        margin: 0 auto;
        max-width: 90%;
    }

    .hero h1 {
        font-size: 2.2rem !important;
        margin-bottom: 8px !important;
    }

    .hero p {
        font-size: 0.9rem !important;
        margin-top: 8px !important;
    }

    .btn-cita {
        padding: 10px 22px !important;
        font-size: 0.85rem !important;
        gap: 8px !important;
        margin-top: 15px !important;
    }

    .grid-gallery {
        grid-template-columns: 1fr !important;
    }

    .gallery-item {
        height: 240px;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .logos-row {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 15px;
    }

    .logo-box {
        height: 130px;
    }

    .logo-box i {
        font-size: 2.2rem;
    }

    .servicios-container {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 30px 0 !important;
    }

    .main-title {
        font-size: 1.8rem !important;
        margin-bottom: 25px !important;
    }

    .motor-item {
        height: 200px;
    }
    
    .noticia-card .producto-img {
        height: 180px;
    }
    
    .noticia-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .meta-link {
        justify-content: center;
    }
    
    .noticia-card h3 {
        font-size: 1rem;
    }

    .productos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .producto-img {
        height: 200px;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 13px);
    }
    
    .testimonial-avatar {
        width: 45px;
        height: 45px;
    }
    
    .testimonial-info h4 {
        font-size: 0.9rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
        -webkit-line-clamp: 3;
    }
    
    .btn-google-reviews {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 550px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .testimonials-track {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 130px 12px 30px !important;
    }
    
    .motor-hero {
        padding: 130px 12px 30px !important;
    }
    
    .hero-content {
        padding: 12px;
    }
    
    .hero h1 {
        font-size: 1.8rem !important;
    }
    
    .hero p {
        font-size: 0.8rem !important;
    }
    
    .btn-cita {
        padding: 8px 18px !important;
        font-size: 0.75rem !important;
    }
    
    .main-title {
        font-size: 1.5rem !important;
    }

    .motor-item {
        height: 180px;
    }
    
    .noticia-card .producto-img {
        height: 160px;
    }

    .gallery-item {
        height: 200px;
    }

    .logo-box {
        height: 110px;
    }

    .logo-box i {
        font-size: 1.8rem;
    }

    .logo-box span {
        font-size: 0.75rem;
    }

    .servicio-col {
        padding: 20px;
    }

    .cookie-container {
        flex-direction: column;
        text-align: center;
    }
}