* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #000000;
    margin-bottom: 10px;
    font-size: 32px;
}

.subtitle {
    text-align: center;
    color: #67748e;
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-10px); /* Se eleva ligeramente */
    box-shadow: 0 5px 15px rgba(0,0,0,0.15); /* Sombra más pronunciada */
}

.contact-card i {
    font-size: 24px;
    color: #3498db;
    margin-bottom: 15px;transition: transform 0.3s ease;
}

.contact-card i:hover {
    transform: scale(1.2);
}

.contact-card h3 {
    margin-bottom: 10px;
    color: #344767;
    font-size: 18px;
}

.contact-card p {
    color: #67748e;
    line-height: 1.5;
    font-size: 14px;
}

.contact-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.map {
    flex: 1;
    min-width: 300px;
}

.map iframe {
    border-radius: 12px;
    width: 100%;
    height: 600px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.form {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.form h2 {
    margin-bottom: 25px;
    color: #000000;
    font-size: 20px;
    font-weight: bold;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #344767;
    font-size: 14px;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #d2d6da;
    border-radius: 8px;
    font-size: 14px;
    color: #344767;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #3498db;
}

textarea {
    height: 150px;
    resize: vertical;
}

.form-button {
    display: flex;
    justify-content: flex-start;
}

button {
    background: #3498db;
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button:hover {
    background: #2980b9;
}

/* Responsive design */
@media (max-width: 1200px) {
    .container {
        padding: 15px;
    }
}

@media (max-width: 992px) {
    .contact-info {
        gap: 15px;
    }
    
    .contact-container {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-card {
        min-width: 100%;
    }
    
    .map, .form {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }
    
    .form {
        padding: 20px;
    }
    
    .contact-card {
        padding: 20px;
    }
}