/* css/style.css */

* {
    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;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo img {
    height: 70px; /* Aumentado de 50px para 70px */
    width: auto;
    background: transparent; /* Garante que o fundo da logo seja transparente */
}

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

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

.nav-link:hover {
    color: #3498db;
}

.partner-btn {
    background: #001f3f; /* Cor azul combinando com a logo */
    color: white !important;
    padding: 10px 20px;
    border-radius: 15px;
    transition: background 0.3s ease;
}

.partner-btn:hover {
    background: #2980b9;
}

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

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

/* Hero Section */
.hero {
    margin-top: 80px;
    height: 70vh;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}



/* Animação de zoom reverso para todas as imagens do carrossel */
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 5s ease-out;
}

.carousel-slide.active img {
    transform: scale(1); /* Zoom reverso (redução) */
}

.carousel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 2;
  padding: 50px 80px;
  border-radius: 16px;
  background: rgba(5, 20, 35, 0.55); /* vidro escuro com transparência */
  backdrop-filter: blur(8px); /* efeito sofisticado de desfoque */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4); /* profundidade leve */
  max-width: 1000px;
  width: 90%;
  animation: fadeInUp 1.3s ease;
}

/* ===== Título ===== */
.carousel-content h1 {
  font-family: "Sora", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.3;
  color: #ffffff;
  text-transform: none;
  letter-spacing: 0.5px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding-bottom: 8px;
}

/* ===== Parágrafo ===== */
.carousel-content p {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  color: #e4e9ee;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

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

.indicator.active {
    background: white;
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 4;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

.carousel-arrow i {
    color: white;
    font-size: 1.2rem;
}

/* Currency Section */
.currency-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.currency-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #2c3e50;
}

.currency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

.currency-item:hover {
    transform: scale(1.05);
}

.currency-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.currency-symbol {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.currency-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.currency-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #2c3e50;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: scale(1.08);
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #001F3F;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.value-item i {
    font-size: 3rem;
    color: #001F3F;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.value-item h3 {
    margin-bottom: 15px;
    color: #001F3F;
    position: relative;
    z-index: 2;
    font-weight: 700;
}

.value-item p {
    position: relative;
    z-index: 2;
    color: #2c3e50;
    line-height: 1.6;
}



/* Certifications Section */
.certifications-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #e9ecef;
}

.certifications-section h3 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.certifications-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.certification-item {
    background: white;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.certification-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.certification-item i {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 15px;
}

.certification-item h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.certification-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Environmental Section */
.environmental-section {
    padding: 80px 0;
    background: white;
}

.environmental-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #2c3e50;
}

.environmental-content p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    line-height: 1.8;
}

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

.action-item {
    text-align: center;
    padding: 30px;
}

.action-item i {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 20px;
}

.action-item h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Partner Section */
.partner-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.partner-section h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #2c3e50;
}

.partner-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: #001F3F;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #2980b9;
}


/* Modal Styles */
.contact-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1001; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
    justify-content: center;
    align-items: center;
}

.contact-modal.show {
    display: flex;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    position: relative;
    animation: slide-down 0.4s ease-out;
}

@keyframes slide-down {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-header h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 10px;
}

.modal-header p {
    color: #666;
    font-size: 1.1rem;
}

.modal-close {
    color: #888;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 36px;
    font-weight: normal;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover,
.modal-close:focus {
    color: #3498db;
    text-decoration: none; 
    transition: color 0.3s ease;
}  


.modal-close:hover,
.modal-close:focus {
    color: #3498db;
    text-decoration: none;
    cursor: pointer;border: none;
    background: none;
}
    


.modal-close:hover,
.modal-close:focus {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

.modal-form .form-group {
    margin-bottom: 15px;
}

.modal-form input[type="text"],
.modal-form input[type="tel"],
.modal-form input[type="email"],
.modal-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.modal-form textarea {
    resize: vertical;
}

.modal-form .phone-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-form .phone-group .country-code {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    background-color: #f0f0f0;
}

.modal-form .phone-group .country-code img {
    width: 20px;
    margin-right: 5px;
}

.modal-form .phone-group .country-code span {
    font-size: 1rem;
    color: #555;
}

.modal-form .radio-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.modal-form .radio-group label {
    font-weight: 600;
    color: #555;
}

.modal-form .radio-options {
    display: flex;
    gap: 15px;
}

.modal-form .radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.modal-form .radio-option input[type="radio"] {
    margin-right: 8px;
}

.modal-form .submit-button {
    background: #001F3F;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-form .submit-button:hover {
    background: #2980b9;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 80px;
        left: 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        text-align: center;
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
    }

    .carousel-content h1 {
        font-size: 1.8rem;
    }

    .carousel-content p {
        font-size: 0.9rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .values-grid {
        margin-top: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 30px;
    }

    .footer-links,
    .footer-social {
        flex-direction: column;
        gap: 10px;
    }
}



/* New Contact Section Styles */
.new-contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.contact-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.contact-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    position: relative;
    width: 100%;
    max-width: 550px; /* Ajuste conforme necessário */
}

.contact-image-item {
    width: 100%;
    height: 200px; /* Altura fixa para as imagens */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.contact-image-item img:hover {
    transform: scale(1.05);
}

.contact-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: calc(100% - 30px); /* Ajusta a largura para ficar dentro do grid */
    background-color: #3498db; /* Cor azul */
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.4;
}

.contact-overlay h3 {
    color: white;
    margin: 0;
    font-size: 1.4rem;
}

.contact-content {
    flex: 1;
    max-width: 550px; /* Ajuste conforme necessário */
}

.contact-header {
    margin-bottom: 30px;
}

.contact-subtitle {
    color: #3498db;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.contact-content h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 15px;
}

.contact-content h2 .highlight {
    color: #3498db;
}

.contact-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.contact-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.contact-benefits li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-benefits li i {
    color: #27ae60;
    margin-right: 10px;
    font-size: 1.2rem;
}

.contact-cta-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px !important;
}

.contact-cta-button {
    display: inline-flex;
    align-items: center;
    background: #3498db;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-cta-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.contact-cta-button i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #001f3f;
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.whatsapp-button:hover {
    transform: scale(1.05);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

/* Responsive adjustments for Contact Section */
@media (max-width: 992px) {
    .contact-hero {
        flex-direction: column;
    }

    .contact-images, .contact-content {
        max-width: 100%;
    }

    .contact-overlay {
        position: static;
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .contact-images {
        grid-template-columns: 1fr;
    }

    .contact-image-item {
        height: 180px;
    }

    .contact-overlay h3 {
        font-size: 1.2rem;
    }

    .contact-content h2 {
        font-size: 2.2rem;
    }

    .contact-cta-button {
        width: 100%;
        justify-content: center;
    }
}



/* Footer Adjustments */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.footer-links {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #3498db;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #bbb;
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}



/* Footer Adjustments */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.footer-links {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #3498db;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #bbb;
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}



/* Footer Adjustments */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.footer-links {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #3498db;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #bbb;
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}



/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1;
    text-align: left;
}

.footer-logo-img {
    height: 80px; /* Aumentado para ficar um pouco maior */
    width: auto;
    background-color: transparent; /* Remover fundo branco */
    filter: none; /* Garante que a logo apareça colorida */
}

.footer-right {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #3498db;
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 0.9rem;
    margin: 0;
}

/* New Contact Section Styles */
.new-contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.new-contact-section .container {
    max-width: 1200px;
}

.contact-hero {
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Layout circular para imagens de contato */
.contact-images-circular {
    flex: 1;
    min-width: 500px;
    height: 500px;
    position: relative;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-image-item {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: orbit 20s linear infinite;
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(200px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(200px) rotate(-360deg); }
}

.circular-image-item:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.circular-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circular-image-item.top {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.circular-image-item.right {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -3.75s;
}

.circular-image-item.bottom {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -7.5s;
}

.circular-image-item.left {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -11.25s;
}

.circular-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.95), rgba(41, 128, 185, 0.95));
    color: white;
    padding: 30px;
    border-radius: 50%;
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); }
    50% { box-shadow: 0 15px 35px rgba(52, 152, 219, 0.4); }
    100% { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); }
}

/* Manter CSS antigo para compatibilidade */
.contact-images {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px;
    position: relative;
}

.contact-image-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.contact-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(52, 152, 219, 0.9); /* Azul com transparência */
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    width: 80%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-header .contact-subtitle {
    color: #3498db;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-header h2 .highlight {
    color: #3498db;
}

.contact-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-description strong {
    color: #3498db;
}

.contact-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.contact-benefits li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #555;
}

.contact-benefits li i {
    color: #27ae60;
    margin-right: 10px;
}

.contact-cta-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
}

.contact-cta-button {
    background: #3498db;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.contact-cta-button:hover {
    background: #2980b9;
}

/* Responsividade para a seção de contato */
@media (max-width: 992px) {
    .contact-hero {
        flex-direction: column;
    }

    .contact-images {
        padding: 10px;
        grid-template-columns: 1fr;
    }

    .contact-image-item img {
        height: 180px;
    }

    .contact-overlay {
        font-size: 1.2rem;
        width: 90%;
    }

    .contact-content {
        padding: 30px;
    }

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

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-left,
    .footer-right {
        text-align: center;
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-social {
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .contact-image-item img {
        height: 150px;
    }

    .contact-overlay {
        font-size: 1rem;
        padding: 15px;
    }

    .contact-header h2 {
        font-size: 1.8rem;
    }

    .contact-description p,
    .contact-cta-text {
        font-size: 1rem;
    }

    .contact-cta-button {
        font-size: 1rem;
        padding: 12px 25px;
    }
}

/* Seção de Benefícios para Clientes */
.client-benefits-section {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-benefits-section h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: bold;
}

.client-benefits-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .client-benefits-section {
        padding: 20px;
        margin: 30px 0;
    }
    
    .client-benefits-section h3 {
        font-size: 1.6rem;
    }
    
    .client-benefits-text {
        font-size: 1rem;
    }
}


.circular-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background-color: rgba(52, 152, 219, 0.2); /* Azul claro com transparência */
    border: 3px solid rgba(52, 152, 219, 0.4);
    z-index: 0;
    animation: pulse-frame 4s infinite alternate;
}

@keyframes pulse-frame {
    0% { transform: scale(0.9); opacity: 0.7; }
    100% { transform: scale(1.05); opacity: 1; }
}

.circular-image-item {
    z-index: 1; /* Garantir que as imagens fiquem acima da moldura */
}

.circular-overlay {
    z-index: 2; /* Garantir que a mensagem central fique acima de tudo */
}







/* Novos estilos para a seção de benefícios de parceiro */
.partner-benefits-section {
    padding: 80px 0;
    background: #0a192f; /* Cor de fundo escura para contrastar */
    color: #ffffff;
    text-align: center;
}

.partner-benefits-section .benefits-header {
    margin-bottom: 60px;
}

.partner-benefits-section h2 {
    font-size: 3.2rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.partner-benefits-section .subtitle {
    font-size: 1.4rem;
    color: #a8b2d1;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.benefits-content-wrapper {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.benefits-category {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    background: #112240;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #233554;
}

.benefits-category h3 {
    font-size: 1.8rem;
    color: #64ffda; /* Cor de destaque */
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.benefits-category h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #64ffda;
    margin: 15px auto 0;
}

.benefits-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.benefit-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.circle-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, #3498db, #2980b9); /* Gradiente azul */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.circle-icon i {
    font-size: 3.5rem;
    color: white;
}

.benefit-circle-item:hover .circle-icon {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.6);
}

.benefit-circle-item h4 {
    font-size: 1.3rem;
    color: #ccd6f6;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-circle-item .counter {
    font-size: 1.1rem;
    color: #8892b0;
    font-weight: 500;
}

/* Animação para o ícone de engrenagem */
.animated-gear {
    animation: spin 4s linear infinite;
}

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

.cta-partner {
    margin-top: 80px;
}

.cta-partner p {
    font-size: 1.6rem;
    color: #ccd6f6;
    margin-bottom: 30px;
    font-weight: 500;
}

.cta-partner .btn-primary {
    display: inline-block;
    background: linear-gradient(45deg, #64ffda 0%, #3498db 100%); /* Gradiente verde-azulado */
    color: #0a192f;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(100, 255, 218, 0.3);
    border: none;
    cursor: pointer;
}

.cta-partner .btn-primary:hover {
    background: linear-gradient(45deg, #3498db 0%, #64ffda 100%);
    transform: translateY(-5px);
    box-shadow: 0 9px 25px rgba(100, 255, 218, 0.5);
}



/* Estilos para o novo layout da seção de benefícios de parceiro */
.benefits-grid-new-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.05) 0%, rgba(41, 128, 185, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 3.5rem;
    color: #3498db;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.benefit-card h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.benefit-card .counter {
    display: block;
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #27ae60;
    position: relative;
    z-index: 1;
}

/* Degradê para a seção de benefícios na página de parceiro */
.partner-benefits-section {
    background: linear-gradient(to bottom, #f0f2f5 0%, #e0e5ec 100%); /* Degradê suave */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Animação para a imagem 'Torne-se nosso parceiro' */
.hero-parceiro {
    position: relative;
    overflow: hidden;
}

.hero-parceiro img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateX(100%) scale(1.1); /* Começa fora da tela à direita e com zoom */
    animation: slideInZoomOut 2s forwards;
    animation-delay: 0.5s; /* Pequeno atraso para a entrada */
}

@keyframes slideInZoomOut {
    0% {
        transform: translateX(100%) scale(1.1);
    }
    100% {
        transform: translateX(0) scale(1); /* Entra e faz zoom reverso */
    }
}



/* Estilos para o Modal de Contato Suspenso */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
}

.close-button {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

.modal-content h3 {
    text-align: center;
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.modal-content p {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
}

.modal-content .form-group {
    margin-bottom: 15px;
}

.modal-content label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

.modal-content input[type="text"],
.modal-content input[type="email"],
.modal-content input[type="tel"],
.modal-content textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.modal-content textarea {
    resize: vertical;
}

.modal-content .btn-primary {
    display: block;
    width: 100%;
    background: #3498db;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.modal-content .btn-primary:hover {
    background: #2980b9;
}

/* Remover estilos das mídias circulares */
.contact-images-circular {
    display: none;
}




/* Ajustes finais para o modal de contato */
.contact-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    position: relative;
    animation: slide-down 0.4s ease-out;
}

.modal-close,
.modal-close-button {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 36px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    line-height: 1;
}

.modal-close:hover,
.modal-close:focus,
.modal-close-button:hover,
.modal-close-button:focus {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

@keyframes slide-down {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


#beneficios-parceiro.partner-benefits-section {
  background: #001F3F ;
  color: #ffffff;
}

/* ================================
   SEÇÃO: FALE CONOSCO - FMP Trading
=================================== */
#contato {
  background-color: #f8f9fb; /* tom claro neutro */
  padding: 80px 20px;
  font-family: "Inter", sans-serif;
  color: #001F3F;
}

#contato .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Títulos */
#contato h2 {
  font-size: 32px;
  color: #001F3F;
  font-weight: 800;
  margin-bottom: 12px;
}

#contato .section-intro {
  color: #4f5b66;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 50px;
}

/* Grade de conteúdo */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

/* Bloco de informações */
.contact-info {
  flex: 1 1 400px;
  background: #ffffff;
  border: 1px solid #d8e3ef;
  border-radius: 10px;
  padding: 35px;
  box-shadow: 0 4px 15px rgba(0, 31, 63, 0.08);
  transition: transform 0.3s ease;
}

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

.contact-info h3 {
  font-size: 20px;
  color: #001F3F;
  font-weight: 700;
  margin-bottom: 18px;
}

.contact-info p {
  color: #2b2b2b;
  font-size: 15px;
  line-height: 1.6;
  margin: 8px 0;
}

.contact-info i {
  color: #001F3F;
  margin-right: 10px;
  font-size: 16px;
}

/* Ícones de redes sociais */
.social-media {
  margin-top: 25px;
  display: flex;
  gap: 20px;
}




/* Botão principal */
.btn-primary {
  margin-top: 40px;
  display: inline-block;
  background-color: #001F3F;
  color: #ffffff;
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #003366;
  transform: scale(1.03);
}

/* Responsividade */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }
}


/* Advantages Section */
.advantages-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.advantages-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #2c3e50;
}

.advantages-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.advantages-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 20px;
}

.advantages-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.advantages-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.advantages-image:hover img {
    transform: scale(1.05);
}

/* Differentials Section */
.differentials-section {
    margin-top: 50px;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.differential-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.differential-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.differential-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.differential-title i {
    font-size: 2rem;
    color: #001F3F;
}

.differential-title h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
}

.differential-description {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.differential-item:hover .differential-description {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
}

.differential-description p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.advantages-footer {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.advantages-footer p {
    font-size: 1.15rem;
    color: #2c3e50;
    line-height: 1.8;
    margin: 0;
}

.advantages-footer strong {
    color: #001F3F;
    font-size: 1.2rem;
}

/* Responsive Design for Advantages Section */
@media (max-width: 768px) {
    .advantages-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .advantages-intro {
        order: 2;
    }
    
    .advantages-image {
        order: 1;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-section h2 {
        font-size: 2rem;
    }
    
    .differentials-section h3 {
        font-size: 1.6rem;
    }
}



/* Estilos para a nova caixa de texto */
.text-box-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin: 20px auto;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.text-box p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #333;
}

/* Estilos para a imagem de largura total */
.full-width-image-container {
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
}

.full-width-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

