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

body {
    font-family: Raleway, Roboto, "Helvetica Neue", Ubuntu, sans-serif;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 240, 240, 0.9) 100%),
                url('../imgs/mechanic.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    padding: 2rem 1rem;
    color: #027BC6;
    position: relative;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.profile-section {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    width: 170px;
    height: auto;
    margin-bottom: 0.5rem;
}

.team-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    margin: 1.5rem 0;
    box-shadow: 0 10px 20px rgba(0, 80, 200, 0.15);
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-button {
    background: white;
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: #027BC6;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 80, 200, 0.1);
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 80, 200, 0.1);
}

.link-button:hover {
    transform: translateY(-2px);
    background: #027BC6;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 80, 200, 0.2);
}

.link-button i {
    margin-right: 1rem;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.description {
    margin: 1.5rem 0;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: center;
    font-family: Roboto, "Helvetica Neue", Ubuntu, sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: #027BC6;
    opacity: 0.9;
}

h1 {
    font-family: Raleway, sans-serif;
    font-weight: 700;
    margin-top: 1rem;
    font-size: 1.8rem;
    color: #027BC6;
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #027BC6;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 80, 200, 0.1);
    box-shadow: 0 2px 10px rgba(0, 80, 200, 0.1);
}

.social-button:hover {
    transform: translateY(-5px);
    background: #027BC6;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 80, 200, 0.2);
}

.social-button i {
    font-size: 1.5rem;
}

.fancy-separator {
    margin: 2.5rem 0;
    position: relative;
    height: 1px;
    text-align: center;
}

.fancy-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 80, 200, 0.3) 20%, 
        rgba(0, 80, 200, 0.5) 50%, 
        rgba(0, 80, 200, 0.3) 80%, 
        transparent);
}

.social-title {
    text-align: center;
    font-size: 0.95rem;
    color: #027BC6;
    font-family: Roboto, "Helvetica Neue", Ubuntu, sans-serif;
    line-height: 1.5;
    opacity: 0.9;
    padding: 0 1rem;
}

.contact-section {
    margin: 2.5rem 0;
    text-align: center;
}

.contact-title {
    font-family: Raleway, sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #027BC6;
    margin-bottom: 1.5rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    gap: 0.8rem;
}

.contact-button.whatsapp {
    background: #25D366;
    color: white;
    border: 1px solid rgba(37, 211, 102, 0.1);
}

.contact-button.phone {
    background: white;
    color: #027BC6;
    border: 1px solid rgba(2, 123, 198, 0.1);
    box-shadow: 0 2px 10px rgba(0, 80, 200, 0.1);
}

.contact-button:hover {
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-button.whatsapp:hover {
    background: #22c35e;
}

.contact-button.phone:hover {
    background: #027BC6;
}

.contact-button i {
    font-size: 1.3rem;
}

@media (min-width: 768px) {
    body {
        padding: 3rem;
    }

    .link-button {
        padding: 1.2rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    .contact-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }

    .contact-button {
        min-width: 250px;
    }
}

.footer {
    margin-top: 3rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(2, 123, 198, 0.1);
    border-radius: 0 0 12px 12px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.footer-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #027BC6;
    font-size: 1.1rem;
    padding: 0 1rem;
}

.address-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
}

.address-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(2, 123, 198, 0.1);
    box-shadow: 0 2px 10px rgba(2, 123, 198, 0.05);
}

.address-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #027BC6;
    font-size: 1.2rem;
    font-weight: 600;
}

.address-text {
    color: #027BC6;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 400px;
    line-height: 1.4;
}

.waze-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #000000;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 800;
}

.waze-link:hover {
    background: rgba(0, 145, 234, 0.1);
    transform: translateY(-2px);
    color: #0277BD;
}

.footer-item i, .address-header i {
    font-size: 1.4rem;
    opacity: 0.9;
}

.footer-item a {
    color: #027BC6;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.footer-item a:hover {
    color: #025a91;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .address-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .address-item {
        margin: 0;
        height: 100%;
        justify-content: center;
    }
} 