* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.landing-container {
    width: 100vw;
    height: 200vw;
    max-height: 100vh;
    display: flex;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('/wp-content/themes/meu-tema-filho-tt25-v3/assets/img/condominios.png') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.column {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.column:last-child {
    border-right: none;
}

.column-content {
    text-align: center;
    color: white;
    z-index: 2;
    transition: all 0.4s ease;
    padding: 2rem;
}

.column-title {
    font-size: 2.5vw;
    font-weight: 300;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.column-subtitle {
    font-size: 1vw;
    opacity: 0.9;
    font-weight: 400;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.column-condominios .column-subtitle {
    margin-top: 0.5rem;
}

.column-description {
    font-size: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    max-width: 300px;
    line-height: 1.4;
    text-align: center;
    margin: 0 auto;
    word-wrap: break-word;
}

/* Hover Effects */
.landing-container:hover .column:not(:hover) {
    flex: 0.3;
    filter: brightness(0.3) blur(2px);
}

.column:hover {
    flex: 1.4;
    filter: brightness(1.2);
}

.column:hover .column-description {
    opacity: 1;
    transform: translateY(0);
}

.column:hover .column-content {
    transform: scale(1.05);
}

/* Individual column backgrounds and overlays */
.column-portavel {
    background-image: url('/wp-content/themes/meu-tema-filho-tt25-v3/assets/img/portavel.png');
    }

.column-condominios {
        background-image: url('/wp-content/themes/meu-tema-filho-tt25-v3/assets/img/condominios.png');

}

.column-estacionario {
            background-image: url('/wp-content/themes/meu-tema-filho-tt25-v3/assets/img/estacionario.png');

}

.column-especiais {
            background-image: url('/wp-content/themes/meu-tema-filho-tt25-v3/assets/img/especiais.png');

}

.column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    transition: all 0.4s ease;
    z-index: 1;
}

.column-portavel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.3), rgba(34, 139, 34, 0.5));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.column-condominios::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.3), rgba(46, 204, 113, 0.5));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.column-estacionario::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(60, 179, 113, 0.3), rgba(60, 179, 113, 0.5));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.column-especiais::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(85, 107, 47, 0.3), rgba(85, 107, 47, 0.5));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.column:hover::after {
    opacity: 1;
}

.column:hover {
    background-size: 110%;
}

/* Mobile Design */
@media (max-width: 768px) {
    html, body {
        overflow-y: auto;
        overflow-x: hidden;
    }

    .landing-container {
        flex-direction: column;
        width: 100vw;
        height: auto;
        min-height: 400vw;
    }

    .column {
        height: 100vw;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: flex-end;
        padding-bottom: 25vw;
        position: relative;
    }

    .column:last-child {
        border-bottom: none;
    }

    .column-content {
        padding: 4vw;
        width: 100%;
    }

    .column-title {
        font-size: 6vw;
        margin-bottom: 0.5vw;
    }

    .column-subtitle {
        font-size: 3.5vw;
        margin-bottom: 0.5vw;
        line-height: 1.1;
    }

    .column-description {
        opacity: 0;
        transform: translateY(2vw);
        font-size: 3.5vw;
        max-width: 90%;
        margin-top: 0.5vw;
        line-height: 1.1;
    }

    /* Touch/hover effects for mobile */
    .column:hover .column-description,
    .column:active .column-description,
    .column.active .column-description {
        opacity: 1;
        transform: translateY(0);
    }

    .column:hover .column-title,
    .column:active .column-title,
    .column.active .column-title {
        font-size: 5vw;
        margin-bottom: 0.2vw;
    }

    .column:hover .column-subtitle,
    .column:active .column-subtitle,
    .column.active .column-subtitle {
        font-size: 3vw;
        margin-bottom: 0.2vw;
        line-height: 1;
    }

    .column:hover .column-description,
    .column:active .column-description,
    .column.active .column-description {
        font-size: 3.2vw;
        line-height: 1;
        margin-top: 0.2vw;
    }

    .landing-container:hover .column:not(:hover) {
        flex: 1;
        filter: none;
    }

    .column:hover {
        flex: 1;
        filter: brightness(1.1);
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.column {
    animation: fadeInUp 0.8s ease forwards;
}

.column:nth-child(2) {
    animation-delay: 0.2s;
}

.column:nth-child(3) {
    animation-delay: 0.4s;
}

.column:nth-child(4) {
    animation-delay: 0.6s;
}
