﻿:root {
    --violet: #5e2b7b;
    --gray-900: #1f2937;
    --gray-600: #4b5563;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --green: #34b233
}

body {
    margin: 0;
    font-family: Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
    color: var(--gray-900);
    background: linear-gradient(180deg,#fff 0%,#f8f8fb 55%,#ededf3 100%)
}

header{
    border-bottom: 1px solid var(--gray-200)
}

.sezione-titolo h1 {
    color: var(--violet);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 0
}

.landing-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,.06)
}

    .landing-card h3, .price-card h3 {
        font-weight:bold;
        margin: 0 0 6px;
        color: var(--violet)
    }
.price-card h4 {
    font-weight: bold;
}

.fa-solid.fa-check, .fa-solid.fa-circle-check{
    color: var(--green)
}

.landing-card {
    margin: 0.5em
}

.container-timeline .col.py-2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-storyline {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.price-container h4 {
    margin: 0 0 6px;
    color: #111;
    font-weight:bold
}
.price-container h3 {
    font-weight: bold!important;
}

.badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: var(--violet);
    padding: 4px 8px;
    border-radius: 999px;
    margin-left: 8px
}


.team-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
}

.member {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 12px;
    text-align: center
}

.boxcar-title{
    margin-bottom: 0
}
    .boxcar-title h2 {
        color: var(--violet)
    }

.map-slogan {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
    margin: 10px 0 24px;
}

.boxcar-team-section-two{
    padding: 0
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.review {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 14px;
}

.g-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    font-size: 12px;
    background: #fff;
    margin-bottom: 6px;
}

.stars i {
    color: #FDCC0D
}

strong{
    font-weight:bold;
}

.cta-band {
    background: #f5f2f8;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
    .cta-band p{
        margin-bottom:0
    }

    .cta-band h3 {
        margin: 0 0 6px;
        color: #5e2b7b;
        font-size: 30px;
        font-weight: bold;
    }

.bottone-cta {
    background: var(--theme-color1);
    color: #fff;
    height: 54px;
    line-height: 54px;
    border-radius: 12px;
    padding: 0 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .bottone-cta:hover {
        box-shadow: 0 4px 10px rgba(94,43,123,0.3);
        color:white;
    }

.price-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px
}

.price-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,.06)
}

.price-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


@media (max-width:991px) {
    .price-grid, .map-slogan, .grid-veicoli-nolo {
        grid-template-columns: none!important;
    }
    .team-grid, .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
}


.map-slogan .landing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.grid-veicoli-nolo {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px
}

.grid-veicoli-nolo h4{
    margin-top:1em;
    margin-bottom:0;
    font-weight:bold;
}

.titolo-auto {
    color: #5e2b7b;
    margin: 0 0 8px;
    font-weight:bold;
    text-align:center;
}



.btn-wa {
    background: #25D366;
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 800;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 14px rgba(0,0,0,.10)
}

    .btn-wa:hover {
        filter: brightness(1.05)
    }


