:root {

    --eurven-blue: #003b6f;
    --eurven-green: #8dc63f;
    --eurven-light: #f7f9fb;
    --eurven-dark: #1d2630;
    --eurven-border: #e6ebf0;

}

body {

    font-family: Inter, sans-serif;

}


/* Logo e menu */

@media (min-width: 992px) {

  header.container-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;

    padding-left: 15px;
    padding-right: 15px;

    gap: 30px;
    box-sizing: border-box;
  }

  /* Area logo */
  header.container-header > .grid-child:not(.container-nav) {
    flex: 1 1 auto;
    width: auto;
    max-width: none;
    min-width: 0;
    margin: 0;
  }

  header.container-header .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
  }

  header.container-header .navbar-brand img {
    display: block;
    width: auto;
    max-height: 70px;
  }

  /* Area menu */
  header.container-header > .container-nav {
    flex: 0 1 300px;
    width: 300px;
    max-width: 300px;
    min-width: 0;
    margin-left: auto;

    display: flex !important;
    align-items: center;
    justify-content: flex-end;
  }

  header.container-header .mod-menu,
  header.container-header .navbar-nav {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;

    width: 100%;
    margin: 0;
    padding: 0;
  }

  header.container-header .mod-menu > li,
  header.container-header .navbar-nav > li {
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
  }

}

.container-header .navbar-toggler {
    color: #134189;
}  

.view-article main {
  margin-top: 0;
}

/* Mobile: hamburger menu a destra del logo */
@media (max-width: 991.98px) {

  .container-header {
    position: relative;
  }

  .container-header .navbar-brand {
    padding-right: 60px;
  }

  .container-header .container-nav {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    width: auto;
    margin: 0;
    padding: 0;
    z-index: 20;
  }

  .container-header .navbar {
    padding: 0;
    justify-content: flex-end;
  }

  .container-header .navbar-toggler {
    margin: 0;
    padding: 8px 10px;
    border: 0;
    color: #003180;
    box-shadow: none;
  }

  .container-header .navbar-toggler:focus {
    box-shadow: none;
  }

  .container-header .icon-menu {
    font-size: 1.5rem;
  }

  .container-header .navbar-collapse {
    position: absolute;
    top: 42px;
    right: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
  }
}




/* ==========================
   HERO
========================== */

.eurven-hero {

    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;

}

.eurven-hero::before {

    content: "";
    position: absolute;

    width: 700px;
    height: 700px;

    right: -250px;
    top: -250px;

    border-radius: 50%;

    background:
    radial-gradient(
        rgba(141,198,63,.10),
        transparent 70%
    );

}

.eurven-kicker {

    display: inline-block;

    margin-bottom: 20px;

    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 1px;

    color: var(--eurven-green);

}

.eurven-hero h1 {

    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    font-weight: 800;

    color: var(--eurven-dark);

    margin-bottom: 25px;

}

.eurven-lead {

    font-size: 1.2rem;
    line-height: 1.8;

    color: #5d6975;

    max-width: 600px;

}

.eurven-buttons {

    display: flex;
    gap: 15px;

    flex-wrap: wrap;

    margin-top: 35px;
    margin-bottom: 50px;

}

.btn-eurven-primary {

    background: var(--eurven-blue);
    color: #fff !important;

    padding: 14px 28px;

    border-radius: 12px;

    text-decoration: none;
    font-weight: 600;

    transition: .25s;

}

.btn-eurven-primary:hover {

    transform: translateY(-2px);

    color: #fff !important;

}

.btn-eurven-secondary {

    border: 2px solid var(--eurven-border);

    color: var(--eurven-dark);

    padding: 14px 28px;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 600;

    transition: .25s;

}

.btn-eurven-secondary:hover {

    border-color: var(--eurven-blue);

    color: var(--eurven-blue);

}

.eurven-stats {

    display: flex;
    gap: 50px;

    flex-wrap: wrap;

}

.eurven-stat span {

    display: block;

    font-size: 2rem;
    font-weight: 800;

    color: var(--eurven-blue);

}

.eurven-stat small {

    color: #66727d;

    font-size: .95rem;

}

.eurven-hero-image {

    text-align: center;

}

.eurven-hero-image img {

    max-width: 100%;
    height: auto;

    transition: .3s;

}

.eurven-hero-image img:hover {

    transform: translateY(-5px);

}


/* ==========================
   SECTIONS
========================== */

.eurven-section {

    padding: 90px 0;

}

.eurven-section-light {

    background: var(--eurven-light);

}

.eurven-section-title {

    text-align: center;

    margin-bottom: 60px;

}

.eurven-section-title h2 {

    font-size: clamp(2rem, 3vw, 3rem);

    font-weight: 800;

    color: var(--eurven-dark);

}

.eurven-section-title p {

    max-width: 750px;

    margin: 20px auto 0;

    color: #66727d;

}


/* ==========================
   CARDS
========================== */

.eurven-card {

    background: #fff;

    border: 1px solid var(--eurven-border);

    border-radius: 20px;

    overflow: hidden;

    transition: .25s;

    height: 100%;

}

.eurven-card:hover {

    transform: translateY(-6px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);

}

.eurven-card img {

    width: 100%;
    display: block;

}

.eurven-card-body {

    padding: 30px;

}

.eurven-card h3 {

    font-size: 1.3rem;

    font-weight: 700;

    margin-bottom: 15px;

    color: var(--eurven-dark);

}

.eurven-card p {

    color: #66727d;

}


/* ==========================
   CLIENT LOGOS
========================== */

.eurven-clients img {

    max-height: 70px;

    opacity: .65;

    filter: grayscale(100%);

    transition: .25s;

}

.eurven-clients img:hover {

    opacity: 1;

    filter: grayscale(0);

}


/* ==========================
   MAP PLACEHOLDER
========================== */

.eurven-map-placeholder {

    min-height: 550px;

    background: #fff;

    border: 2px dashed var(--eurven-border);

    border-radius: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 1.3rem;
    font-weight: 700;

    color: var(--eurven-blue);

}


/* ==========================
   MOBILE
========================== */

@media (max-width: 991px) {

    .eurven-hero {

        padding: 70px 0;

    }

    .eurven-hero-content {

        text-align: center;

    }

    .eurven-buttons {

        justify-content: center;

    }

    .eurven-stats {

        justify-content: center;

    }

    .eurven-hero-image {

        margin-top: 50px;

    }

}