@import url('style.css');

/* Reset e Variáveis CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #e31e24;
    --dark-red: #c41e24;
    --light-red: #f5f5f5;
    --light-gray: #f8f9fa;
    --dark-gray: #333;
    --text-color: #666;
    --white: #ffffff;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
    --container-max-width: 1200px;
    --section-padding: 60px 0;
    --mobile-padding: 40px 0;
    --border-radius: 10px;
    --transition: all 0.3s ease;
}

/* Base Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    padding-top: 30px;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-red);
    margin: 1rem auto 0;
}

/* Hero Section MELHORADA */
.hero-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    text-align: center;
    padding: 40px 0 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

/* Padrão de fundo para o Hero */
.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

/* Badge do Hero */
.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Título do Hero com duas linhas */
.hero-title {
    margin-bottom: 1.5rem;
}

.hero-line-1 {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.hero-line-2 {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Estatísticas do Hero */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Onda decorativa do Hero */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
}

/* Nossa História Section */
.historia-section {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.historia-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.historia-text h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.historia-text h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-red);
    margin: 1rem auto 0;
}

.historia-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
    line-height: 1.8;
}

.historia-image {
    flex: 1;
    text-align: center;
}

.historia-image picture {
    display: block;
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
}

.historia-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.historia-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* NOVA Seção Fundador */
.fundador-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.fundador-header{
    text-align: center;
    margin-bottom: 3rem;
}


.fundador-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.fundador-main{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.fundador-image {
    display: block;
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: auto;
}

.fundador-image picture {
    display: block;
}

.fundador-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.fundador-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-red);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

.fundador-text {
    text-align: center;
    max-width: 600px;
}

.fundador-label {
    color: var(--primary-red);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.fundador-text h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin: 0.5rem 0;
}

.fundador-text h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: normal;
    margin-bottom: 2rem;
}

.fundador-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
    margin-top: 30px;
}

.fundador-quote {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    position: relative;
}

.fundador-quote i {
    color: var(--primary-red);
    font-size: 2rem;
    position: absolute;
    top: 1rem;
    left: 1rem;
    opacity: 0.3;
}

.fundador-quote p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.fundador-quote cite {
    display: block;
    text-align: right;
    color: var(--primary-red);
    font-weight: bold;
    font-style: normal;
}

/* Missão, Visão e Valores Section */
.mvv-section {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.mvv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.mvv-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.mvv-icon {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.mvv-card h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.mvv-card p {
    font-size: 1rem;
    line-height: 1.7;
}

/* Diferenciais Section */
.diferenciais-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.diferencial-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.diferencial-item:hover {
    background-color: var(--light-gray);
    transform: translateY(-3px);
}

.diferencial-icon {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.diferencial-item h3 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.diferencial-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Call to Action Section */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-red);
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Design - Mobile First */

/* Tablet */
@media (min-width: 768px) {
    /* Hero melhorado */
    .hero-section {
        min-height: 600px;
        padding: 100px 0 0;
    }
    
    .hero-line-1 {
        font-size: 3rem;
    }
    
    .hero-line-2 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }

    .hero-stats{
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 600px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .hero-wave svg {
        height: 80px;
    }
    
    /* História */
    .historia-content {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .historia-text {
        flex: 1;
        padding-right: 2rem;
    }
    
    .historia-text h2 {
        text-align: left;
    }
    
    .historia-text h2::after {
        margin: 1rem 0 0 0;
    }
    
    /* Fundador */
    .fundador-image {
        /* flex-direction: row; */
        align-items: center;
        gap: 4rem;
    }

    .fundador-text {
        flex: 1;
        order: 2;
        text-align: left;
    }

    .fundador-header{
        text-align: left;
    }
    
    .fundador-text h2 {
        font-size: 3rem;
        text-align: left;
    }
    
    .fundador-text h3 {
        font-size: 1.4rem;
    }

    .fundador-content { 
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 4rem;
        text-align: left;
    }

    .fundador-main {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
    }

    .fundador-bio {
        text-align: justify;
    }

    .fundador-image {
        flex: 0 0 350px;
        order: 1;
    }

    /* Outros */
    .mvv-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .historia-content { 
        flex-direction: row;
        align-items: flex-start;
    }
    
    .historia-text {
        flex: 1;
        padding-right: 2rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    /* Hero */
    .hero-line-1 {
        font-size: 4rem;
    }
    
    .hero-line-2 {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
    }

    .hero-stats{
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        max-width: 800px;
    }
    
    /* Fundador */
    .fundador-content {
        gap: 5rem;
    }
    
    .fundador-image {
        max-width: 400px;
    }
    
    .fundador-quote {
        padding: 2.5rem;
    }
    
    /* Outros */
    .mvv-card {
        padding: 2.5rem;
    }

    .mvv-grid {
        gap: 4rem;
    }
    
    .diferenciais-grid{
        gap: 3rem;
    }

    .diferencial-item {
        padding: 2.5rem 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Animações no Hero */
.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.hero-badge {
    animation-delay: 0.2s;
}

.hero-title {
    animation-delay: 0.4s;
}

.hero-description {
    animation-delay: 0.6s;
}

.hero-stats {
    animation-delay: 0.8s;
}

/* Hover effect para estatísticas */
.stat-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

/* Scroll animations (optional - requires JavaScript) */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Print styles */
@media print {
    .hero-section,
    .cta-section {
        background: var(--white) !important;
        color: var(--dark-gray) !important;
    }
    
    .hero-bg-pattern,
    .hero-wave {
        display: none;
    }
    
    .btn-cta {
        display: none;
    }
    
    .section-title::after {
        display: none;
    }
    
    .historia-text h2::after {
        display: none;
    }
}
    .fundador-text {
        text-align: left;
        flex: 1;
    }
    
    .fundador-bio {
        text-align: left;
    }
    
    /* Outros */
    .mvv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }

/* Desktop */
@media (min-width: 1024px) {
    :root {
        --section-padding: 80px 0;
        --mobile-padding: 60px 0;
    }
    
    /* Hero */
    .hero-section {
        min-height: 700px;
    }
    
    .hero-line-1 {
        font-size: 3.5rem;
    }
    
    .hero-line-2 {
        font-size: 3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 700px;
    }
    
    .hero-wave svg {
        height: 100px;
    }

    .mvv-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

      /* Diferenciais - 4 colunas */
    .diferenciais-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    /* História - mais espaçamento */
    .historia-content {
        gap: 4rem;
    }
    
    .historia-text {
        padding-right: 3rem;
    }
    
    /* Fundador - mais espaçamento */
    .fundador-content {
         flex-direction: row !important;
        align-items: flex-start;
        gap: 4rem;
    }

    .fundador-image{
        flex: 0 0 350px;
        max-width: 400px;
    }

    .fundador-image img{
        box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3), 
                    0 0 0 3px rgba(227, 30, 36, 0.1),
                    0 20px 40px rgba(0,0,0,0.1);
    }

    .fundador-text { 
        flex: 1;
        order: 2;
        text-align: left;
    }

    .fundador-image img {
         box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
    }
}

@media (max-width: 767px) {
    /* Hero stats - stack vertical em mobile */
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
    }
    
    /* MVV Grid - 1 coluna em mobile */
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Diferenciais - 1 coluna em mobile */
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Fundador e História - coluna em mobile */
    .fundador-content,
    .historia-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .fundador-text,
    .historia-text {
        text-align: center;
        padding-right: 0;
    }
    
    .fundador-text h2::after,
    .historia-text h2::after {
        margin: 1rem auto 0;
    }

    .fundador-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(227, 30, 36, 0.25),     /* Sombra vermelha principal */
        0 0 0 2px rgba(227, 30, 36, 0.1),        /* Borda sutil vermelha */
        0 15px 35px rgba(0,0,0,0.1);             /* Sombra preta para profundidade */
    transition: all 0.3s ease;
}

.fundador-image img:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(227, 30, 36, 0.35),     /* Sombra vermelha mais intensa no hover */
        0 0 0 3px rgba(227, 30, 36, 0.15),       /* Borda vermelha mais visível */
        0 25px 50px rgba(0,0,0,0.15);            /* Sombra preta mais intensa */
}

.historia-section{
    padding: 20px;
}
}