﻿.medir-imagen-section {
    text-align: center;
    margin-top: 3rem;
    padding: 30px;
    background: linear-gradient(135deg, #f0f8ff, #e6f2ff);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    animation: floatIn 1s ease-out;
    border: 2px solid #000;
}
    .medir-imagen-section h3 {
        font-size: 2rem;
        color: #003366;
        margin-bottom: 20px;
        font-weight: bold;
    }

.medir-imagen-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
    animation: pulse 2s infinite;
}

    .medir-imagen-btn:hover {
        transform: scale(1.1);
        background-color: #0056b3;
    }

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}
