﻿/* Kit de Elementor 12 - Redesign Completo */
.elementor-kit-12 {
    /* Nova paleta de cores - Azul escuro com destaque verde-água */
    --e-global-color-primary: #FFD700; /* Amarelo ouro para títulos */
    --e-global-color-secondary: #00CED1; /* Verde-água para subtítulos */
    --e-global-color-text: #F0F8FF; /* Branco azulado para texto */
    --e-global-color-accent: #FF6347; /* Coral para botões */
    
    /* Fontes mantidas */
    --e-global-typography-primary-font-family: "Roboto";
    --e-global-typography-primary-font-weight: 600;
    --e-global-typography-secondary-font-family: "Roboto Slab";
    --e-global-typography-secondary-font-weight: 400;
    --e-global-typography-text-font-family: "Roboto";
    --e-global-typography-text-font-weight: 400;
    --e-global-typography-accent-font-family: "Roboto";
    --e-global-typography-accent-font-weight: 500;
}

/* Transição de página - Fundo gradiente */
.elementor-kit-12 e-page-transition {
    background: linear-gradient(135deg, #1E3A5F 0%, #0A192F 100%);
}

/* Contêiner principal - Camada 1 */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1140px;
    background-color: #0A192F; /* Azul marinho escuro */
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 206, 209, 0.2); /* Borda sutil verde-água */
    padding: 30px;
    margin: 20px auto;
}

/* Contêiner interno - Camada 2 */
.e-con {
    --container-max-width: 1140px;
    background-color: #1E3A5F; /* Azul mais claro */
    border-radius: 8px;
    padding: 20px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

/* BOTÕES - Mantendo tamanho e melhorando aparência */
.elementor-button {
    /* Mantém o tamanho original (sm) */
    font-size: 14px !important; 
    padding: 10px 24px !important;
    height: auto !important;
    
    /* Novo estilo */
    background: linear-gradient(135deg, #FF6347 0%, #FF4500 100%) !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(255, 99, 71, 0.4) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Ícones dentro dos botões */
.elementor-button-icon {
    margin-right: 8px !important;
    font-size: 16px !important;
}

/* Efeito hover */
.elementor-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(255, 99, 71, 0.6) !important;
    background: linear-gradient(135deg, #FF4500 0%, #FF2800 100%) !important;
}

/* TÍTULOS */
.elementor-widget-heading .elementor-heading-title {
    color: var(--e-global-color-primary) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 10px;
}

/* Linha decorativa sob títulos */
.elementor-widget-heading .elementor-heading-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--e-global-color-secondary);
}

/* LINKS */
a {
    color: #00CED1 !important; /* Verde-água */
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    position: relative;
}

a:hover {
    color: #FFD700 !important; /* Amarelo ouro */
}

a:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FFD700;
}

/* FUNDO GLOBAL */
body {
    background: linear-gradient(135deg, #0A192F 0%, #091428 100%) !important;
    background-attachment: fixed !important;
    color: var(--e-global-color-text) !important;
    padding: 20px;
}

/* DESTAQUES DE TEXTO */
strong {
    color: #FFD700 !important; /* Amarelo ouro para ênfase */
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .elementor-section.elementor-section-boxed > .elementor-container {
        max-width: 1024px;
        padding: 25px !important;
    }
    .e-con {
        --container-max-width: 1024px;
    }
}

@media (max-width: 767px) {
    .elementor-section.elementor-section-boxed > .elementor-container {
        max-width: 100%;
        padding: 20px 15px !important;
        margin: 10px auto !important;
    }
    .e-con {
        --container-max-width: 100%;
        padding: 15px !important;
    }
    
    /* Botões em dispositivos móveis */
    .elementor-button {
        padding: 8px 20px !important;
        font-size: 26px !important;
    }
}

/* ANIMAÇÕES SUAVES */
.elementor-widget {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.elementor-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25) !important;
}

.elementor-15 .elementor-element.elementor-element-c3dccb1 .elementor-button{
    width: 200px;
}