/* Base Styles */
:root {
    --primary-color: #000000;
    --secondary-color: #0066cc; /* Azul do Pan */
    --accent-color: #0099ff; /* Azul claro do Pan */
    --accent-blue: #003366; /* Azul escuro do Pan */
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --medium-gray: #999999;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-gray);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
}

ul {
    list-style-type: none;
    margin-bottom: 1.5rem;
}

ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

ul li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* Header */
header {
    padding: 30px 0;
    background-color: var(--white);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 400px;
    height: auto;
}

/* Intro Section */
#intro {
    text-align: center;
    padding: 60px 0;
}

#intro h1 {
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color), var(--accent-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

#intro h2 {
    color: var(--medium-gray);
    font-weight: 400;
}

/* Content Blocks */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color), var(--accent-blue));
}

.content-block {
    margin-bottom: 40px;
}

.highlight-block {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid;
    border-image: linear-gradient(to bottom, var(--secondary-color), var(--accent-color), var(--accent-blue)) 1;
}

.emphasis {
    font-weight: 600;
    color: var(--primary-color);
}

.quote {
    font-style: italic;
    color: var(--accent-color);
    border-left: 3px solid var(--secondary-color);
    padding-left: 15px;
}

.steps {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.big-quote {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.center {
    text-align: center;
}

/* Highlight for specific elements */
.highlight {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1em;
}

/* CTA Section */
.btn-primary {
    display: inline-block;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 20px;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--white);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.logo-small {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 5px;
}

.contact-info {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .logo {
        max-width: 300px;
    }
    
    .big-quote {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }
    
    h1 {
        font-size: 1.7rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .highlight-block {
        padding: 20px;
    }
    
    .big-quote {
        font-size: 1.1rem;
    }
}

.highlight-special {
    font-weight: 700;
    font-size: 1.1em;
    color: var(--secondary-color);
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.1), rgba(0, 153, 255, 0.1));
    padding: 2px 6px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    display: inline-block;
    transform: translateY(-1px);
    border-bottom: 2px solid var(--secondary-color);
}
