/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    background: white;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav {
    display: flex;
    gap: 0;
}

.nav-item {
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
    color: #333;
    transition: all 0.3s ease;
    margin: 0 2px;
    background-color: transparent;
}

.nav-item:hover {
    color: #2196F3;
}

.nav-item:active,
.nav-item.active {
    color: #2196F3;
    background-color: rgba(33, 150, 243, 0.1);
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav-dropdown > .nav-item::after {
    content: '\25BC';
    font-size: 0.7rem;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover > .nav-item::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}

.dropdown-item:hover {
    background: #f5f5f5;
    border-left-color: #2196F3;
    padding-left: 25px;
}

.dropdown-item.active {
    background: #e3f2fd;
    color: #2196F3;
    border-left-color: #2196F3;
    font-weight: bold;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Por que fazemos Section */
.por-que-fazemos {
    padding: 60px 0;
    background-color: #fff;
}

.por-que-fazemos h2 {
    text-align: center;
    color: #2196F3;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
}

.por-que-fazemos h2::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #2196F3;
}

.por-que-fazemos .content {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

.por-que-fazemos p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Missão, Visão, Valores Section */
.mvv-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

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

.mvv-card {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.mvv-background {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.mvv-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.mvv-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.visao .mvv-content {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
}

.mvv-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.mvv-content p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
}

.mvv-content ul {
    list-style: none;
}

.mvv-content li {
    margin-bottom: 8px;
    font-size: 1rem;
    position: relative;
    padding-left: 20px;
}

.mvv-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.9), rgba(25, 118, 210, 0.9));
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer-background {
    background-image: url('images/rodapé.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.footer-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(33, 150, 243, 0.8);
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.contact-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.contact-text p {
    margin: 0;
    font-size: 0.9rem;
}

.social-media {
    text-align: center;
}

.social-media p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* Cores dos ícones das redes sociais */
.social-icons a:nth-child(1) svg {
    color: #0077B5;
    fill: #0077B5;
}

.social-icons a:nth-child(2) svg {
    color: #1877F2;
    fill: #1877F2;
}

.social-icons a:nth-child(3) svg {
    color: #E1306C;
    fill: none;
    stroke: #E1306C;
}

/* Responsividade */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        margin-top: 120px;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .por-que-fazemos h2 {
        font-size: 2rem;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo h2 {
        font-size: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-item {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .por-que-fazemos {
        padding: 40px 0;
    }
    
    .mvv-section {
        padding: 40px 0;
    }
    
    .mvv-content {
        padding: 20px;
    }
    
    .mvv-content h3 {
        font-size: 1.5rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
}


/* Estilos para páginas internas */
.hero-overlay {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero-text {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
    text-transform: lowercase;
}

/* Seção de conteúdo */
.content-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.service-section {
    margin-bottom: 50px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-section h2 {
    color: #2196F3;
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 3px solid #2196F3;
    padding-bottom: 10px;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
    color: #555;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Estilos para página Gestão */
.intro-text {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

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

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.service-card h3 {
    color: #2196F3;
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.4;
}

/* Estilos para página Negócios */
.business-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.business-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.business-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.business-card h3 {
    color: #2196F3;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.business-card p {
    color: #555;
    line-height: 1.6;
}

/* Estilos para página Contato */
.contact-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: #2196F3;
    margin-bottom: 30px;
    font-size: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    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: #2196F3;
}

.submit-btn {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.contact-details {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-details h2 {
    color: #2196F3;
    margin-bottom: 30px;
    font-size: 2rem;
}

.contact-item-large {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-icon-large {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(1458%) hue-rotate(204deg) brightness(95%) contrast(101%);
}

.contact-item-large h3 {
    color: #2196F3;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-item-large p {
    color: #555;
    margin: 0;
    line-height: 1.4;
}

.social-section {
    margin-top: 40px;
    text-align: center;
}

.social-section h3 {
    color: #2196F3;
    margin-bottom: 20px;
}

.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon-large {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: transform 0.3s ease;
    filter: brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(1458%) hue-rotate(204deg) brightness(95%) contrast(101%);
}

.social-icon-large:hover {
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #2196F3;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Estilos para Widget Social (Facebook) */
.footer-widget-social {
    background: white;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    width: 250px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.footer-widget-social .widget-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-widget-social .widget-logo-icon {
    width: 40px;
    height: 40px;
    background: #2196F3;
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
}

.footer-widget-social .widget-name {
    font-weight: bold;
    color: #333;
    font-size: 1rem;
}

.footer-widget-social .widget-followers {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.footer-widget-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-widget-buttons button {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.widget-btn-follow {
    background: #2196F3;
    color: white;
}

.widget-btn-follow:hover {
    background: #1976D2;
}

.widget-btn-share {
    background: #f0f0f0;
    color: #333;
}

.widget-btn-share:hover {
    background: #e0e0e0;
}

/* Responsividade para páginas internas */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text {
        left: 20px;
        bottom: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid,
    .business-services {
        grid-template-columns: 1fr;
    }
    
    .service-section,
    .contact-form,
    .contact-details,
    .intro-text {
        padding: 20px;
    }
    
    .contact-item-large {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .footer-widget-social {
        width: 100%;
        margin-top: 20px;
    }
    
    .footer-info {
        grid-template-columns: 1fr !important;
    }
}

/* Estilos para mensagens de formulário */
.form-message {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: bold;
    animation: slideDown 0.3s ease;
}

.form-message-success {
    background-color: #4CAF50;
    color: white;
    border-left: 4px solid #388E3C;
}

.form-message-error {
    background-color: #f44336;
    color: white;
    border-left: 4px solid #d32f2f;
}

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

