/* ===========================
   CSS Variables
   =========================== */
:root {
    --primary:       #1e5799;  /* azul profissional */
    --primary-light: #2f7bc0;  /* azul médio hover */
    --primary-dark:  #143d6b;  /* azul escuro */
    --accent:        #3a9e6e;  /* verde confiança */
    --accent-light:  #56c48a;
    --warm:          #f0f7ff;  /* fundo azul muito claro */
    --white:         #ffffff;
    --text:          #2d3748;
    --text-muted:    #718096;
    --shadow-sm:     0 2px 8px rgba(30,87,153,0.08);
    --shadow-md:     0 6px 20px rgba(30,87,153,0.14);
    --shadow-lg:     0 12px 40px rgba(30,87,153,0.18);
    --transition:    all 0.3s ease;
    --radius:        16px;
}

/* ===========================
   Reset & Base
   =========================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background-color: var(--warm);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

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

.section-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary);
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary-light));
    border-radius: 2px;
    margin: 0.6rem auto 0;
}

/* ===========================
   Decorative Leaves (static)
   =========================== */
.leaves-decoration {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.leaf {
    position: absolute;
}
/* Leaf shape: SVG teardrop. Color and opacity set per leaf */
.leaf-1  { width: 52px; top: 6%;   left: 1.5%; transform: rotate(20deg);   color: #3a9e6e; opacity: 0.18; }
.leaf-2  { width: 38px; top: 12%;  right: 2%;  transform: rotate(-55deg);  color: #1e5799; opacity: 0.12; }
.leaf-3  { width: 68px; top: 22%;  left: 0%;   transform: rotate(80deg);   color: #3a9e6e; opacity: 0.10; }
.leaf-4  { width: 30px; top: 30%;  right: 1%;  transform: rotate(10deg);   color: #2f7bc0; opacity: 0.16; }
.leaf-5  { width: 44px; top: 40%;  left: 1%;   transform: rotate(-70deg);  color: #3a9e6e; opacity: 0.14; }
.leaf-6  { width: 58px; top: 52%;  right: 0%;  transform: rotate(42deg);   color: #1e5799; opacity: 0.09; }
.leaf-7  { width: 36px; top: 61%;  left: 2%;   transform: rotate(-25deg);  color: #56c48a; opacity: 0.16; }
.leaf-8  { width: 48px; top: 70%;  right: 2%;  transform: rotate(75deg);   color: #3a9e6e; opacity: 0.12; }
.leaf-9  { width: 40px; top: 78%;  left: 0.5%; transform: rotate(-50deg);  color: #2f7bc0; opacity: 0.13; }
.leaf-10 { width: 54px; top: 84%;  right: 1%;  transform: rotate(28deg);   color: #3a9e6e; opacity: 0.11; }
.leaf-11 { width: 34px; top: 91%;  left: 3%;   transform: rotate(62deg);   color: #56c48a; opacity: 0.17; }
.leaf-12 { width: 46px; top: 18%;  right: 0.5%;transform: rotate(-80deg);  color: #1e5799; opacity: 0.10; }
/* Extra leaves for more texture */
.leaf-13 { width: 28px; top: 47%;  left: 4%;   transform: rotate(35deg);   color: #3a9e6e; opacity: 0.12; }
.leaf-14 { width: 60px; top: 64%;  right: 3%;  transform: rotate(-30deg);  color: #56c48a; opacity: 0.08; }

/* Content must sit above the leaves */
.header, .hero, .services, .team, .banner-section, .footer, .fab-btn {
    position: relative;
    z-index: 1;
}

/* ===========================
   Header
   =========================== */
.header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.6rem 0;
    box-shadow: 0 2px 20px rgba(30,87,153,0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-light);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}
.nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.nav ul li a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-dark);
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.nav ul li a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    background:
        linear-gradient(135deg,
            rgba(30, 87, 153, 0.88) 0%,
            rgba(19, 61, 107, 0.82) 40%,
            rgba(47, 123, 192, 0.75) 100%),
        url('../Design/exemplo2.jpg') center top/cover no-repeat;
    padding: 120px 0;
    text-align: center;
    min-height: 72vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
/* Subtle wave at hero bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--warm);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-content h1 {
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.2rem;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.hero-content h1 span {
    color: #a8d8ff;
}
.hero-content p {
    font-size: 1.15rem;
    max-width: 680px;
    margin: 0 auto 2.5rem;
    color: rgba(255,255,255,0.88);
    font-weight: 300;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    padding: 15px 38px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-block;
    box-shadow: 0 4px 20px rgba(58,158,110,0.4);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(58,158,110,0.5);
}

/* Hero trust badges */
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3.5rem;
    flex-wrap: wrap;
}
.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
}
.hero-badge i {
    color: #a8d8ff;
    font-size: 1.2rem;
}

/* ===========================
   Services Section
   =========================== */
.services {
    padding: 90px 0 80px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
/* Top-left botanical branch decoration */
.services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary-light));
}
.services .container { position: relative; z-index: 1; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    justify-items: center;
}
/* 4th and 5th cards center in the row */
.service-card:nth-child(4) { grid-column: 1 / 2; margin-left: auto; }
.service-card:nth-child(5) { grid-column: 3 / 4; margin-right: auto; }

.service-card {
    background: var(--warm);
    padding: 2.4rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    width: 100%;
    border: 1px solid rgba(30,87,153,0.06);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30,87,153,0.1), rgba(58,158,110,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.4rem;
    transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}
.service-icon {
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}
.service-card:hover .service-icon {
    color: var(--white);
}
.service-card h3 {
    margin-bottom: 0.7rem;
    font-size: 1.15rem;
    color: var(--primary-dark);
    font-weight: 600;
}
.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.services-tagline {
    text-align: center;
    font-size: 1.15rem;
    color: var(--primary);
    margin-top: 3rem;
    font-weight: 500;
    font-style: italic;
    padding: 1rem;
    border-top: 1px solid rgba(30,87,153,0.1);
    border-bottom: 1px solid rgba(30,87,153,0.1);
}

/* ===========================
   Recruitment Section
   =========================== */
.recruitment {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a4a7a 50%, #0e3258 100%);
    position: relative;
    overflow: hidden;
}
/* decorative circle */
.recruitment::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}
.recruitment::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(58,158,110,0.08);
    pointer-events: none;
}
.recruitment-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.recruitment-left {
    color: var(--white);
}
.recruitment-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(58,158,110,0.2);
    border: 1px solid rgba(58,158,110,0.4);
    color: var(--accent-light);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}
.recruitment-left h2 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: var(--white);
}
.recruitment-left p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.btn-recruitment {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(58,158,110,0.35);
    margin-bottom: 1.2rem;
}
.btn-recruitment:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(58,158,110,0.5);
}
.recruitment-phone {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}
.recruitment-phone:hover { color: var(--accent-light); }
.recruitment-phone i { color: var(--accent-light); }

.recruitment-info-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border: 1px dashed rgba(168, 216, 255, 0.4);
    border-radius: 8px;
    padding: 0.65rem 1rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    line-height: 1.4;
    max-width: 420px;
}
.recruitment-info-note i {
    color: #a8d8ff;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.recruitment-right {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.recruitment-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 1.6rem 2rem;
    backdrop-filter: blur(8px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.recruitment-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(58,158,110,0.4);
}
.recruitment-card h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.recruitment-card h4 i {
    color: var(--accent-light);
    font-size: 1rem;
}
.recruitment-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.recruitment-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: rgba(255,255,255,0.78);
    font-size: 0.9rem;
    line-height: 1.4;
}

.recruitment-card ul li i {
    color: var(--accent-light);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Responsive recruitment */
@media (max-width: 900px) {
    .recruitment-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .recruitment-left h2 { font-size: 2rem; }
    .recruitment-right { flex-direction: row; flex-wrap: wrap; }
    .recruitment-card { flex: 1; min-width: 260px; }
}
@media (max-width: 600px) {
    .recruitment-right { flex-direction: column; }
}

/* ===========================
   Team Section
   =========================== */
.team {
    padding: 90px 0;
    background-color: #f4f9ff;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(168,216,255,0.4) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(168,216,255,0.3) 0%, transparent 40%);
    overflow: hidden;
    position: relative;
}
.team::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
}
.team-logo {
    text-align: center;
    margin-bottom: 0.8rem;
}
.team-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(30,87,153,0.12));
}
.team-title {
    margin-bottom: 2.5rem;
    color: var(--primary-dark);
}
.team-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
/* Sem card, texto limpo sobre o fundo da seção */
.team-info {
    flex: 1;
    max-width: 320px;
    padding: 1.2rem 1.5rem;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
    position: relative;
}


.team-info h3, .team-info p, .team-info ul {
    position: relative;
    z-index: 1;
}
.team-left {
    text-align: right;
}
.team-left .team-details { text-align: right; }
.team-left .team-details li { justify-content: flex-end; }
.team-left .team-details i { margin-right: 0; margin-left: 8px; order: 2; }
.team-left .team-details span { order: 1; }
.team-right { text-align: left; }
.team-right .team-details li { justify-content: flex-start; }
.team-right .team-details i { margin-right: 8px; margin-left: 0; }

.team-photo-center {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.team-photo-center .team-photo {
    width: 480px;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    object-position: center bottom;
    display: block;
    background: transparent;
}
.team-info h3 {
    color: var(--primary-dark);
    margin-bottom: 0.4rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}
.role {
    font-weight: 400;
    color: var(--text);
    margin-bottom: 1.4rem;
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0;
}
.team-details { list-style: none; }
.team-details li {
    margin-bottom: 0.75rem;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    color: var(--text);
}
.team-details i {
    color: var(--accent);
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

/* ===========================
   Banner Section
   =========================== */
.banner-section {
    padding: 50px 0;
    background: var(--white);
    text-align: center;
}
.banner-img {
    max-width: 700px;
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: linear-gradient(160deg, #0d2d50 0%, var(--primary-dark) 40%, #0a2240 100%);
    color: var(--white);
    padding-top: 0;
    position: relative;
    overflow: hidden;
}
/* subtle decorative circle in background */
.footer::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}
.footer-wave {
    width: 100%;
    line-height: 0;
}
.footer-wave svg {
    width: 100%;
    height: 60px;
    display: block;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr;
    gap: 3rem;
    padding: 3rem 0 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.logo-img-footer {
    height: 90px;
    width: auto;
    object-fit: contain;
    background: rgba(255,255,255,0.96);
    border-radius: 16px;
    padding: 10px 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    align-self: flex-start;
}
.footer-tagline {
    font-style: italic;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    border-left: 3px solid var(--accent);
    padding-left: 0.8rem;
}
.social-links {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.5rem;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 1.1rem;
    border: 1px solid rgba(255,255,255,0.12);
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}
.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.footer-list li {
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}
.footer-list li i.fa-chevron-right {
    color: var(--accent);
    font-size: 0.7rem;
    margin-top: 4px;
    flex-shrink: 0;
}
/* Team list special styles */
.footer-team-list li {
    align-items: flex-start;
    gap: 0.8rem;
}
.footer-team-list li > i {
    color: var(--accent-light);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.footer-team-list li div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.footer-team-list strong {
    color: rgba(255,255,255,0.9);
    font-size: 0.88rem;
    font-weight: 600;
}
.footer-team-list span {
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
}
.footer-coren-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background: rgba(58,158,110,0.15);
    border: 1px solid rgba(58,158,110,0.35);
    color: var(--accent-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.footer-coren-badge i { font-size: 0.9rem; }

/* Bottom bar */
.footer-bottom {
    padding: 1.2rem 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-bottom p {
    color: rgba(255,255,255,0.35);
    font-size: 0.78rem;
}

/* Responsive footer */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; align-items: center; }
    .logo-img-footer { height: 70px; padding: 8px 12px; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand { flex-direction: column; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ===========================
   Floating WhatsApp Button
   =========================== */
.fab-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #20b858);
    color: var(--white);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    z-index: 1000;
    transition: var(--transition);
}
.fab-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card:nth-child(4),
    .service-card:nth-child(5) { grid-column: auto; margin: 0; }
    .service-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 350px;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .header-container { flex-direction: column; gap: 1rem; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-badges { gap: 1.2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card:nth-child(4),
    .service-card:nth-child(5) { grid-column: auto; margin: 0; max-width: none; }
    .team-layout { flex-direction: column; align-items: center; }
    .team-left { text-align: center; order: 2; }
    .team-left .team-details { text-align: left; }
    .team-left .team-details li { justify-content: flex-start; }
    .team-left .team-details i { margin-right: 10px; margin-left: 0; order: 0; }
    .team-left .team-details span { order: 0; }
    .team-photo-center { order: 1; }
    .team-right { text-align: center; order: 3; }
}
