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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-brand h2 {
    color: #04046c;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #04046c;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 4, 108, 0.6);
}

.slide-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.mobile-break {
    display: none;
}

.btn-primary {
    display: inline-block;
    background: #04046c;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(4, 4, 108, 0.3);
    position: relative;
    z-index: 100;
}

.btn-primary:hover {
    background: #d4040c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 4, 12, 0.4);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.hero-nav button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1.2rem;
}

.hero-nav button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: white;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #04046c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Sobre Section */
.sobre {
    background: #f8f9fa;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-text h2 {
    font-size: 2.5rem;
    color: #04046c;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.sobre-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-item h3 {
    font-size: 1.5rem;
    color: #d4040c;
    font-weight: 700;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.stat-item p {
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
}

.sobre-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Produtos Section */
.produtos-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.departamento-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.departamento-item:hover {
    transform: translateY(-10px);
}

.departamento-item.reverse {
    direction: rtl;
}

.departamento-item.reverse > * {
    direction: ltr;
}

.departamento-image {
    width: 100%;
}

.departamento-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.departamento-content {
    padding: 4rem;
}

.departamento-content h3 {
    font-size: 2.5rem;
    color: #04046c;
    margin-bottom: 2rem;
    font-weight: 600;
}

.departamento-content p {
    color: #666;
    line-height: 2;
    font-size: 1.3rem;
}
}

/* Ofertas Section */
.ofertas {
    background: #f8f9fa;
}

.tabloide-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.tabloide-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: none;
    transition: transform 0.3s ease;
}

.tabloide-card:hover {
    /* Removido o transform para não subir o card inteiro */
}

.tabloide-card .btn-primary:hover {
    background: #d4040c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 4, 12, 0.4);
}

.tabloide-card .fas.fa-file-pdf {
    font-size: 3rem;
    color: #d4040c;
    margin-bottom: 1.5rem;
}

.tabloide-card .btn-primary i {
    color: white;
}

.tabloide-card h3 {
    color: #04046c;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.5rem;
}

.tabloide-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tabloide-card .btn-primary {
    padding: 15px 30px !important;
    font-size: 1rem !important;
    display: inline-block !important;
}



.horario {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.horario h3 {
    color: #04046c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.horario i {
    color: #d4040c;
    margin-right: 10px;
}

/* Contato Section */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1rem 0;
}

.endereco-card,
.horario-card {
    grid-column: 1 / -1;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.info-card i {
    font-size: 2rem;
    color: #d4040c;
    margin-bottom: 1rem;
}

.info-card h4 {
    color: #04046c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-card p {
    color: #666;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #04046c;
}

.contact-form textarea {
    min-height: 280px;
    resize: vertical;
}

.message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    display: none;
    text-align: center;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
    background: #04046c;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #d4040c;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4040c;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #d4040c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: #ff1744;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #d4040c;
    color: #ccc;
}

/* Otimização de imagens para mobile */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }
    
    .slide {
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: scroll !important;
    }
    
    .departamento-image img,
    .sobre-image img {
        height: 250px !important;
        object-fit: cover;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 1rem 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0;
        text-align: center;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        color: #333;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .slide-content {
        padding: 1rem;
        max-width: 90%;
    }

    .slide-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .slide-content p {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    .slide-content .btn-primary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .mobile-break {
        display: inline;
    }

    .sobre-grid,
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-cards-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
    }

    .contact-form textarea {
        min-height: 200px;
    }

    .stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .produtos-grid,
    .ofertas-grid {
        grid-template-columns: 1fr;
    }
    
    .departamento-item,
    .departamento-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .departamento-content {
        padding: 2rem;
    }
    
    .departamento-content h3 {
        font-size: 2rem;
    }
    
    .departamento-content p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}
/* Trabalhe Conosco Page */
.trabalhe-conosco {
    padding: 8rem 0 4rem 0;
    background: #f8f9fa;
}

.trabalhe-conosco .section-header h1 {
    color: #04046c;
}

.trabalhe-grid {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.info-trabalhe h2 {
    color: #04046c;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.beneficios {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.beneficio {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.beneficio i {
    font-size: 2rem;
    color: #d4040c;
    margin-top: 0.5rem;
}

.beneficio h3 {
    color: #04046c;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.beneficio p {
    color: #666;
    line-height: 1.6;
}

.form-curriculo {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
}

.form-curriculo h2 {
    color: #04046c;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #04046c;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #04046c;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group input[type="file"] {
    padding: 10px;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .trabalhe-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .beneficio {
        flex-direction: column;
        text-align: center;
    }
    
    .beneficio i {
        margin-top: 0;
    }
}
