/*
 Theme Name: Meu Tema Filho TT25 (v3)
 Template: twentytwentyfive
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

@media (max-width: 768px) {
    html, body {
        overflow-y: auto;
    }
}

.landing-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('images/portavel.png') center/cover no-repeat;
    position: relative;
}

.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: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.column-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 400;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.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.6;
    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('images/portavel.png');
}

.column-condominios {
    background-image: url('images/condominios.png');
}

.column-estacionario {
    background-image: url('images/estacionario.png');
}

.column-especiais {
    background-image: url('images/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%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .landing-container {
        flex-direction: column;
        overflow-y: auto;
        height: auto;
        min-height: 100vh;
    }

    .column {
        height: 40vh;
        min-height: 300px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .column-title {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .column-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .column-description {
        opacity: 1;
        transform: translateY(0);
        font-size: 0.85rem;
        max-width: 90%;
        margin-top: 1rem;
    }

    .column-content {
        padding: 1.5rem;
    }

    /* Simplify hover effects for mobile */
    .landing-container:hover .column:not(:hover) {
        flex: 1;
        filter: none;
    }

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

@media (max-width: 480px) {
    .column {
        min-height: 280px;
    }

    .column-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .column-subtitle {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .column-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .column-content {
        padding: 1.2rem;
    }
}

/* 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;
}