/* 
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/
Description: Tema filho para Hello Elementor personalizado para Vo Ali Turismo
Author: Manus
Author URI: https://manus.ai
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Importa os estilos do tema pai */
@import url('../hello-elementor/style.css');

/* Paleta de cores da Vo Ali Turismo */
:root {
    --primary: #e96a97;    /* Rosa framboesa */
    --secondary: #77cfb7;  /* Verde-água */
    --tertiary: #4dc1c6;   /* Turquesa */
    --dark: #464646;       /* Cinza-chumbo */
    --accent: #ff8c5a;     /* Coral */
    --light: #f8f9fa;      /* Cor clara para fundos */
    --white: #ffffff;      /* Branco puro */
    --gray: #6c757d;       /* Cinza médio para textos secundários */
}

/* Estilos gerais */
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

/* Estilos do cabeçalho */
.site-header {
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-logo img {
    max-height: 80px;
    width: auto;
}

/* Estilos do rodapé */
.site-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

/* Estilos de botões */
.elementor-button {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.elementor-button:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Estilos para seções */
.elementor-section {
    padding: 60px 0;
}

/* Estilos responsivos */
@media (max-width: 767px) {
    .site-logo img {
        max-height: 60px;
    }
    
    .elementor-section {
        padding: 40px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}
