:root {
    --brand-yellow: #ffff5a;
}

/* Contactos Page Styles */
.contactos-hero {
    position: relative;
    width: 100%;
    min-height: 100svh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 20px;
    background-image: url('../assets/images/reviews/reviews-background.avif');
    background-size: cover;
    background-position: center;
}

.contactos-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.4), rgba(0,0,0,0.8));
    z-index: 1;
}

.contactos-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.contactos-title {
    font-family: var(--font-condensed);
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 4px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.contact-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    max-width: 550px;
    margin: 0 auto;
}

.contact-page-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease;
    position: relative;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.contact-page-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
}

.contact-text {
    font-family: var(--font-condensed);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.address-text {
    font-size: 1.2rem;
    line-height: 1.4;
    text-decoration: none;
}

.whatsapp-link {
    margin-top: 20px;
    align-self: center;
    transition: transform 0.3s ease;
}

.whatsapp-link:hover {
    transform: scale(1.1);
}

.whatsapp-link img {
    width: 50px;
    height: 50px;
}

/* Tooltip Styles */
.copy-tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-yellow);
    color: #000;
    padding: 6px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-condensed);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 100;
}

.copy-tooltip.active {
    opacity: 1;
    bottom: 130%;
}

@media (max-width: 768px) {
    .contactos-title {
        font-size: 3.5rem;
    }
    
    .contact-text {
        font-size: 1.5rem;
    }
    
    .address-text {
        font-size: 1.1rem;
    }
}
