/*
Theme Name: Hello Elementor Vogt
Description: Tema filho do Hello Elementor customizado para Vogt
Author: Vinicius
Template: hello-elementor
Version: 1.0.0
License: GNU General Public License v3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: hello-elementor-vogt
*/

/* Importa o CSS do tema pai */
@import url("../hello-elementor/style.css");

/* CSS GLOBAL - REMOVE UNDERLINES DE TODOS OS LINKS */
a {
    text-decoration: none !important;
}

a:hover {
    text-decoration: none !important;
}

/* ESTILOS CUSTOMIZADOS PARA STUDIO VOGT */

/* Reset e estilos básicos */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    color: #333;
    background-color: #fff;
}

section {
    padding: 80px 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

svg {
    position: absolute;
    width: 0;
    height: 0;
}

/* --- HERO COM CURVA --- */
.hero {
    position: relative;
    height: 110vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0;
    clip-path: url(#hero-curve);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-content {
    position: absolute;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5em;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    margin: 0; 
}

.scroll-prompt {
    position: absolute;
    bottom: 15vh;
    font-size: 0.9em;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.prompt-text {
    font-weight: 100; /* Grossura fina igual às linhas do mouse (stroke-width: 1) */
}

.prompt-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
}

.mouse-icon {
    opacity: 0.9;
    animation: mouseScroll 2s infinite;
    height: 3em;
    width: auto;
}

@keyframes mouseScroll {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.9;
    }
    50% {
        transform: translateY(3px);
        opacity: 0.6;
    }
}

.after-hero {
    padding-top: 120px;
    margin-top: -10vh;
    position: relative;
    z-index: -1;
}

/* --- SEÇÕES DE CONTEÚDO --- */
.centered-text-block { 
    text-align: center; 
    max-width: 700px; 
    margin: 0 auto; 
}

.centered-text-block h2 { 
    font-size: 2.5em; 
}

.centered-text-block p { 
    font-size: 1.1em; 
    line-height: 1.6; 
}

.four-grid-layout { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
    text-align: center; 
    margin-bottom: 20px; 
}

.grid-item { 
    position: relative; 
    background-color: #e9e9e9; 
    overflow: hidden;
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: scale(1.02);
}

.grid-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.grid-item a:hover {
    color: inherit;
}

.grid-item img { 
    width: 100%; 
    height: 500px; 
    object-fit: cover; 
    display: block; 
    transition: transform 0.3s ease;
}

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

.grid-item h3 { 
    position: absolute; 
    bottom: 20px; 
    left: 50%; 
    transform: translateX(-50%); 
    color: white; 
    font-size: 1.8em; 
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6); 
    margin: 0; 
    transition: transform 0.3s ease;
}

.grid-item:hover h3 {
    transform: translateX(-50%) translateY(-5px);
}

.full-width-image-break { 
    padding: 0; 
    height: 60vh; 
    background-image: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed; 
}

.feature-section { 
    background-color: #f9f9f9; 
    text-align: center; 
}

.cta-button { 
    display: inline-block; 
    margin-top: 25px; 
    padding: 15px 30px; 
    border: 2px solid #333; 
    color: #333; 
    text-decoration: none; 
    font-weight: bold; 
}

.cta-button:hover {
    background-color: #333;
    color: white;
    transition: all 0.3s ease;
}

/* --- RODAPÉ --- */
footer { 
    background-color: #111; 
    color: #aaa; 
    padding: 60px 5%; 
    text-align: center; 
}

.footer-nav { 
    list-style: none; 
    padding: 0; 
    margin: 30px 0; 
    display: flex; 
    justify-content: center; 
    gap: 30px; 
}

.footer-nav a { 
    color: white; 
    text-decoration: none; 
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }
    
    .four-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
}

/* Ocultar elementos do tema pai que podem interferir */
.site-header {
    display: none !important;
}

.hello-elementor-vogt-theme .site-header {
    display: none !important;
}
