:root{
    --primaryColor:#d2d3ce;
    --middleColor:#bfb08c;
    --helperColor:#B29414;
    --lightHelper:#F0ECE3;
    --transparentColor:#af847494;
    --shadow:#f0ece39f;
    --black:#212529;

   /* --------------------------------- */
    --whatsappColor:#25D366;
    --white:#ffff;
    --blue: #1877F2;
    --green: #25D366;
    --gray:  #f8f8f8;
}

.icons-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.service-title {
    text-align: center;
    color: var(--primaryColor);
    font-size: 35px;
    font-weight: 800;
}

.title-row {
    text-align: center;
}

.lines-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 30px;
    margin-top: 30px;
}



.line {
    width: 50px;
    height: 4px;
    background: #af8474;
    border-radius: 2px;
}

.line.middle {
    width: 80px;
}


.icons-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    z-index: 1;
}

.icon-box {
    text-align: center;
    align-content: center;
    width: fit-content;
    transition: transform 0.3s ease-in-out;
}
.icon-box i {
    color: var(--helperColor);
    font-size: 30px;
    width: 50px;
    height: 50px;
    background: var(--gray);
  border: 1px solid var(--black);
  box-shadow: inset 0px 3px 5px var(--black);
    border-radius: 50%;
    text-align: center;
    align-content: center;
}

.icon-box:hover::before {
    transform: translate(-50%, -50%) scale(1.3);
}

.icon-box p {
    color: var(--primaryColor);
    margin-top: 40px;
    font-size: 14px;
}


