/* CSS Variables */
:root {
    --primary-color: #4ECDC4;
    --secondary-color: #5DADE2;
    --dark-color: #2C3E50;
    --light-color: #FFFFFF;
    --text-dark: #2C3E50;
    --text-light: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-dark: linear-gradient(135deg, #1a252f, #2c3e50);
}



/* Global Styles */

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

.dark-color{
    background-color:  #4ECDC4;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: #f8f9fa;
}



html {
    scroll-behavior: smooth;
}

/* Glass Effects */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

/* Navigation */
.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}


.logo-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

.logo-text {
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    letter-spacing: 1px;
    margin-left: 85px;
}


/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  
  
}

.carousel .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -2;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.8), rgba(93, 173, 226, 0.8));
    z-index: -1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    animation: float var(--duration, 8s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    width: 100px;
    height: 100px;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    width: 120px;
    height: 120px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-glass-panel {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex; /* ou block, dependendo do layout */
    flex-direction: column;
    justify-content: center; /* Centraliza verticalmente */
    align-items: center; /* Centraliza horizontalmente */
    color: white; /* Altera a cor do texto para melhor visibilidade */

}

.hero-glass-panel:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.hero-title{
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.offcanvas .glass-btn {
    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);
    border-radius: 5px;
    padding: 5px 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Glass Buttons */
.glass-btn {
    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);
    border-radius: 25px;
    padding: 5px 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.glass-btn:hover::before {
    left: 100%;
}

.glass-btn-primary {
    color: white;
    background: rgba(78, 205, 196, 0.2);
    border-color: rgba(78, 205, 196, 0.3);
}

.glass-btn-primary:hover {
    color: white;
    background: rgba(78, 205, 196, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

.glass-btn-secondary {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.glass-btn-secondary:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.glass-btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.0rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    color: var(--text-dark);
    text-align: justify;
    text-justify: inter-word;
}

.section-subtitle strong {
  color: var(--primary-color); /* precisa ser uma cor sólida, não gradiente */
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto 3rem;
    border-radius: 2px;
}


.bg-dark-glass {
    background: var(--gradient-dark);
    position: relative;
}

.bg-dark-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* About Section */
.about-glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}


.about-content p {
    font-size: 1.0rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: justify;
    text-justify: inter-word;
}

.parceiros-section p {
    font-size: 1.0rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: justify;
    text-justify: inter-word;
}

.tragetoria .titulo {
    color: var(--primary-color);

}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Stats */
.stats-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-glass-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

.stat-content h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

/* Services */
.service-glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-glass-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.service-glass-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.4);
}

.service-glass-card h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-glass-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-glass-card img{
    width:170px; 
    padding-left: 14px;
    padding-right: 14px; 
    padding-top: 3px; 
    padding-bottom: 3px;
    filter: brightness(0);
}



/*TRAJETORIA CARDS */
/* trajetorias */
.trajetoria-glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.trajetoria-glass-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.trajetoria-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.trajetoria-glass-card:hover .trajetoria-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.4);
}

.trajetoria-glass-card h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.trajetoria-glass-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.trajetoria-glass-card img{
    width:170px; 
    padding-left: 14px;
    padding-right: 14px; 
    padding-top: 3px; 
    padding-bottom: 3px;
    filter: brightness(0);
}

/*TRAJETORIA CARDS */


/*INICIO NAVBAR */

.navbar-nav {
    background: transparent !important;
    font-weight: 500;
    padding: 5px 5px !important;
    border-radius: 80px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 10px 20px !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 5px !important;
    width: 130px;
    text-align: center;
    background-color: transparent;

}


.navbar-nav .nav-link:hover {
    background: transparent;
    backdrop-filter: blur(10px);
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    padding: 5px 5px !important;
}

.glass-toggler {
    border: none;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 8px 12px;
}


.glass-nav {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
        }

        .line-glass {
            bottom: -2px; /* Coloca a linha na parte inferior da navbar */
            height: 1px; /* Altura da linha */
            width: 100%;
            background: linear-gradient(to right, lightblue , lightpink, lightgreen ,white, lightgoldenrodyellow, lightcyan, lightblue,lightblue, lightgreen, lightblue);
            background-size: 200% 100%;
            animation: move 8s linear infinite;

            
        }

        .line-in-glass {
            bottom: -6px; /* Coloca a linha na parte inferior da navbar */
            height: 7px; /* Altura da linha */
            width: 100%;
            background: var(--glass-border);
            background-size: 200% 100%;
            animation: move 2s linear infinite;
            
        }

        @keyframes move {
            0% {
                background-position: 200% 0;
            }
            100% {
                background-position: 0 0;
            }
        }

        .navbar.scrolled {
    background-color: var(--primary-color) !important;
}


.navbar.scrolled .logo-top {
   filter: brightness(0) invert(1);
}

.navbar:not(.scrolled) .logo-top {
      filter: brightness(1) invert(0);
}

.navbar.scrolled .nav-link:hover {
    color: var(--text-dark) !important;

}

.navbar:not(.scrolled) .nav-link:hover {
      color: var(--text-dark) !important;
}

.navbar:not(.scrolled) button{
color: cyan;
background-color: var(--glass-bg);

}

.neon-text {
  color: cyan;
  text-shadow:  1 1 5px var(--secondary-color);
    
}

/*FIM NAVBAR */


/*carrossel indicators*/
 .glass-indicators {
    position: absolute;
    bottom: -200px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 12px 12px;
    z-index: 10;
    width: max-content;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border-radius: 40px;
}

.glass-indicators .rounded-circle {
    width: 12px; /* Tamanho fixo */
    height: 12px; /* Tamanho fixo */
    min-width: 12px; /* Evita distorções */
    min-height: 12px; /* Evita distorções */
    border-radius: 100%; /* Garante círculo perfeito */
    border: none;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    padding: 0; /* Remove espaçamento interno */
    cursor: pointer; /* Feedback visual */
    position: relative; /* Para efeitos internos */
}

.glass-indicators .rounded-circle.active {
    background: rgba(100, 200, 255, 0.9);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(100, 200, 255, 0.7);

}

.glass-indicators .rounded-circle:hover {
    background: var(--glass-border);
    border-radius: 100%; /* Garante círculo perfeito */

}

/* fim carrossel indicators*/

/* tragetoria */
.tragetoria-glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tragetoria-glass-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.tragetoria-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px var(--glass-border);
    transition: all 0.3s ease;
    padding: 5px;
}


.tragetoria-glass-card:hover .tragetoria-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.4);
}

.tragetoria-glass-card h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.tragetoria-glass-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.tragetoria-glass-card img {
     background: var(--gradient-primary);
     padding: 2px;
}

.tragetoria-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tragetoria-tag {
    background: rgba(78, 205, 196, 0.2);
    color: var(--primary-color);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(78, 205, 196, 0.3);
}




.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: rgba(78, 205, 196, 0.2);
    color: var(--primary-color);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(78, 205, 196, 0.3);
}

/* Features */
.feature-glass-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-glass-panel:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon-large {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

.feature-header h4 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}

.feature-header p {
    color: var(--text-dark);
    margin: 0;
    opacity: 0.8;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    
    font-size: 1.1rem;
    color: var(--text-dark);
}

.feature-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Contact Form */
.contact-glass-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.glass-input-group {
    position: relative;
    margin-bottom: 2rem;
}

.glass-input{
width: 100%;
padding: 1rem 1.5rem;
background: var(--glass-bg);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 15px;
color: white;
font-size: 1rem;
outline: none;
transition: all 0.3s ease;

background: var(--glass-bg);
backdrop-filter: blur(10px);
border: 2px solid var(--glass-border); /* Cor da borda */
display: flex;
justify-content: center;
margin: 0 auto 1.5rem;
align-items: center;
cursor: pointer;
box-shadow: 0 4px 10px var(--glass-bg);
transition: background 0.3s, transform 0.3s;
font-size: 1.1rem;
color: var(--text-light);


}

.glass-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.glass-label {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;

    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--dark-color); /* Cor da borda */
    display: flex;
    justify-content: center;
    margin: 0 auto 1.5rem;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px var(--primary-color);
    transition: background 0.3s, transform 0.3s;
    font-size: 1.1rem;
    color: var(--text-light);


    
}

.glass-input:focus + .glass-label,
.glass-input:not(:placeholder-shown) + .glass-label {
    top: -0.5rem;
    left: 1rem;
    font-size: 0.8rem;
    color: var(--primary-color);
    background: rgba(44, 62, 80, 0.8);
    padding: 0 0.5rem;
    border-radius: 15spx;
    width: 130px;
    text-align: center;
}

.glass-textarea {
    resize: vertical;
    min-height: 120px;
}

.glass-input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.glass-input:focus ~ .glass-input-border {
    width: 100%;
}

/* Contact Info */
.contact-info-card {
    text-align: center;
    padding: 2rem 1rem;


}

.contact-icon {
bottom: 20px;
right: 20px;
width: 70px;
height: 70px;
background: var(--primary-color);
backdrop-filter: blur(10px);
border-radius: 50%;
border: 5px solid var(--dark-color); /* Cor da borda */
display: flex;
justify-content: center;
margin: 0 auto 1.5rem;
align-items: center;
cursor: pointer;
box-shadow: 0 4px 10px var(--glass-bg);
transition: background 0.3s, transform 0.3s;
font-size: 1.8rem;
color: var(--text-light);
}

.contact-info-card:hover .contact-icon {
transform: scale(1.1);
box-shadow: 0 12px 30px rgba(78, 205, 196, 0.4);
border: 0 0 0 3px solid var(--primary-color); /* Cor da borda */
background: var(--glass-shadow);

}

.contact-info-card h5 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Footer */
.glass-footer {
    background: var(--primary-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
    color: rgba(255, 255, 255, 0.8);

}

.footer-brand {
    margin-bottom: 2rem;

}

.footer-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 1rem;
    opacity: 0.8;
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}



.footer a {
color: var(--text-light);
filter: brightness(1);
text-decoration: none;

}

.footer a:hover {
color: var(--text-dark);
transform: translateX(5px);
}



.footer-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.footer-divider {
    border-color: var(--gradient-primary);
    margin: 1rem 0 2rem;

}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
     margin: 0px;
}


/* SOCIAL ICONES*/
 .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 10px 0;
}

.social-glass-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1); /* Fundo glass */
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 18px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Cores específicas para cada ícone */
.social-glass-icon.instagram { background: rgba(225, 48, 108, 0.1); }
.social-glass-icon.facebook { background: rgba(24, 119, 242, 0.1); }
.social-glass-icon.linkedin { background: rgba(0, 119, 181, 0.1); }

/* Efeito hover (glass azul + brilho) */
.social-glass-icon:hover {
    transform: scale(1.1) translateY(-5px);
    background: rgba(100, 200, 255, 0.2);
    box-shadow: 
        0 0 10px rgba(100, 200, 255, 0.4),
        0 0 20px rgba(100, 200, 255, 0.2);
    border: 1px solid rgba(100, 200, 255, 0.4);
}

/* Efeito de "luz" interna ao hover */
.social-glass-icon:hover::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle, 
        rgba(255, 255, 255, 0.8) 0%, 
        transparent 70%
    );
    opacity: 0.3;
    animation: rotate-light 3s linear infinite;
}

@keyframes rotate-light {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/*FIM SOCIAL ICONES*/


/*GLASS LINES*/

.glass-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, lightblue , lightpink, lightgreen ,white, lightgoldenrodyellow, lightcyan, lightblue,lightblue, lightgreen, lightblue);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    margin-top: 95px;
}

.gradient {
    height: 100%;
    background: linear-gradient(to right, lightblue , lightpink, lightgreen ,white, lightgoldenrodyellow, lightcyan, lightblue,lightblue, lightgreen, lightblue);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    opacity: 0.7; /* Ajuste a opacidade conforme necessário */
}

.glass-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2); /* Efeito de vidro */

    z-index: 0;
}
/*FIM GLASS LINES*/




/*SCROLL TOP VOLTAR AO TOPO*/
.scroll-to-top {
position: fixed;
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 15%;
border: 2px solid var(--glass-border); /* Cor da borda */
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
box-shadow: 0 4px 10px var(--glass-bg);
transition: background 0.3s, transform 0.3s;
}

.scroll-to-top:hover {
background: rgba(255, 255, 255, 0.3);
transform: scale(1.1);
border-color: 0px 0px 2px var(--gradient-dark);
padding: 2px;
}

.arrow {
color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-glass-panel {
        padding: 2.5rem 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        gap: 1rem;
    }
    
    .stat-glass-card {
        padding: 1.5rem;
    }
    
    .feature-header {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-glass-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }

    
    
    .about-glass-card,
    .feature-gl

