 :root {
     --primary-dark: #ffffff;
     --secondary-dark: #f7f7f7;
     --Success-blue: #0089e4;

     --primary-blue: #0056b3;
     --dark: #333333;
     --accent-gold: #ffffff;
     --accent-gold-hover: #b3946c;
     --text-light: #ffffff;
     --text-muted: #ffffff;
     --accent-green: #22f572;
     --light-bg: #f8f9fa;
     --primary-green: #156034;
     --light-green: #11a74a;
     --text-preto: #ffffff;



     --bg-color: #f7fafc;
     --card-bg: #ffffff;
     --text-main: #1a202c;
     --text-muted2: #4a5568;
     --shadow-subtle: 0 4px 6px rgba(0, 0, 0, 0.05);
     --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

 }

 

 .btn-asina {
     color: #fff;
     background-color: #22f572;
     border-color: #22f572
 }

 .swiper-container-wrapper body {
     font-family: 'Poppins', sans-serif;
     background-color: var(--primary-dark);
     color: var(--text-light);
     overflow-x: hidden;
 }


 .spaco {
     margin: 200px;
 }


 h1,
 h2,
 h3,
 .font-serif {
     font-family: 'Playfair Display', serif;
 }


 /* Cores Customizadas */
 .bg-dark-green {
     background-color: var(--primary-dark);
 }

 .bg-medium-green {
     background-color: var(--secondary-dark);
 }

 .text-gold {
     color: var(--accent-gold);
 }

 /* Barra de Informações do Topo (Top Bar) */
 .top-info-bar {
     background-color: #0a1814;
     border-bottom: 1px solid rgba(255, 255, 255, 0.15);
     font-size: 0.75rem;
     letter-spacing: 0.5px;
     color: var(--text-muted);
 }

 .top-info-bar a {
     color: var(--text-muted);
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .top-info-bar a:hover {
     color: var(--accent-gold);
 }

 /* Botões */
 /* Botões */
 .btn-princ {
     background-color: var(--accent-green);
     color: var(--primary-dark);
     font-weight: 600;
     border: 2px solid var(--accent-green);
     transition: all 0.3s ease;
     text-transform: uppercase;
     font-size: 0.85rem;
     letter-spacing: 1px;
     padding: 12px 25px;
 }

 .btn-princ:hover {
     background-color: #228b4a;
     color: var(--accent-gold);
 }

 .btn-gold {
     background-color: var(--Success-blue);
     color: var(--primary-dark);
     font-weight: 600;
     border: 2px solid var(--accent-gold);
     transition: all 0.3s ease;
     text-transform: uppercase;
     font-size: 0.85rem;
     letter-spacing: 1px;
     padding: 12px 25px;
 }

 .btn-gold:hover {
     background-color: transparent;
     color: #228b4a;
     border: 2px solid var(--Success-blue);
 }

 .btn-outline-gold {
     background-color: transparent;
     color: var(--accent-gold);
     font-weight: 500;
     border: 1px solid var(--accent-gold);
     transition: all 0.3s ease;
     font-size: 0.85rem;
     padding: 10px 20px;
 }

 .btn-outline-gold:hover,
 .btn-outline-gold.active {
     background-color: var(--Success-blue);
     color: var(--primary-dark);
 }

 /* Grupo Fixo Menu + Top Bar */
 .sticky-wrapper {
     position: sticky;
     top: 0;
     z-index: 1020;
     width: 100%;
 }

 .navbar {

     background-color: rgba(15, 36, 29, 0.95);
     border-bottom: 1px solid rgba(197, 168, 128, 0.2);
 }

 .nav-link {
     color: var(--text-light) !important;
     font-size: 0.75rem;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .nav-link:hover {
     color: var(--accent-gold) !important;
 }

 /* Hero Section Dinâmica com Swiper */



 .hero-section {
     min-height: 115vh;
     position: relative;
     overflow: hidden;
     display: flex;
     align-items: center;
     margin-bottom: 20px;

 }

 .swiper-hero {
     position: absolute !important;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
 }

 /* Slide interno e Animação Ken Burns */
 .swiper-hero .swiper-slide {
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
 }

 .swiper-hero .swiper-slide-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-position: center;
     background-size: cover;
     background-repeat: no-repeat;
     z-index: 1;
     transform: scale(1);
     transition: transform 6500ms ease-out;
 }

 .swiper-hero .swiper-slide-active .swiper-slide-bg {
     transform: scale(1.07);
 }

 /* Conteúdo do Slide */
 .slide-content {
     position: relative;
     z-index: 2;
     padding: 100px 100;
 }

 /* Animação suave para os textos na troca de slide */
 .slide-content h1,
 .slide-content p,
 .slide-content .btn,
 .slide-content .tracking-widest {
     opacity: 0;
     transform: translateY(20px);
     transition: all 0.8s ease;
 }

 .swiper-slide-active .slide-content h1,
 .swiper-slide-active .slide-content p,
 .swiper-slide-active .slide-content .btn,
 .swiper-slide-active .slide-content .tracking-widest {
     opacity: 1;
     transform: translateY(0);
 }

 /* Delays para efeito cascata nos textos */
 .swiper-slide-active .slide-content .tracking-widest {
     transition-delay: 0.2s;
 }

 .swiper-slide-active .slide-content h1 {
     transition-delay: 0.4s;
 }

 .swiper-slide-active .slide-content p {
     transition-delay: 0.6s;
 }

 .swiper-slide-active .slide-content .btn {
     transition-delay: 0.8s;
 }

 /* Controles do slider */
 .swiper-nav-container {
     position: absolute;
     top: 30px;
     right: 40px;
     display: flex;
     gap: 12px;
     z-index: 10;
 }

 .swiper-custom-btn {
     width: 45px;
     height: 45px;
     border: 1px solid rgba(197, 168, 128, 0.4);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--accent-gold);
     background-color: rgba(15, 36, 29, 0.6);
     backdrop-filter: blur(4px);
     cursor: pointer;
     transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
 }

 .swiper-custom-btn:hover {
     background-color: var(--primary-green);
     color: var(--primary-dark);
     border-color: var(--accent-gold);
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(197, 168, 128, 0.3);
 }

 /* Paginação */
 .swiper-hero .swiper-pagination-custom {
     position: absolute;
     bottom: 10px;

     left: 50%;
     transform: translateX(-50%);
     z-index: 10;
     display: flex;
     gap: 8px;
 }

 .swiper-hero .swiper-pagination-custom .swiper-pagination-bullet {
     width: 35px;
     height: 3px;
     background-color: rgba(255, 255, 255, 0.3);
     border-radius: 0;
     margin: 0;
     opacity: 1;
     transition: all 0.4s ease;
     cursor: pointer;

 }

 .swiper-hero .swiper-pagination-custom .swiper-pagination-bullet-active {
     background-color: var(--accent-gold);
     width: 55px;
 }

 /* Linha de Progresso */
 .hero-autoplay-progress {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 3px;
     background-color: rgba(197, 168, 128, 0.15);
     z-index: 11;
 }

 .hero-autoplay-progress .progress-bar-fill {
     height: 100%;
     width: 0%;
     background-color: var(--accent-gold);
     transition: width 10ms linear;
 }

 /* Pilares / Diferenciais fora do Swiper para estabilidade visual */
 .features-row {
     position: relative;
     z-index: 3;
     margin-top: -180px;

 }

 .feature-icon-box {
     border: 1px solid rgba(197, 168, 128, 0.3);
     border-radius: 4px;
     padding: 24px;
     height: 100%;
     background-color: #0089e4;
     backdrop-filter: blur(6px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
 }

 /* Molduras de Fotos */
 .img-styled {
     border: 1px solid var(--accent-gold);
     border-radius: 8px;
     padding: 6px;
 }

 /* CTA Final */
 .cta-section {
     background: linear-gradient(rgba(15, 36, 29, 0.9), rgba(15, 36, 29, 0.9)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
     padding: 90px 0;
 }

 footer {
     border-top: 1px solid rgba(197, 168, 128, 0.2);
 }

 @media (max-width: 576px) {

     .swiper-nav-container {
         right: 20px;
         top: 15px;
     }

     .swiper-custom-btn {
         width: 38px;
         height: 38px;
     }

     .swiper-hero .swiper-pagination-custom .swiper-pagination-bullet {
         width: 25px;
     }

     .swiper-hero .swiper-pagination-custom .swiper-pagination-bullet-active {
         width: 40px;
     }

     .features-row {
         margin-top: 20px;
         display: none;
     }
 }


 /* -------------------------------- SOBRE NOS ----------------------------------------*/



 /* Hero Section */
 .hero-contacto {
     background: linear-gradient(rgba(30, 58, 71, 0.85), rgba(30, 58, 71, 0.85)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1200&q=80');
     background-size: cover;
     background-position: center;
     color: white;
     padding: 100px 0;
 }

 /* Partners Bar    */
 .partners-bar {
     background-color: var(--Success-blue);
     padding: 30px 0;
     opacity: 0.95;
 }

 .partner-logo {
     filter: brightness(0) invert(1);
     opacity: 0.6;
     max-height: 30px;
 }

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

 .text-accent {
     color: var(--accent-green);
 }

 .text-bue {
     color: var(--Success-blue);
 }


 .text-preto {
     color: var(--dark);
 }

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

 .btn-accent {
     background-color: var(--accent-green);
     color: white;
     border: none;
     padding: 10px 25px;
     border-radius: 5px;
     transition: 0.3s;
 }

 .btn-accent:hover {
     background-color: #17a2b8;
     color: white;
 }

 /* Imagens quadradas/compostas */
 .img-grid-main {
     border-radius: 15px;
     object-fit: cover;
 }

 .experience-badge {
     background-color: var(--Success-blue);
     color: white;
     padding: 20px;
     border-radius: 10px;
     margin-top: -50px;
     position: relative;
     z-index: 10;
 }

 /* Cards da Timeline */
 .timeline-card {
     border: 1px solid #eee;
     border-radius: 8px;
     padding: 20px;
     transition: 0.3s;
     background: #fff;
 }

 .timeline-card.active {
     background-color: var(--Success-blue);
     color: white;
     border-color: var(--primary-dark);
 }

 .timeline-card.active .text-accent {
     color: var(--accent-green) !important;
 }

 /* Stats Section */
 .stats-section {
     background-color: var(--Success-blue);
     color: white;
     padding: 50px 0;
     border-radius: 10px;
 }

 /* Call To Action */
 .cta-section {
     background: linear-gradient(rgba(30, 58, 71, 0.9), rgba(30, 58, 71, 0.9)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1200&q=80');
     background-size: cover;
     padding: 80px 0;
     color: white;
 }

 /* Footer */
 footer {
     background-color: #162a33;
     color: #a0aec0;
     padding: 60px 0 20px 0;
 }

 footer a {
     color: #a0aec0;
     text-decoration: none;
 }

 footer a:hover {
     color: white;
 }


 /* -------------------------------- SOBRE NOS ----------------------------------------*/




 /* -------------------------------- PARALLAX ----------------------------------------*/







 section.module p {
     margin-bottom: 40px;
 }

 section.module:last-child {
     margin-bottom: 0;
 }

 section.module h2 {
     margin-bottom: 40px;
     font-size: 30px;
 }

 section.module.content {
     padding: 40px 0;
     background: #ece7d5;
 }

 section.module.parallax {
     display: flex;
     flex-direction: column;
     justify-content: center;
     height: 100vh !important;
     width: 100%;
     position: relative;
     overflow: hidden;
     background-position: 50% 50%;
     background-repeat: no-repeat;
     background-attachment: fixed;
     background-size: cover;
     -webkit-background-size: cover;
     -moz-background-size: cover;
     -o-background-size: cover;
 }

 section.module.parallax:after {
     content: "";
     position: absolute;
     inset: 0;
     z-index: 8;

     background: linear-gradient(rgba(30, 58, 71, 0.9), rgba(30, 58, 71, 10));
 }

 section.module.parallax-1 {
     background-image: url("../img/formacao/Office-meeting.jpg");
     /* Call To Action */

     background-size: cover;



 }



 section.module.parallax-2 {
     background-image: url("https://images.unsplash.com/photo-1473181488821-2d23949a045a?dpr=1&auto=compress,format&fit=crop&w=1199&h=799&q=80&cs=tinysrgb&crop=");
 }

 section.module.parallax-3 {
     background-image: url("https://images.unsplash.com/photo-1472162314594-eca3c3d90df1?dpr=1&auto=format&fit=crop&w=1500&h=1001&q=80&cs=tinysrgb&crop=");
 }

 section.module.parallax .index-50 {
     color: #FFF;
     z-index: 50;
 }

 @media all and (max-width: 820px) {

     section.module h2 {
         font-size: 32px;
     }

     .module h2,
     p {
         padding: 0 8px;
     }




     section.module.parallax {
         height: 200vh !important;

     }

     section.module.parallax h1 {
         font-size: 36px;
     }
 }



 /* -------------------------------- FIM DO PARALLAX ----------------------------------------*/






 /* -------------------------------- CONTACTO ----------------------------------------*/



 /* --- Barra de Informações do Topo --- */
 .top-bar {
     background-color: var(--primary-dark);
     color: rgba(255, 255, 255, 0.8);
     font-size: 0.75rem;
     padding: 8px 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .top-bar a {
     color: rgba(255, 255, 255, 0.8);
     text-decoration: none;
 }

 .top-bar a:hover {
     color: var(--accent-green);
 }

 .top-bar .social-icons a {
     margin-left: 12px;
     font-size: 0.85rem;
 }

 /* Navbar */


 /* Hero Header */
 .hero-sobre {
     background: linear-gradient(rgba(9, 38, 21, 0.85), rgba(9, 38, 21, 0.85)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=2070') no-repeat center center;
     background-size: cover;
     padding: 80px 0;
     color: white;
 }

 .hero-formacao {
     background: linear-gradient(rgba(9, 38, 21, 0.85), rgba(9, 38, 21, 0.85)), url('../img/formacoes.jpg') no-repeat center center;
     background-size: cover;
     padding: 80px 0;
     color: white;
 }

 .hero-consultoria {
     background: linear-gradient(rgba(9, 38, 21, 0.85), rgba(9, 38, 21, 0.85)), url('../img/consultoria.jpg') no-repeat center center;
     background-size: cover;
     padding: 80px 0;
     color: white;
 }

 .hero-section h1 {
     font-size: 3.5rem;
     font-weight: bold;
 }

 /* Seção de Contato */
 .contact-section {
     padding: 60px 0;
 }

 .form-subtitle {
     color: var(--accent-green);
     font-weight: bold;
     font-size: 0.85rem;
     letter-spacing: 1px;
 }

 .form-title {
     font-size: 2rem;
     font-weight: bold;
     margin-bottom: 20px;
     color: var(--dark);
     ;
 }

 /* --- MELHORIAS NOS INPUTS (CUSTOMIZAÇÃO) --- */
 .form-group label {
     font-size: 0.8rem;
     font-weight: 600 !important;
     color: #495057 !important;
     margin-bottom: 6px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .form-control {
     background-color: #ffffff;
     border: 1px solid #ced4da;
     padding: 14px 16px;
     height: auto;
     border-radius: 8px;
     font-size: 0.95rem;
     color: #333;
     transition: all 0.3s ease-in-out;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
 }

 /* Efeito ao clicar/focar no input */
 .form-control:focus {
     background-color: #fff;
     border-color: var(--light-green);
     color: #333;
     box-shadow: 0 0 0 3px rgba(34, 139, 74, 0.15);
     outline: 0;
 }

 /* Estilização do Placeholder (texto interno padrão) */
 .form-control::placeholder {
     color: #adb5bd;
     font-size: 0.9rem;
 }

 /* Botão Enviar Modernizado */
 .btn-send {
     background-color: var(--light-green);
     color: white;
     border-radius: 8px;
     padding: 12px 30px;
     border: none;
     font-weight: 600;
     letter-spacing: 0.5px;
     transition: all 0.3s ease;
     box-shadow: 0 4px 6px rgba(34, 139, 74, 0.2);
 }

 .btn-send:hover {
     background-color: var(--primary-green);
     color: white;
     transform: translateY(-1px);
     box-shadow: 0 6px 12px rgba(21, 96, 52, 0.3);
 }

 .btn-send:active {
     transform: translateY(1px);
 }

 /* Card Verde de Contato */
 .info-card {
     background-color: var(--light-green);
     color: white;
     border-radius: 15px;
     padding: 40px 30px;
 }

 .info-item {
     display: flex;
     margin-bottom: 25px;
 }

 .info-icon {
     background: rgba(255, 255, 255, 0.2);
     width: 45px;
     height: 45px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 15px;
     font-size: 1.1rem;
 }

 .social-links a {
     color: white;
     margin-right: 15px;
     font-size: 1.2rem;
     transition: 0.3s;
 }

 .social-links a:hover {
     color: var(--accent-green);
 }

 /* Mapa */
 .map-container iframe {
     width: 100%;
     height: 400px;
     border: 0;
     display: block;
 }

 /* Footer */
 .footer-section {
     background-color: rgba(15, 36, 29, 0.95);
     color: #a0aab2;
     padding: 60px 0 20px 0;
     font-size: 0.9rem;
 }

 .footer-section h5 {
     color: white;
     font-weight: bold;
     margin-bottom: 20px;
 }

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

 .footer-section ul li {
     margin-bottom: 10px;
 }

 .footer-section ul li a {
     color: #a0aab2;
     text-decoration: none;
 }

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

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 20px;
     margin-top: 40px;
     font-size: 0.8rem;
 }


 @media (max-width: 576px) {

     .hero-section {
         min-height: 98vh;
         position: relative;
         overflow: hidden;
         display: flex;
         align-items: center;
         margin-bottom: 20px;

     }

     .hero-section h1 {
         font-size: 2.5rem;
         font-weight: bold;
     }

 }


 /* -------------------------------- FIM DO CONTACTO ----------------------------------------*/



 /* Core Principles Section */
 .principles-section {
     background: linear-gradient(rgba(10, 54, 99, 0.9), rgba(10, 54, 99, 0.9)), url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?q=80&w=1920') no-repeat center center/cover;
     color: rgb(255, 255, 255);
     padding: 80px 0;
 }

 .principle-card {
     background: white;
     color: var(--dark);
     padding: 30px;
     border-radius: 4px;
     border-bottom: 4px solid var(--accent-green);
     height: 100%;
     /* Garante que todos os cards tenham a mesma altura */
 }

 /* Counter Section */
 .counter-section {
     background-color: var(--light-blue);
     color: white;
     padding: 50px 0;
 }




 /* -------------------------------- AREA DE SERVICOS ----------------------------------------*/

 .font-serif {
     font-family: 'Playfair Display', serif;
 }

 /* Hero Futurista */
 .premium-hero {
     background: radial-gradient(circle at top right, #0f172a, #020617);
     position: relative;
     overflow: hidden;
     border-bottom: 1px solid var(--Success-blue);
 }

 /* Orbes de Luz de Fundo Animadas */
 @keyframes floatGlow {

     0%,
     100% {
         transform: scale(1) translate(0px, 0px);
         opacity: 0.4;
     }

     50% {
         transform: scale(1.2) translate(40px, -60px);
         opacity: 0.6;
     }
 }

 .blur-glow {
     position: absolute;
     border-radius: 50%;
     filter: blur(120px);
     z-index: 1;
     animation: floatGlow 10s infinite alternate ease-in-out;
 }

 .bg-blob-1 {
     top: -10%;
     right: -5%;
     width: 500px;
     height: 500px;
     background: linear-gradient(45deg, #3b82f6, #0089e4);
 }

 .bg-blob-2 {
     bottom: -20%;
     left: -10%;
     width: 450px;
     height: 450px;
     background: linear-gradient(45deg, #06b6d4, #10b981);
     animation-delay: -3s;
 }

 /* Input de Busca Fluido */
 .search-wrapper {
     max-width: 650px;
     margin: 0 auto;
     position: relative;
     z-index: 5;
 }

 .search-box {
     background: var(--Success-blue) !important;
     backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.1) !important;
     color: #ffffff !important;
     padding: 1.1rem 1.5rem 1.1rem 3.5rem !important;
     border-radius: 1.5rem !important;
     font-weight: 300;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
     transition: all 0.4s ease;
 }

 .search-box:focus {
     border-color: #3b82f6 !important;
     background: rgba(15, 23, 42, 0.95) !important;
     box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2) !important;
 }

 .search-icon {
     position: absolute;
     left: 1.5rem;
     top: 50%;
     transform: translateY(-50%);
     color: #94a3b8;
     font-size: 1.25rem;
 }

 /* Botões de Filtro Modernos */
 .filter-container {
     background: rgba(255, 255, 255, 0.85);
     backdrop-filter: blur(20px);
     border: 1px solid rgba(226, 232, 240, 0.8);
     padding: 0.6rem;
     border-radius: 2rem;
     box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.08);
     margin-top: -2.5rem;
     position: relative;
     z-index: 10;
     display: inline-flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 0.4rem;
 }

 .btn-filter {
     border: none;
     background: transparent;
     color: #64748b;
     padding: 0.8rem 1.8rem;
     font-size: 0.8rem;
     font-weight: 700;
     letter-spacing: 0.05em;
     text-transform: uppercase;
     border-radius: 1.5rem;
     transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
 }

 .btn-filter:hover:not(.active) {
     background-color: #f1f5f9;
     color: #0f172a;
     transform: translateY(-2px);
 }

 .btn-filter.active {
     background: linear-gradient(135deg, var(--Success-blue));
     color: #ffffff;
     transform: translateY(-2px);
     box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
 }

 /* Cyber Cards Premium */
 .cyber-card {
     background: #ffffff;
     border: 1px solid #e2e8f0;
     border-radius: 2.25rem;
     overflow: hidden;
     height: 100%;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
         box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
         border-color 0.3s ease;
 }

 .cyber-card:hover {
     transform: translateY(-12px);
     box-shadow: 0 40px 70px -15px rgba(15, 23, 42, 0.08), 0 0 30px rgba(59, 130, 246, 0.03);
     border-color: #cbd5e1;
 }

 /* Zoom das Capas */
 .img-mask {
     position: relative;
     height: 220px;
     overflow: hidden;
 }

 .img-mask img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);

 }


 .cyber-card:hover .img-mask img {
     transform: scale(1.1);
 }

 .card-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to top, rgba(15, 23, 42, 0.7) 0%, transparent 100%);
     /* Altera o cursor para a "mãozinha" de link */
     cursor: pointer;

     /* Transição suave para os efeitos de hover */
     transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
 }

 /* Ícone com Efeito Mola */
 .icon-container {
     position: absolute;
     bottom: -1.75rem;
     left: 2rem;
     width: 3.8rem;
     height: 3.8rem;
     border-radius: 1.25rem;
     background: #ffffff;
     border: 1px solid #f1f5f9;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.6rem;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
     z-index: 5;
     transition: transform 0.5s cubic-bezier(0.34, 1.6, 0.4, 1);
 }

 .cyber-card:hover .icon-container {
     transform: translateY(-65px) scale(1.1) rotate(5deg);
 }

 /* ========================================================
           DESIGN ULTRA ATRAENTE DO FORMULÁRIO (MODAL LUXO)
           ======================================================== */
 .premium-modal .modal-content {
     background: rgba(15, 23, 42, 0.95);
     backdrop-filter: blur(25px);
     -webkit-backdrop-filter: blur(25px);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 2.5rem;
     color: #f8fafc;
     box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.7);
 }

 .premium-modal .modal-header {
     padding: 2.5rem 2.5rem 1rem 2.5rem;
 }

 .premium-modal .modal-body {
     padding: 1rem 2.5rem 2.5rem 2.5rem;
 }

 /* Rótulos das caixas de texto */
 .premium-modal .form-label {
     font-size: 0.75rem;
     font-weight: 700;
     letter-spacing: 0.08em;
     color: #94a3b8;
     margin-bottom: 0.5rem;
 }

 /* Inputs Editáveis Premium */
 .premium-modal .form-control {
     background: rgba(30, 41, 59, 0.5);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 1rem;
     color: #ffffff;
     padding: 0.85rem 1.25rem;
     font-size: 0.95rem;
     transition: all 0.3s ease;
 }

 .premium-modal .form-control:focus {
     background: rgba(30, 41, 59, 0.8);
     border-color: #3b82f6;
     box-shadow: 0 0 18px rgba(59, 130, 246, 0.4);
     color: #ffffff;
 }

 /* Inputs Bloqueados de Informação Inteligente */
 .form-control-lock {
     background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.05)) !important;
     border: 1px solid rgba(59, 130, 246, 0.2) !important;
     color: #38bdf8 !important;
     font-weight: 600;
     border-radius: 1rem;
     padding: 0.85rem 1.25rem;
     cursor: not-allowed;
 }

 /* Botão Magnético de Envio */
 .btn-gradient-submit {
     background: linear-gradient(135deg, #3b82f6, #8b5cf6);
     border: none;
     color: white;
     padding: 1rem;
     border-radius: 1.25rem;
     font-weight: 700;
     letter-spacing: 0.05em;
     box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3);
     transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .btn-gradient-submit:hover {
     transform: translateY(-3px);
     box-shadow: 0 20px 40px rgba(139, 92, 246, 0.5);
     opacity: 0.95;
 }

 /* ANIMAÇÕES VUE (TRANSITION-GROUP FLUIDO) */
 .list-enter {
     opacity: 0;
     transform: translateY(30px) scale(0.95);
 }

 .list-leave-to {
     opacity: 0;
     transform: translateY(-30px) scale(0.9);
 }

 .list-enter-active {
     transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
 }

 .list-leave-active {
     transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
     position: absolute;
     width: calc(100% - 1.5rem);
 }

 .list-move {
     transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
 }

 /* -------------------------------- FIM DA AREA DE SERVICOS ----------------------------------------*/

 /* -------------------------------- SLIDER DA AREA DE SERVICOS ----------------------------------------*/

 .services-section {
     padding: 50px 0;
 }

 .section-title {
     font-weight: 800;
     font-size: 3.2rem;
     letter-spacing: 1px;
     margin-bottom: 15px;


 }

 .swiper-container-wrapper {
     position: relative;
     padding: 30px 20px;
 }

 /* --- CARD COM IMAGEM PREMIUM --- */
 .service-card {
     position: relative;
     height: 420px;
     border-radius: 20px;
     overflow: hidden;
     /* Mantém o zoom da imagem dentro do card */
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 35px 30px;
     border: 1px solid rgba(255, 255, 255, 0.1);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
     transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
 }

 /* Imagem de Fundo */
 .card-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     transition: transform 0.6s ease;
     z-index: 1;
 }

 /* Overlay Gradiente (Escurece a imagem para o texto ficar legível) */
 .card-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to top, rgba(0, 43, 151, 0.95) 20%, rgba(11, 51, 153, 0.6) 60%, rgba(0, 0, 0, 0) 100%);
     z-index: 2;
     transition: background 0.4s ease;
 }

 /* Conteúdo do Card */
 .card-content {
     position: relative;
     z-index: 3;
 }

 /* Ícone Superior Flutuante */
 .icon-badge {
     width: 55px;
     height: 55px;
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     color: #0089e4;
     /* Cor moderna em tom de roxo/azul */
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 22px;
     margin-bottom: 20px;
     transition: all 0.4s ease;
 }

 .card-content h3 {
     font-size: 24px;
     font-weight: 700;
     margin-bottom: 12px;
     color: #ffffff;
 }

 .card-content p {
     color: #cbd5e1;
     font-size: 15px;
     line-height: 1.5;
     margin-bottom: 20px;
 }

 .btn-action {
     color: #0089e4;
     font-weight: 600;
     text-decoration: none !important;
     display: inline-flex;
     align-items: center;
     font-size: 14px;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .btn-action i {
     margin-left: 8px;
     transition: transform 0.3s;
 }

 /* --- EFEITOS HOVER --- */
 .service-card:hover {
     transform: translateY(-8px);
     border-color: rgba(17, 100, 224, 0.699);
 }

 .service-card:hover .card-bg {
     transform: scale(1.1);
     /* Efeito de Zoom na imagem */
 }

 .service-card:hover .card-overlay {
     background: linear-gradient(to top, rgba(17, 100, 224, 0.85) 10%, rgba(11, 15, 25, 0.7) 70%);
 }

 .service-card:hover .icon-badge {
     background: #ffffff;
     color: #0089e4;
     transform: scale(1.05);
 }

 .service-card:hover .card-content h3,
 .service-card:hover .card-content p,
 .service-card:hover .btn-action {
     color: #ffffff;
 }

 .service-card:hover .btn-action i {
     transform: translateX(6px);
 }

 /* Setas do Swiper Customizadas */
 .swiper-button-next,
 .swiper-button-prev {
     color: #ffffff;
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(5px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     width: 50px;
     height: 50px;
     border-radius: 50%;
 }

 .swiper-button-next:hover,
 .swiper-button-prev:hover {
     background: #0089e4;
     border-color: #0089e4;
 }

 .swiper-button-next:after,
 .swiper-button-prev:after {
     font-size: 16px;
 }

 /* Pontos de Paginação */
 .swiper-pagination-bullet {
     background: #03ff2da1;
 }

 .swiper-pagination-bullet-active {
     background: #0089e4;
     width: 25px;
     border-radius: 10px;
     transition: all 0.3s;
 }


 /* -------------------------------- FIM DO SLIDER DA AREA DE SERVICOS ----------------------------------------*/



 /* --------------------------------  NOSSA EQUIPE ----------------------------------------*/



 .team-section {
     padding: 60px 0;
 }

 .swiper-container {
     width: 100%;
     padding: 20px 0 50px 0;
     position: relative;
 }

 /* Customização dos Cards baseada na imagem */
 .team-card {
     background: #fff;
     border-radius: 4px;
     overflow: hidden;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
 }

 .image-container {
     position: relative;
     width: 100%;
     padding-top: 100%;
     /* Mantém a proporção quadrada 1:1 */
     background-color: #eaeaea;
 }

 .image-container img {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     filter: grayscale(100%);
     transition: filter 0.3s ease;
 }

 /* Faixa de Rede Social */
 .social-bar {
     display: flex;
     align-items: center;
     background: #fff;
     border-bottom: 1px solid #eee;
     transition: background 0.3s ease, color 0.3s ease;
 }

 .social-icon {
     background: #000;
     color: #fff;
     width: 45px;
     height: 45px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.1rem;
 }

 .social-user {
     padding-left: 15px;
     font-size: 0.85rem;
     color: #777;
     transition: color 0.3s ease;
 }

 /* Detalhes do Membro */
 .member-info {
     padding: 20px;
     position: relative;
     transition: background 0.3s ease, color 0.3s ease;
 }

 .member-name {
     font-size: 1.15rem;
     font-weight: 700;
     margin-bottom: 2px;
 }

 .member-role {
     font-size: 0.85rem;
     color: #888;
     margin-bottom: 15px;
     transition: color 0.3s ease;
 }

 .arrow-btn {
     position: absolute;
     bottom: 20px;
     right: 20px;
     color: #0d6efd;
     font-size: 1.2rem;
     transition: transform 0.3s ease, color 0.3s ease;
 }

 /* ==========================================================
       EFEITO DINÂMICO: Aplica o estilo azul no SEGUNDO slide (.swiper-slide-next)
       ========================================================== */
 .swiper-slide-next .team-card .image-container img {
     filter: grayscale(0%);
 }

 .swiper-slide-next .team-card .social-bar {
     background: #0d6efd;
     border-color: #0d6efd;
 }

 .swiper-slide-next .team-card .social-user {
     color: #fff;
 }

 .swiper-slide-next .team-card .member-info {
     background: #0d6efd;
     color: #fff;
 }

 .swiper-slide-next .team-card .member-role {
     color: #e0e0e0;
 }

 .swiper-slide-next .team-card .arrow-btn {
     color: #fff;
     transform: translateX(5px);
 }

 /* Mantém o efeito de Hover individual para os outros cards */
 .team-card:hover .image-container img {
     filter: grayscale(0%);
 }

 .team-card:hover .social-bar {
     background: #0d6efd;
     border-color: #0d6efd;
 }

 .team-card:hover .social-user {
     color: #fff;
 }

 .team-card:hover .member-info {
     background: #0d6efd;
     color: #fff;
 }

 .team-card:hover .member-role {
     color: #e0e0e0;
 }

 .team-card:hover .arrow-btn {
     color: #fff;
     transform: translateX(5px);
 }


 /* --- ESTILOS: Botões de Navegação Animados --- */
 .nav-container {
     display: flex;
     gap: 12px;
     justify-content: center;
     margin-top: 25px;
 }

 .btn-swiper {
     width: 50px;
     height: 50px;
     background-color: #fff;
     border: 2px solid #0d6efd;
     color: #0d6efd;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.1rem;
     cursor: pointer;
     transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
     box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
     position: relative;
     z-index: 10;
 }

 .btn-swiper i {
     transition: transform 0.3s ease;
 }

 /* Efeito de Hover nos botões */
 .btn-swiper:hover {
     background-color: #0d6efd;
     color: #fff;
     transform: scale(1.08);
     box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
 }

 /* Animação das setas internas */
 .btn-swiper-prev:hover i {
     transform: translateX(-4px);
 }

 .btn-swiper-next:hover i {
     transform: translateX(4px);
 }

 /* -------------------------------- FIM SLIDER NOSSA EQUIPE ----------------------------------------*/




 /* --------------------------------  MODAL CADSTRO ----------------------------------------*/

 /* Estilos básicos para o Modal */
 .modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.5);
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 1000;
 }

 .modal-content {
     padding: 20px;
     border-radius: 8px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

     /*   max-width: 600px; */
     width: 100%;
     position: relative;
 }

 .close-btn {
     position: absolute;
     top: 10px;
     right: 15px;
     background: none;
     border: none;
     font-size: 18px;
     cursor: pointer;
 }

 /* Botão principal */
 .open-btn {
     padding: 10px 20px;
     font-size: 16px;
     cursor: pointer;
 }

 /* -------------------------------- FIM MODAL CADSTRO ----------------------------------------*/



 .parceiro:hover {
     transform: translateY(-2px);

 }

 .parceiro img {

     max-width: 200px;
     max-height: 82px;
     object-fit: contain;
     transition: .3s;
     filter: grayscale(20%);


 }

 .parceiro:hover img {

     filter: none;
     opacity: 1;


 }

 .swiper-wrapper {
     transition-timing-function: linear !important;
 }




 /* -------------------------------- AREA DA GALERIA ----------------------------------------*/

 /* Container do item da galeria */
 .gallery-card {
     position: relative;
     overflow: hidden;
     border-radius: 12px;
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
     transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
     cursor: pointer;
     background: #fff;
 }

 /* Zoom sutil na imagem ao passar o mouse */
 .gallery-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
 }

 .gallery-img {
     width: 100%;
     height: 240px;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .gallery-card:hover .gallery-img {
     transform: scale(1.06);
 }

 /* Efeito de Overlay (Legenda charmosa no hover) */
 .gallery-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 70%);
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 20px;
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .gallery-card:hover .gallery-overlay {
     opacity: 1;
 }

 .gallery-title {
     color: #fff;
     font-size: 1.05rem;
     font-weight: 600;
     margin: 0;
     transform: translateY(10px);
     transition: transform 0.3s ease;
 }

 .gallery-card:hover .gallery-title {
     transform: translateY(0);
 }

 /* Lightbox Premium com desfoque de fundo */
 .lightbox-backdrop {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(15, 15, 20, 0.85);
     backdrop-filter: blur(8px);
     /* Desfoca o fundo do site */
     -webkit-backdrop-filter: blur(8px);
     z-index: 1050;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* Container da imagem do lightbox com transição suave */
 .lightbox-wrapper {
     position: relative;
     display: flex;
     flex-direction: column;
     align-items: center;
     max-width: 90%;
 }

 .lightbox-image {
     max-width: 100%;
     max-height: 80vh;
     border-radius: 8px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
     user-select: none;
     transition: opacity 0.3s ease, transform 0.3s ease;
 }

 /* Botões Minimalistas e Flutuantes */
 .lightbox-nav-btn {
     position: fixed;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(255, 255, 255, 0.08);
     border: 1px solid rgba(255, 255, 255, 0.1);
     color: #fff;
     width: 56px;
     height: 56px;
     border-radius: 50%;
     font-size: 1.5rem;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.2s ease;
     z-index: 1060;
 }

 .lightbox-nav-btn:hover {
     background: rgba(255, 255, 255, 0.2);
     color: #fff;
     scale: 1.05;
 }

 .btn-prev {
     left: 30px;
 }

 .btn-next {
     right: 30px;
 }

 .btn-close-gallery {
     position: fixed;
     top: 25px;
     right: 30px;
     background: none;
     border: none;
     color: rgba(255, 255, 255, 0.6);
     font-size: 2.2rem;
     cursor: pointer;
     transition: color 0.2s;
     z-index: 1060;
     line-height: 1;
 }

 .btn-close-gallery:hover {
     color: #fff;
 }

 /* Legenda Inferior Fina */
 .lightbox-meta {
     margin-top: 15px;
     color: #fff;
     text-align: center;
 }

 .lightbox-meta h4 {
     font-size: 1.1rem;
     font-weight: 500;
     margin-bottom: 4px;
     letter-spacing: 0.5px;
 }

 .lightbox-meta span {
     font-size: 0.85rem;
     color: rgba(255, 255, 255, 0.5);
 }

 /* Responsividade para botões em telas pequenas */
 @media (max-width: 768px) {
     .lightbox-nav-btn {
         width: 46px;
         height: 46px;
         font-size: 1.2rem;
     }

     .btn-prev {
         left: 10px;
     }

     .btn-next {
         right: 10px;
     }

     .gallery-img {
         height: 180px;
     }
 }

 /* -------------------------------- FIM  AREA DA GALERIA ----------------------------------------*/



 /* -------------------------------- TRATAMENTO DA IMAGEM DO SLIDER DAS DUAS MOÇA ----------------------------------------*/



 /* Container principal que distribui os blocos */
 .container-perfis {
     display: flex;
     width: 100%;
     justify-content: space-between;
     /* Empurra um para a esquerda e outro para a direita */
     padding: 4px;
     gap: 30px;
 }

 /* Estilo base dos blocos de texto */
 .bloco-perfil {
     padding: 20px;
     border-radius: 8px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
     border-top: 4px solid #0089e4;
     flex: 1;
     max-width: 400px;
     /* Evita que o texto estique demasiado em ecrãs gigantes */
 }

 /* Organização do texto */
 .bloco-perfil h2 {
     color: #ffffff;
     font-size: 1.8rem;
     font-weight: 600;
     margin-bottom: 15px;
     border-bottom: 1px solid #e2e8f0;
     padding-bottom: 8px;
 }

 .info {
     font-size: 0.95rem;
     color: #ffffff;
     margin-bottom: 8px;
     line-height: 1.5;
 }

 .label {
     font-weight: bold;
     color: #ffffff;
 }

 /* ================= MEDIA QUERY (RESPONSIVIDADE) ================= */
 /* Quando o ecrã for menor que 768px (Telemóveis e Tablets na vertical) */
 @media (max-width: 768px) {
     .container-perfis {
         flex-direction: column;
         /* Muda o alinhamento de lado a lado para um abaixo do outro */
         align-items: center;
         padding: 10px;
         padding-top: 60%;
         gap: 20px;
     }

     .bloco-perfil {
         width: 100%;
         max-width: 100%;
         /* Ocupa a largura total disponível no telemóvel */
         padding: 0px;
     }

     .info {
         font-size: 0.85rem;
         color: #ffffff;
         margin-bottom: 8px;
         line-height: 1.5;
     }
 }

 /* -------------------------------- FIM   TRATAMENTO DA IMAGEM DO SLIDER DAS DUAS MOÇA ----------------------------------------*/



 /* -------------------------------- AREA DOS SIGNIFICADO NO SOBRE NOS ----------------------------------------*/


 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
 }

 .signif {
     background-color: var(--bg-color);
     color: var(--text-main);
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 20px;
 }

 .main-container {
     display: flex;
     background-color: var(--card-bg);
     max-width: 1100px;
     width: 100%;
     border-radius: 24px;
     overflow: hidden;
     box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

     /* Adicione esta linha: */
     margin: 0 auto;
 }



 /* Coluna Esquerda: Conteúdo */
 .content-column {
     flex: 1;
     padding: 60px;
     display: flex;
     flex-direction: column;
     gap: 30px;
 }

 header {
     margin-bottom: 20px;
 }

 .logo-area {
     display: inline-block;
     background: linear-gradient(135deg, var(--primary-blue), #007bff);
     color: white;
     padding: 12px 30px;
     border-radius: 50px;
     font-weight: 700;
     font-size: 1.6rem;
     letter-spacing: 1px;
     margin-bottom: 15px;
     box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
 }

 .slogan {
     font-size: 1.25rem;
     color: var(--accent-green);
     font-weight: 600;
     font-style: italic;
     border-left: 3px solid var(--accent-green);
     padding-left: 15px;
 }

 .main-objective {
     background-color: #f0f4f8;
     padding: 15px 20px;
     border-radius: 8px;
     font-weight: 600;
     color: var(--primary-blue);
     font-size: 1.1rem;
 }

 .info-block {
     border-bottom: 1px solid #e2e8f0;
     padding-bottom: 25px;
 }

 .info-block:last-child {
     border-bottom: none;
     padding-bottom: 0;
 }

 .badge {
     display: inline-block;
     padding: 5px 12px;
     border-radius: 20px;
     font-size: 0.75rem;
     text-transform: uppercase;
     font-weight: 700;
     letter-spacing: 0.5px;
     margin-bottom: 12px;
 }

 .badge-blue {
     background-color: #e1effe;
     color: var(--primary-blue);
 }

 .badge-green {
     background-color: #eafaf1;
     color: var(--accent-green);
 }

 p {
     font-size: 1rem;
     line-height: 1.7;
 }

 /* Coluna Direita: Imagem e Visual */
 .image-column {
     flex: 1;
     background-image: linear-gradient(135deg, rgba(0, 86, 179, 0.9), rgba(76, 175, 80, 0.8)),
         url('https://images.unsplash.com/photo-1552664730-d307ca884978?q=80&w=1200&auto=format&fit=crop');
     background-size: cover;
     background-position: center;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     padding: 60px;
     color: white;
     text-align: center;
     position: relative;

     height: 900px;
 }

 /* Overlay gráfico sutil para aumentar a atratividade */
 .image-column::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDQwIDQwIj48ZyBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSI+PHBhdGggZD0iTTAgMGg0MHY0MEgwVjB6bTIwIDIwaDIwdjIwSDIWMjB6TTAgMjBoMjB2MjBIMFYyMHoyMCAwaDIwdjIwSDIwVjB6Ii8+PC9nPjwvZz48L3N2Zz4=');
     opacity: 0.3;
 }

 .visual-content {
     position: relative;
     /* Fica acima do overlay */
     z-index: 1;
 }

 .visual-title {
     font-size: 2.5rem;
     font-weight: 800;
     margin-bottom: 20px;
     line-height: 1.2;
 }

 .visual-description {
     font-size: 1.1rem;
     opacity: 0.9;
     max-width: 400px;
     margin-bottom: 30px;
 }

 .cta-button {
     background-color: var(--card-bg);
     color: var(--primary-blue);
     padding: 12px 30px;
     border-radius: 50px;
     font-weight: 700;
     text-decoration: none;
     box-shadow: var(--shadow-md);
     transition: transform 0.2s, box-shadow 0.2s;
 }

 .cta-button:hover {
     transform: translateY(-2px);
     box-shadow: 0 15px 20px rgba(0, 0, 0, 0.15);
 }

 /* Responsividade */
 @media (max-width: 992px) {
     .main-container {
         flex-direction: column-reverse;
         /* Imagem no topo em mobile */
     }

     .content-column,
     .image-column {
         padding: 40px;
     }

     .visual-title {
         font-size: 2rem;
     }
 }

 /* -------------------------------- FIM AREA DOS SIGNIFICADO NO SOBRE NOS ----------------------------------------*/



 /* -------------------------------- FLIP FLOP Giro 3D ----------------------------------------*/

 /* Estilo de fundo da seção */
 .cta-section {
     background-color: #111;
     padding: 80px 0;
     overflow: hidden;
 }


 /* --- CONFIGURAÇÃO DO FLIP FLOP SEM ATRASO --- */

 /* O container define a área de perspectiva 3D */
 .flip-wrapper {
     perspective: 1200px;
     position: relative;
     min-height: 380px;
     /* Evita que o rodapé da página mude de lugar durante o giro */
     display: flex;
     justify-content: center;
     align-items: center;
 }

 /* Classes ativas de transição (Animação acontecendo) */
 .flip-enter-active,
 .flip-leave-active {
     transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
     backface-visibility: hidden;
     /* Esconde o verso do elemento enquanto ele vira */
     position: absolute;
     width: 100%;
     max-width: 650px;
     left: 0;
     right: 0;
     margin: 0 auto;
 }

 /* Estado inicial de quem entra (Formulário começa virado em 180º) */
 .flip-enter {
     transform: rotateY(180deg);
     opacity: 0;
 }

 /* Estado final de quem sai (CTA roda para trás e some) */
 .flip-leave-to {
     transform: rotateY(-180deg);
     opacity: 0;
 }


 /*--------------------------------  FIM FLIP FLOP Giro 3D  ----------------------------------------*/



 /* O container do modal DEVE ser relativo para o botão se posicionar em relação a ele */
 .modal-content {
     position: relative;
     /* ... seus estilos existentes do modal-content (background, padding, etc) ... */
 }

 /* Estilo para posicionar o botão exatamente por cima */
 .btn-close {
     position: absolute;
     top: 15px;
     /* Distância do topo */
     right: 15px;
     /* Distância da direita */
     z-index: 999;
     /* Garante que fica por cima de qualquer conteúdo interno */

     /* Estilos visuais adicionais para o botão (ajuste como preferir) */
     background: transparent;
     border: none;
     font-size: 1.5rem;
     cursor: pointer;
     line-height: 1;
     color: #333;
 }

 .btn-close:hover {
     color: #ff0000;
     /* Feedback visual ao passar o mouse */
 }