/* Base Styles and Variables */
:root {
    --primary-color: #1e6091;
    --secondary-color: #3ca6a6;
    --accent-color: #62ae5e;
    --light-color: #f5f5f5;
    --dark-color: #2a2d34;
    --text-color: #333333;
    --light-text: #ffffff;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

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

.section-padding {
    padding: 100px 0;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 90%;
    width: 700px;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 12px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-large {
    width: 100%;
    padding: 15px 28px;
    font-size: 1.1rem;
    text-align: center;
}

/* Header */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: relative;
}

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

.logo a {
    text-decoration: none;
    display: inline-block;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

/* O logo PNG só será exibido se o SVG não puder ser renderizado */
.logo-fallback {
    display: none;
}

/* Fallback para navegadores antigos que não suportam SVG */
.no-svg .logo-image {
    display: none;
}

.no-svg .logo-fallback {
    display: block;
}

/* Hamburger Button */
.hamburger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1010;
    position: relative;
    width: 40px;
    height: 40px;
    outline: none;
}

.hamburger-button:focus {
    outline: 2px dotted var(--primary-color);
    outline-offset: 3px;
}

.hamburger-button span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 6px 0;
    background-color: var(--primary-color);
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    border-radius: 2px;
}

.hamburger-button.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: var(--secondary-color);
}

.hamburger-button.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger-button.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background-color: var(--secondary-color);
}

/* Menu Background - Replacing full overlay */
.mobile-nav-items::before {
    content: '';
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: -1;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    height: 100%;
}

.desktop-nav ul li {
    margin-left: 30px;
    display: flex;
    align-items: center;
}

.desktop-nav ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    height: 100%;
    padding: 5px 0;
    position: relative;
}

.desktop-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.desktop-nav ul li a:hover::after,
.desktop-nav ul li a:focus::after,
.desktop-nav ul li a.active::after {
    width: 100%;
}

/* Mobile Navigation */
.mobile-nav-items {
    display: block;
    visibility: hidden;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    z-index: 1002;
    padding: 80px 20px 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
    overflow-y: auto;
    opacity: 0;
}

.mobile-nav-items.active {
    right: 0;
    visibility: visible;
    opacity: 1;
}

.mobile-nav-items ul {
    list-style: none;
    padding: 0;
}

.mobile-nav-items ul li {
    margin: 20px 0;
}

.mobile-nav-items ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1.2rem;
    display: block;
    padding: 10px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-nav-items ul li:last-child a {
    border-bottom: none;
}

.mobile-nav-items ul li a:hover,
.mobile-nav-items ul li a:focus {
    color: var(--primary-color);
    padding-left: 5px;
}

.mobile-nav-items ul li a.btn-primary {
    margin-top: 15px;
    text-align: center;
    border-bottom: none;
    color: var(--light-text);
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 20px;
}

.mobile-nav-items ul li a.btn-primary:hover,
.mobile-nav-items ul li a.btn-primary:focus {
    color: var(--light-text);
    background-color: var(--secondary-color);
    padding-left: 0;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.desktop-nav ul li a.btn-primary {
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    margin-top: 0;
    line-height: normal;
    color: var(--light-text);
}

.desktop-nav ul li a.btn-primary:hover,
.desktop-nav ul li a.btn-primary:focus {
    color: var(--light-text);
}

/* Hero Section */
#hero {
    padding-top: 150px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    color: var(--light-text);
}

/* Otimizações de vídeo */
@media (prefers-reduced-motion: reduce) {
    .hero-background {
        display: none;
    }
    
    #hero {
        background-image: url('img/poster-image.jpg');
        background-size: cover;
        background-position: center;
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--light-text);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: var(--light-text);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.counter-container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
    color: var(--text-color);
}

.counter {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 10px 0;
}

.counter-note {
    font-size: 0.9rem;
    margin-bottom: 0;
    font-style: italic;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image-placeholder, .image-placeholder {
    background-color: #e9ecef;
    border-radius: var(--border-radius);
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.placeholder-text {
    color: #adb5bd;
    font-style: italic;
}

.member-role {
    color: var(--secondary-color);
    font-weight: 600;
}

.about-message {
    max-width: 800px;
    margin: 0 auto;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.quote-author {
    font-style: normal;
    font-weight: 600;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.step:hover {
    transform: scale(1.03);
}

.step-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Partners and Services Section */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.free-service {
    background-color: #f8f9fa;
    border: 2px solid var(--accent-color);
}

.free-service h3 {
    color: var(--accent-color);
}

.emphasis {
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 15px;
    color: var(--accent-color);
}

.bank-partners {
    text-align: center;
}

.bank-partners h3 {
    margin-bottom: 30px;
}

.bank-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.bank-logo-container {
    width: 150px;
    height: 100px;
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.bank-logo-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.bank-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: var(--transition);
}

.bank-logo-container:hover .bank-logo {
    filter: grayscale(0%);
}

.bank-logo-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: var(--dark-color);
    transition: var(--transition);
}

.bank-logo-placeholder:hover {
    background-color: #e9ecef;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.benefit:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.testimonials {
    max-width: 800px;
    margin: 0 auto;
}

.testimonials h3 {
    text-align: center;
    margin-bottom: 30px;
}

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    position: relative;
}

.testimonial:before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -15px;
    left: 10px;
    color: rgba(0, 0, 0, 0.05);
    font-family: serif;
}

.testimonial-author {
    text-align: right;
    font-weight: 600;
}

/* Contact Section */
.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.free-service-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.free-service-banner svg {
    flex-shrink: 0;
    stroke-width: 2.5;
}

.free-service-text h3 {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.free-service-text p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.95;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    background-color: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: var(--border-radius);
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #e63946;
}

.validation-error {
    color: #e63946;
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 400;
}

.success-message {
    background-color: #62ae5e;
    color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    animation: fadeIn 0.5s ease-in;
}

.success-message h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.error-message {
    background-color: #e63946;
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    text-align: center;
    animation: fadeIn 0.5s ease-in;
}

.error-message h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-note {
    font-size: 0.9rem;
    margin-top: 20px;
    color: #6c757d;
}

/* Email Confirmation Page Styles */
.confirmation-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px; /* Account for fixed header */
}

.confirmation-content {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.confirmation-icon {
    margin-bottom: 20px;
}

.confirmation-icon i {
    font-size: 5rem;
}

.confirmation-icon .fa-check-circle {
    color: var(--accent-color);
}

.confirmation-icon .fa-spinner {
    color: var(--primary-color);
    animation: spin 1s linear infinite;
}

.confirmation-icon .fa-exclamation-triangle {
    color: #e74c3c;
}

.confirmation-content h1 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.confirmation-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.confirmation-user-info {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 25px;
    margin: 30px 0;
    text-align: left;
}

.confirmation-user-info h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.user-info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-item {
    margin-bottom: 10px;
}

.info-item strong {
    color: var(--dark-color);
    font-weight: 600;
}

.confirmation-next-steps {
    text-align: left;
    margin: 30px 0;
}

.confirmation-next-steps h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.confirmation-next-steps ul {
    list-style: none;
    padding: 0;
}

.confirmation-next-steps li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.confirmation-next-steps li i {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.confirmation-buttons {
    margin: 30px 0;
}

.confirmation-buttons .btn-secondary {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: var(--transition);
    display: inline-block;
    border: 1px solid var(--primary-color);
}

.confirmation-buttons .btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.confirmation-buttons .btn-retry {
    background-color: var(--secondary-color);
    color: var(--light-text);
    margin-right: 10px;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: var(--transition);
    display: inline-block;
}

.confirmation-buttons .btn-retry:hover {
    background-color: #329393;
}

.confirmation-contact {
    margin-top: 30px;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.confirmation-contact p {
    margin-bottom: 5px;
}

.confirmation-contact i {
    color: var(--secondary-color);
    margin-right: 5px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
    padding-left: 0;
}

.footer-links li, .footer-legal li {
    margin-bottom: 10px;
}

.footer-links a, .footer-legal a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--accent-color);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color);
}

/* Corrigir cor dos números de telefone em dispositivos móveis */
.footer-contact a,
.footer-contact a:link,
.footer-contact a:visited,
.footer-contact p a,
.footer-contact p a:link,
.footer-contact p a:visited,
.confirmation-contact a,
.confirmation-contact a:link,
.confirmation-contact a:visited {
    color: white;
    text-decoration: none;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-content h2, .footer-content h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-logo p {
    color: #ddd;
    font-size: 0.9rem;
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}

/* Media Queries for Confirmation Page */
@media (max-width: 768px) {
    .free-service-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .free-service-text h3 {
        font-size: 1.3rem;
    }
    
    .free-service-text p {
        font-size: 0.95rem;
    }
    
    .confirmation-content {
        padding: 25px;
    }
    
    .confirmation-icon .fa-check-circle {
        font-size: 4rem;
    }
    
    .confirmation-content h1 {
        font-size: 2rem;
    }
    
    .confirmation-message {
        font-size: 1rem;
    }
    
    .user-info-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .confirmation-content {
        padding: 20px;
    }
    
    .confirmation-icon .fa-check-circle {
        font-size: 3.5rem;
    }
    
    .confirmation-content h1 {
        font-size: 1.8rem;
    }
    
    .confirmation-user-info,
    .confirmation-next-steps {
        padding: 15px;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    #hero {
        padding-top: 120px;
        min-height: 80vh;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        max-width: 95%;
        width: auto;
    }
    
    header .container {
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo-image {
        height: 40px; /* Menor para telas médias */
    }
    
    /* Mostrar botão hamburger e ocultar navegação desktop */
    .hamburger-button {
        display: block;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav-items {
        display: block;
    }
    
    .cta-container {
        align-items: center;
    }
    
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo-img {
        height: 40px;
        margin: 0 auto 15px;
    }
    
    .footer-links, .footer-legal, .footer-contact {
        text-align: center;
    }
    
    /* Bank logos responsive */
    .bank-logos {
        gap: 20px;
    }
    
    .bank-logo-container {
        width: 120px;
        height: 80px;
        padding: 12px;
    }
}

@media screen and (min-width: 992px) {
    .hero-content {
        max-width: 60%;
    }
    
    /* Garantir que o menu desktop esteja sempre visível em telas grandes */
    .desktop-nav {
        display: flex !important;
    }
    
    .hamburger-button,
    .mobile-nav-items,
    .menu-overlay {
        display: none !important;
    }
}

/* Dispositivos móveis muito pequenos */
@media screen and (max-width: 480px) {
    .section-subtitle {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 10px;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    #hero {
        min-height: 100vh;
    }
    
    .logo-image {
        height: 35px; /* Ainda menor para dispositivos móveis */
    }
    
    /* Menu Mobile aprimorado para dispositivos muito pequenos */
    .mobile-nav-items {
        width: 85%;
        max-width: 280px;
    }
    
    .page-header {
        padding: 130px 0 40px;
        min-height: 220px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header .section-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .mobile-nav-items ul li a {
        font-size: 1.1rem;
        padding: 8px 0;
    }
    
    .mobile-nav-items ul li a.btn-primary {
        margin-top: 15px;
        margin-bottom: 5px;
        text-align: center;
        border-bottom: none;
        color: var(--light-text);
        display: block;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        padding: 12px 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    /* Bank logos for very small screens */
    .bank-logos {
        gap: 15px;
    }
    
    .bank-logo-container {
        width: 100px;
        height: 70px;
        padding: 10px;
    }
}

/* Denúncias Page Styles */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 160px 0 60px;
    text-align: center;
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.page-header h1 {
    color: white;
    margin-bottom: 15px;
    font-size: 3.5rem;
    font-weight: 700;
}

.page-header .section-subtitle {
    color: white;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.report-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.report-description ul {
    margin: 20px 0;
    padding-left: 20px;
}

.report-description ul li {
    margin-bottom: 10px;
    position: relative;
}

.report-form {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-success,
.form-error {
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: var(--border-radius);
}

.form-success i,
.form-error i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.form-success i {
    color: var(--success-color);
}

.form-error i {
    color: var(--error-color);
}

.form-success h3,
.form-error h3 {
    margin-bottom: 15px;
}

.form-success p,
.form-error p {
    margin-bottom: 25px;
}

#report-form .btn-primary {
    margin-top: 10px;
}

@media screen and (max-width: 992px) {
    .report-content {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 140px 0 40px;
        min-height: 240px;
    }
    
    .page-header h1 {
        font-size: 2.8rem;
    }
}

/* FAQ Section Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    background-color: #ffffff;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px 25px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

.faq-answer p {
    padding: 20px 25px;
    margin: 0;
    line-height: 1.7;
    color: var(--text-color);
}

.faq-answer strong {
    color: var(--primary-color);
    font-weight: 600;
}

.faq-answer ul {
    padding: 0 25px 20px 50px;
    margin: 0;
}

.faq-answer li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: var(--text-color);
}

/* FAQ Responsive Design */
@media screen and (max-width: 768px) {
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .faq-question {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background-color: #20ba5a;
}

.whatsapp-float i {
    font-size: 30px;
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* WhatsApp Button Responsive */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float i {
        font-size: 26px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Hide tooltip on mobile */
    }
}

@media screen and (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        font-size: 24px;
    }
}
