/* GENERAL */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* CAPÇALERA */
.contact-header {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(135deg, #003c96, #02a9d6);
    color: white;
    border-radius: 10px;
    margin-bottom: 30px;
}

.contact-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* MÈTODES DE CONTACTE */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2.5rem;
    color: #02a9d6;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: #003c96;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-card p {
    color: #555;
}

.contact-card a {
    color: #02a9d6;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #003c96;
    text-decoration: underline;
}

/* MISSATGE */
.contact-message {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.contact-message h2 {
    color: #003c96;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-message p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 25px;
}

/* LLISTA D'INFORMACIÓ */
.info-list ul {
    list-style: none;
    max-width: 400px;
    margin: 0 auto;
}

.info-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-list i {
    color: #02a9d6;
}

/* BOTÓ */
.btn-back {
    text-align: center;
    margin: 30px 0;
}

.btn-back button {
    background: linear-gradient(135deg, #02a9d6, #00c6ff);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(2, 169, 214, 0.3);
}

.btn-back button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(2, 169, 214, 0.4);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-header p {
        font-size: 1rem;
    }

    .contact-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

