/*
Theme Name: Vasto Mundo Theme
Theme URI: https://vasto-mundo.com
Author: Vasto Mundo
Author URI: https://vasto-mundo.com
Description: Um tema criativo, vibrante e profissional para a landing page da Vasto Mundo.
Version: 1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vasto-mundo-theme
Tags: landing-page, responsive, one-column, agency, creative
*/

/* Estilos Globais */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f0f0;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    width: 85%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    background-color: #0D3B66;
    color: #fff;
    padding: 60px;
    text-align: center;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3em;
}

.hero p {
    font-size: 1.5em;
    margin-top: 10px;
}

.btn-cta {
    display: inline-block;
    background-color: #F4D35E;
    color: #0D3B66;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.btn-cta:hover {
    background-color: #EE964B;
}

/* Seção Sobre Nós */
.about, .services, .testimonials, .cta-final {
    margin-top: 50px;
}

.about h2, .services h2, .testimonials h2, .cta-final h2 {
    font-size: 2.5em;
    color: #0D3B66;
    text-align: center;
    margin-bottom: 30px;
}

/* Serviços */
.service-item {
    background-color: #F0F3BD;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    transition: transform 0.2s ease;
}

.service-item:hover {
    transform: scale(1.05);
}

/* Testemunhos */
.testimonial-item {
    background-color: #FFF1E6;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid #EE964B;
    border-radius: 5px;
}

/* Seção CTA Final */
.cta-final {
    background-color: #0D3B66;
    color: #fff;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #0D3B66;
    color: #fff;
    margin-top: 50px;
}
