/*
Theme Name: Método Conecta
Theme URI: https://example.com/metodo-conecta
Author: Rubens Siaróm
Author URI: https://example.com
Description: Tema customizado para a landing page do Método Conecta
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: metodo-conecta
*/

/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Seção Hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-brand {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #FF6B35;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: #FF6B35;
    margin-bottom: 20px;
    transform: rotate(-2deg);
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    color: #001F5C;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.hero-title .conecta {
    display: block;
    color: #001F5C;
}

.hero-tagline {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-tagline::before {
    content: '✨';
    font-size: 28px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
}

/* Divisor de Seção */
.section-divider {
    width: 100%;
    height: 80px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0 Q300,60 600,30 T1200,0 L1200,120 L0,120 Z" fill="%23ffffff"/></svg>') no-repeat;
    background-size: cover;
    margin-top: -1px;
}

/* Seção CTA */
.cta-section {
    background: #fff;
    padding: 100px 20px;
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-question {
    font-size: 48px;
    font-weight: 900;
    color: #001F5C;
    line-height: 1.3;
    margin-bottom: 40px;
}

.cta-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-tagline {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-content {
        padding: 30px;
    }
    
    .cta-question {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-tagline {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .cta-question {
        font-size: 24px;
    }
}

