/* Botones oficiales de redes sociales */

/* Google Button - Estilo oficial */
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #3c4043;
    width: 100%;
    border-radius: 24px;
    border: 1px solid #dadce0;
    box-shadow: none;
    white-space: nowrap;
    text-decoration: none;
    height: 48px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    font-weight: 500;
    padding: 0 16px;
}

.btn-google:hover {
    cursor: pointer;
    background-color: #f8f9fa;
    box-shadow: 0 1px 3px 0 rgba(60,64,67,.30), 0 4px 8px 3px rgba(60,64,67,.15);
    color: #3c4043;
    text-decoration: none;
}

.btn-google:focus {
    outline: none;
    background-color: #f8f9fa;
    box-shadow: 0 1px 3px 0 rgba(60,64,67,.30), 0 4px 8px 3px rgba(60,64,67,.15);
}

.btn-google:active {
    background-color: #f1f3f4;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,.30), 0 2px 6px 2px rgba(60,64,67,.15);
}

/* Estilo del icono de Google */
.google-icon {
    background: url('/images/google-logo.svg') transparent 50% 50% no-repeat;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
    margin-right: 12px;
}

/* Texto del botón de Google */
.google-button-text {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    color: #3c4043;
    line-height: 20px;
}

/* Facebook Button */
.btn-facebook {
    background-color: #1877f2;
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    height: 48px;
    line-height: 48px;
    padding: 0 16px;
    position: relative;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    width: 100%;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-facebook:hover {
    background-color: #166fe5;
    color: #ffffff;
    text-decoration: none;
}

.btn-facebook:focus {
    background-color: #166fe5;
    outline: none;
    box-shadow: 0 0 0 2px rgba(24, 119, 242, 0.5);
}

.btn-facebook:active {
    background-color: #1464d8;
}

.facebook-icon {
    font-size: 18px;
    margin-right: 12px;
    color: #ffffff;
}

/* LinkedIn Button - Estilo oficial */
.btn-linkedin {
    background-color: #0077b5;
    border: none;
    border-radius: 2px;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    height: 48px;
    line-height: 48px;
    padding: 0 24px;
    position: relative;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    width: 100%;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-linkedin:hover {
    background-color: #005885;
    color: #ffffff;
    text-decoration: none;
}

.btn-linkedin:focus {
    background-color: #005885;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 119, 181, 0.3);
}

.btn-linkedin:active {
    background-color: #004471;
}

.linkedin-icon {
    font-size: 20px;
    margin-right: 8px;
    color: #ffffff;
    font-weight: bold;
}

/* Contenedor de botones sociales */
.social-buttons-container {
    margin-top: 8px;
    padding-top: 0;
}

.social-buttons-divider {
    text-align: center;
    margin: 16px 0;
    position: relative;
    color: #5f6368;
    font-size: 13px;
}

.social-buttons-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
    z-index: 1;
}

.social-buttons-divider span {
    background: #ffffff;
    padding: 0 16px;
    position: relative;
    z-index: 2;
}

/* Espaciado entre botones */
.social-btn + .social-btn {
    margin-top: 10px;
}

.social-btn:first-child {
    margin-top: 0;
}

/* Ajustar altura uniforme para todos los botones */
.btn-facebook {
    height: 48px;
    line-height: 48px;
}

/* Responsive */
@media (max-width: 576px) {
    .btn-google,
    .btn-facebook,
    .btn-linkedin {
        font-size: 13px;
        height: 36px;
        padding: 0 10px;
    }
    
    .google-icon,
    .facebook-icon {
        height: 16px;
        width: 16px;
        margin-right: 6px;
    }
    
    .linkedin-icon {
        height: 14px;
        width: 14px;
        margin-right: 6px;
    }
}