.logo {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(4px 4px 2px rgba(0,0,0,0.3));
}

.social-icons {
    margin: 0 auto;
}

.social-icons img {
    width: 70px;
    height: 70px;
    margin: 10px;
}

body {
    position: relative;
    overflow: auto;
    text-align: center;
    padding-top: 10px;
    font-family: 'Roboto', sans-serif;
    height: 100%;
    margin: 0;
}

.background-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/img_pu/background-pu.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.content {
    background: rgba(255, 255, 255, 0.65);
    border-radius: 10px;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    margin: 5px auto 20px;
}

@media (prefers-color-scheme: dark) {
    .content {
        background: rgba(255, 255, 255, 0.65);
    }
}

.full-width-card,
.consultation-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.full-width-card {
    margin: 20px 0;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.full-width-card img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.full-width-card img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.custom-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.custom-card-whatsapp {
    background-color: #25D366;
    color: #fff;
}

.custom-card-instagram {
    background-color: #E4405F;
    color: #fff;
}

.custom-card-whatsapp:hover,
.custom-card-instagram:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.custom-card-text {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.full-width-map {
    width: 100%;
    height: 250px;
}

.map-link-section {
    margin: 20px 0;
}

.map-link-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-link-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.map-link-text {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: #007bff;
}

.consultation-card {
    position: relative;
    overflow: hidden;
    margin: 20px 0;
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.consultation-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consultation-card:hover img {
    transform: scale(1.015);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.consultation-card .hover-text {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.consultation-card:hover .hover-text {
    opacity: 1;
}

.map-section {
    margin-top: 20px;
}

.whatsapp img {
    width: 25px;
    height: 25px;
    position: relative;
    bottom: 1px;
}

.whatsapp {
    display: flex;
    justify-content: space-around;
    height: 66.5px;
    align-items: center;
    background: linear-gradient(#FF9700 50%, #FF6E01);
}

.whatsapp a{
    color: #fafafa;
    width: 100%;
    text-decoration: none;
    height: 62px;
    line-height: 62px;
    transition: 300ms;
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: normal;
}

.animation {
    animation: move 1.5s infinite linear;
}

@keyframes move {
    0% {
        scale: 1;
    }

    50% {
        scale: 1.040;
    }

    100% {
        scale: 1;
    }
}

.whatsapp a:hover{
    font-size: 17px;
}

.whatsapp a:nth-child(2){
    border-left: 1px solid rgba(0,0,0,0.2);
}

.other-links {
    color: #333;
    text-shadow: 3px 3px 4px rgba(0,0,0,0.3);
    margin: 0px auto;
    width: 100%;
}

.other-links h1 {
    font-size: 2rem;
}

.other-links hr {
    width: 30%;
    background-color: rgba(0,0,0,0.2);
}

.other-links .all-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255,255,255,0.6);
    border-radius: 10px;
}

.other-links .all-logo img {
    width: 100%;
    transition: 300ms;
}

.other-links .all-logo img:hover {
    scale: 1.050;
}

.other-links .all-logo .img-1 a img{
    width: 80%;
}

.other-links .all-logo .img-2 a img{
    width: 60%;
}

.other-links .all-logo .img-3 a img{
    width: 55%;
}

.other-links .all-logo .img-4 a img{
    width: 80%;
}

.other-links .all-logo .img-1,
.other-links .all-logo .img-2,
.other-links .all-logo .img-3,
.other-links .all-logo .img-4 {
    width: 25%;
}

@media (max-width: 768px) {
    .content {
        background: rgba(255, 255, 255, 0.65);
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .full-width-card,
    .consultation-card {
        margin: 10px 0;
    }

    .map-section {
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .content {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    body {
        padding-top: 10px;
    }

    .logo {
        max-width: 100%;
        width: auto;
        height: auto;
        margin-bottom: 15px;
    }

    .social-icons img {
        width: 50px;
        height: 50px;
        margin: 10px;
    }

    .other-links h1 {
        font-size: 1.3rem;
    }
    
    .other-links hr {
        width: 30%;
        margin: 15px auto;
        background-color: rgba(0,0,0,0.2);
    }

    .other-links .all-logo .img-1 a img{
        width: 95%;
    }
    
    .other-links .all-logo .img-2 a img{
        width: 70%;

    }
    
    .other-links .all-logo .img-3 a img{
        width: 70%;

    }
    
    .other-links .all-logo .img-4 a img{
        width: 100%;

    }
}