﻿@media (min-width: 768px) {
    .form-container {
        margin-left: 32px;
    }
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: #f5f6fa; /* Gris muy claro, diferente al blanco del form */
    margin: 0;
}

.form-container {
    background: #fff;
    padding: 1.2rem; 
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 370px; 
    margin: 0;
}


    .form-container h2 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #1a1a1a;
    }


input, textarea, select {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-size: 0.93rem;
}

    input:focus, textarea:focus, select:focus {
        border-color: #6a38f2;
        outline: none;
    }

.btn-submit {
    background: #27357d;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.9rem;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    transition: transform 0.2s ease-in-out;
}

    .btn-submit:hover {
        transform: scale(1.03);
        background: linear-gradient(90deg, #552bd4, #3a1490);
    }


.carousel-inner img {
    object-fit: cover;
    height: 80vh; 
    border-radius: 16px;
}


.carousel-caption {
    background: rgba(0,0,0,0.5);
    padding: 1rem;
    border-radius: 12px;
}

.titulo-servicios {
    color: black;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: left;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    font-family: 'Inter', Times New, serif;
    text-align: left;
}

