﻿body {
    font-family: 'Roboto Slab', serif;
}

.card-1 {
    height: 300px;
}

.card-2 {
    height: 250px !important;
}

.card-3 {
    height: 300px;
}

.card-4 {
    height: 200px !important;
}

.card-5 {
    height: 300px;
}

.row-top {
    align-items: flex-start;
}

.row-middle {
    align-items: center;
}

.row-bottom {
    align-items: flex-end;
}

.col-flex {
    display: flex;
    align-items: center;
}

.row-center {
    display: flex;
    align-items: center;
}

.row-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.img-container {
/*    width: 300px;*/
    height: 800px;
    overflow: hidden;
    display: flex;
    justify-content: center; /* ✅ centro orizzontale */
}

.img-container img {
    height: auto;
}

.circle-gradient-out {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient( circle at 130% 50%, /* punto FUORI dal cerchio */
    #60a5fa 0%, #2563eb 45%, #1e3a8a 100% );
}

.circle-gradient-ui {
    width: 6rem;
    height: 6rem;
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient( circle at 120% 20%, rgba(255,255,255,0.9) 0%, #3b82f6 35%, #1e40af 65%, #020617 100% );
}

.bg-hero-full {
    width: 100%;
    height: 100vh;
    background-image: url("../Images/Designer.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.bg-hero-opacity {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

    .bg-hero-opacity::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("../Images/Designer.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.35; 
    }

.bg-cream-opacity {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

    .bg-cream-opacity::before {
        content: "";
        position: absolute;
        inset: 0;
/*        background-color: antiquewhite;*/
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

.bg-content {
    position: relative;
    z-index: 1;
    color: white;
}

.wrap-row {
    display: flex;
    flex-wrap: wrap; 
    gap: 16px; 
}

.item {
    flex: 1 1 240px; 
}


.img-box {
    width: 300px;
    height: 200px;
    overflow: hidden;
    position: relative;
}

    .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* crop intelligente */
        object-position: center; /* o top / left / right */
    }

.logos-grid {
    padding: 16px 0;
}

.logo-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

    .logo-cell > * {
        display: table-cell;
        vertical-align: middle;
    }

.logo-img {
    max-width: 175px;
    width: 100%;
    height: auto;
}

.contact-box {
    display: table;
    width: 100%;
    height: 80px;
}

    .contact-box .row {
        display: table-row;
    }

.contact-icon,
.contact-text {
    display: table-cell;
    vertical-align: middle;
}

.contact-icon {
    text-align: center;
    font-size: 24px;
}

.contact-text {
    padding-left: 12px;
    font-size: 18px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 24px;
    padding: 3px 5px 7px 5px;
    border-radius: 50%;
    text-decoration: none;
    cursor: pointer;
}