/* ============================================
   CONTATO - Custom Styles
   ============================================ */

.page-hero {
    min-height: 50vh;
}

/* Form input focus animation */
input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(131, 210, 255, 0.15);
}

/* Contact cards hover */
a[href^="tel:"],
a[href^="mailto:"],
a[href*="whatsapp"] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a[href^="tel:"]:hover,
a[href^="mailto:"]:hover,
a[href*="whatsapp"]:hover {
    transform: translateY(-2px);
}

/* Submit button pulse */
button[type="submit"]:hover {
    box-shadow: 0 0 30px rgba(131, 210, 255, 0.4);
}