﻿body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 0;
    color: #333;
}

.btn-custom {
    background-color: #ff7f50;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
}

#contact-section .form-group {
    margin-bottom: 15px;
}

#contact-section input, #contact-section textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#btnEnviar {
    background-color: #28a745;
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    cursor: pointer;
}

.info-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.f-box {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

    .f-box:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .f-box i {
        color: #ff7f50;
        margin-bottom: 15px;
    }
