/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Agdasima:wght@400;700&family=Bebas+Neue&family=Kanit&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--titulo);
}

html{
     scroll-behavior: smooth;
}

:root{
    --roxo-forte:#7228c2;
    --roxo-cinza:#6a4c9c;
    --azul-pretóleo:#1a1f3c;
    --branco:#f1f1f1;
    --preto:#333333;

    --titulo: "Bebas Neue", sans-serif;
    --subtitulo:"Kanit", sans-serif;
    --textos:"Agdasima", sans-serif;

    --font-size-titulo: 60px;
    --font-size-subtitulo: 50px;
    --font-size-texto: 25px;
}

h1{
    font-family: var(--titulo);
    font-size: var(--font-size-titulo);
}

h2, h3{
    font-family: var(--subtitulo);
    font-size: var(--font-size-subtitulo);
    color: var(--roxo-forte);
}

p{
    font-family: var(--textos);
    font-size: var(--font-size-texto);
}

.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.agdasima-regular {
  font-family: "Agdasima", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.kanit-regular {
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
    background-color: var(--azul-pretóleo);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

/* Stars Background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom, var(--azul-pretóleo) 0%, var(--azul-pretóleo) 100%);
    z-index: -1;
}

.star {
    position: absolute;
    background: var(--branco);
    border-radius: 50%;
    animation: twinkle var(--duration) infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
   /* background: linear-gradient(90deg, #6e45e2, #88d3ce);*/
    background: var(--branco);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

section {
    padding: 80px 0;
    position: relative;
}

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #161c36;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 15px 0;
}

#barranav {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 700;
    margin-left: 60px;
}

.logo-text {
    
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

nav ul li a {
    color: var(--branco);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: var(--roxo-forte)
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--roxo-cinza);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle i {
    font-size: 35px;
    color: #fff;
    transition: all 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: rgba(15, 14, 26, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: right 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    margin-top: 60px;
}

.mobile-menu ul li {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s;
}

.mobile-menu.active ul li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu ul li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu ul li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu ul li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu ul li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu ul li:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu ul li:nth-child(6) { transition-delay: 0.6s; }

.mobile-menu ul li a {
    color: #fff;
    text-decoration: none;
    
    font-weight: 500;
    display: block;
    padding: 10px 0;
    transition: color 0.3s;
}

.mobile-menu ul li a:hover {
    color: #88d3ce;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.close-menu:hover {
    color: var(--roxo-forte);
    transform: rotate(90deg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
    cursor: pointer;
    border: none;
    font-family: var(--subtitulo);
}

.btn-primary {
    background: var(--roxo-forte);
    color: var(--branco);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(110, 69, 226, 0.3);
    color: var(--roxo-forte);
    background-color: var(--branco);
}

.btn-secondary {
    border: 2px solid #6e45e2;
    color: #fff;
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(110, 69, 226, 0.2);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    display: flex;
    min-height: 100vh;
    align-items: center; /* Alinha verticalmente */
    position: relative;
    padding-top: 100px;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
    animation: fadeInUp 1s ease-out;
    z-index: 2; /* Garante que o texto fique sobre os elementos */
}

.hero h1 {
    margin-bottom: 20px;
    line-height: 1.2;
    width: 100%; /* Remove a largura fixa */
    max-width: 600px; /* Limita a largura máxima */
}

.hero p {
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 500px; /* Limita a largura do parágrafo */
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Permite quebra de linha em telas pequenas */
}

.hero-image {
    flex: 1;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.planet {
    width: 350px;
    height: 350px;
    position: relative;
    animation: float 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.planet img {
    width: 100%;
    height: auto;
    max-width: 350px;
    z-index: 2;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes float {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, -60%); }
}



/* About Section */
.about {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.team-illustration {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s;
}

.team-illustration:hover {
    transform: scale(1.02);
}

.mission-statement {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
    border: 1px solid rgba(110, 69, 226, 0.3);
    transition: all 0.3s;
}

.mission-statement:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.mission-statement h3 {
    
    margin-bottom: 15px;
    color: var(--roxo-forte);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--branco);
    border-radius: 15px;
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(50px);
}

.stat-number {
    font-size: 60px;
    font-weight: 700;
    background: var(--roxo-forte);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--roxo-forte);
    opacity: 0.8;
    font-size: 20px;
}

/* Services Section */
.services {
    text-align: center;
}

.section-title {
    
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 3px;
    background: var(--roxo-forte);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header {
    text-align: center;
    width: 100%;
}

.section-header::after {
    left: 50%;
    transform: translateX(-50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--branco);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    color: var(--preto);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border: var(--roxo-forte) solid 3px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(110, 69, 226, 0.1), rgba(136, 211, 206, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transition: 2s;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: var(--roxo-forte) solid 5px;
}

.service-icon {
    font-size: 80px;
    margin-bottom: 20px;
    color: #6e45e2;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.2);

}

.service-card h3 {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.service-card h3::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #6e45e2, #88d3ce);
    transition: width 0.3s;
}

.service-card:hover h3::after {
    width: 100%;
}

.text-serv{
    color: var(--preto);
}

/* CEO Spotlight Section */
.ceo-spotlight {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: radial-gradient(ellipse at center, rgba(26, 31, 60, 0.8) 0%, rgba(10, 12, 24, 0.9) 100%);
}

.ceo-container {
    display: flex;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ceo-photo-container {
    flex: 1;
    max-width: 400px;
}

.ceo-photo-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--roxo-forte);
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.5s ease;
}

.ceo-photo-frame:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 30px 60px rgba(110, 69, 226, 0.4);
}

.ceo-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.ceo-photo-frame:hover .ceo-photo {
    transform: scale(1.05);
}

.ceo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--roxo-forte);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: var(--subtitulo);
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ceo-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s;
    border: 1px solid rgba(110, 69, 226, 0.3);
}

.social-icon:hover {
    background: var(--roxo-forte);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(110, 69, 226, 0.3);
}

.ceo-content {
    flex: 2;
}

.ceo-quote {
    position: relative;
    padding: 30px;
    background: rgba(110, 69, 226, 0.1);
    border-left: 4px solid var(--roxo-forte);
    border-radius: 0 15px 15px 0;
    margin: 40px 0;
}

.quote-icon {
    color: var(--roxo-forte);
    font-size: 24px;
    opacity: 0.5;
}

.quote-icon:first-child {
    position: absolute;
    top: 10px;
    left: 10px;
}

.quote-icon:last-child {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.quote-text {
    font-family: var(--subtitulo);
    font-size: 28px;
    line-height: 1.4;
    color: white;
    margin: 15px 0;
    font-style: italic;
}

.education-timeline {
    margin: 50px 0;
    position: relative;
    padding-left: 30px;
}

.education-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, var(--roxo-forte), var(--roxo-cinza));
}

.education-timeline h3 {
    margin-bottom: 30px;
    color: var(--branco);
    font-family: var(--subtitulo);
    font-size: 28px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--roxo-forte);
    border: 3px solid var(--azul-pretóleo);
}

.timeline-date {
    position: absolute;
    left: -100px;
    top: 0;
    background: var(--roxo-forte);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-family: var(--subtitulo);
    font-size: 14px;
}

.timeline-content h4 {
    font-family: var(--subtitulo);
    color: var(--branco);
    margin-bottom: 5px;
    font-size: 20px;
}

.timeline-content p {
    color: var(--roxo-cinza);
    font-size: 18px;
}

.ceo-stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.ceo-stats .stat-item {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: rgba(110, 69, 226, 0.1);
    border-radius: 15px;
    border: 1px solid var(--roxo-forte);
    transition: all 0.3s;
}

.ceo-stats .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(110, 69, 226, 0.2);
}

.ceo-stats .stat-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--roxo-forte);
    margin-bottom: 5px;
}

.ceo-stats .stat-label {
    color: var(--branco);
    font-family: var(--subtitulo);
    font-size: 16px;
}

/* Floating 3D Objects */
.floating-object {
    position: absolute;
    border-radius: 5px;
    opacity: 0.2;
    z-index: 1;
    animation: float 15s infinite ease-in-out;
}

.cube {
    width: 100px;
    height: 100px;
    background: var(--roxo-forte);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    transform: rotate(45deg);
}

.pyramid {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid var(--roxo-cinza);
    bottom: 15%;
    right: 8%;
    animation-delay: 2s;
}

.sphere {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, var(--roxo-forte), var(--azul-pretóleo));
    border-radius: 50%;
    top: 60%;
    left: 85%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Responsive */
@media (max-width: 992px) {
    .ceo-container {
        flex-direction: column;
    }
    
    .ceo-photo-container {
        max-width: 100%;
    }
    
    .ceo-photo-frame {
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .timeline-date {
        position: relative;
        left: 0;
        margin-bottom: 10px;
        display: inline-block;
    }
}

@media (max-width: 576px) {
    .quote-text {
        font-size: 22px;
    }
    
    .ceo-stats {
        flex-direction: column;
    }
    
    .floating-object {
        display: none;
    }
}

/* Team Section */
.team {
    text-align: center;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member.ceo {
    border: 2px solid #6e45e2;
    box-shadow: 0 0 30px rgba(110, 69, 226, 0.3);
    position: relative;
}

.team-member.ceo::after {
    content: 'CEO';
    position: absolute;
    top: -10px;
    right: 20px;
    background: #6e45e2;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    
    font-weight: bold;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #6e45e2;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid #6e45e2;
}

#ceo-img{
    background-position-y: +50px;
}

.team-member h3 {
    
    margin-bottom: 5px;
    color: #88d3ce;
}

.team-position {
    
    opacity: 0.8;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.team-social a {
    color: #fff;
    
    transition: all 0.3s;
}

.team-social a:hover {
    color: #88d3ce;
    transform: translateY(-3px);
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 14, 26, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.portfolio-overlay p {
    transform: translateY(20px);
    transition: transform 0.3s 0.1s;
    opacity: 0.8;
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s;
    border: 1px solid rgba(110, 69, 226, 0.3);
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(110, 69, 226, 0.2);
    border-color: var(--roxo-forte);
}

.testimonial-content {
    flex: 1;
    margin-bottom: 20px;
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-text {
    font-style: italic;
    position: relative;
    padding-left: 20px;
    color: var(--branco);
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 50px;
    color: rgba(110, 69, 226, 0.3);
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--roxo-forte);
}

.author-info h4 {
    font-family: var(--subtitulo);
    color: var(--branco);
    margin-bottom: 5px;
    font-size: 18px;
}

.author-info p {
    font-family: var(--textos);
    color: var(--roxo-cinza);
    font-size: 16px;
    opacity: 0.8;
}

.testimonials-cta {
    margin-top: 50px;
    padding: 30px;
    background: rgba(110, 69, 226, 0.1);
    border-radius: 15px;
    border: 1px solid var(--roxo-forte);
}

.testimonials-cta p {
    margin-bottom: 20px;
    font-size: 22px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}

/* Contact Section */
.contact-form {
    max-width: 600px;
    margin: 50px auto 0;
    display: grid;
    gap: 20px;
    text-align: left;
}

/* Estilo específico para o campo WhatsApp */
input[type="tel"] {
    font-family: var(--textos);
    letter-spacing: 1px;
}

/* Mensagem de validação */
input:invalid {
    border-color: #ff6b6b;
}

input:invalid + label::after {
    content: "";
    font-size: 0.8em;
    color: var(--roxo-cinza);
}

.form-group {
    position: relative;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 20px;
    color: #fff;
    opacity: 0.7;
    transition: all 0.3s;
    pointer-events: none;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 20px 20px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
   
    transition: all 0.3s;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6e45e2;
    box-shadow: 0 0 0 2px rgba(110, 69, 226, 0.3);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 8px;
    left: 15px;
    
    opacity: 1;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.2);
    padding: 60px 0 30px;
    text-align: center;
    position: relative;
}

.footer-logo {

    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo i {
    margin-right: 10px;
    color: #6e45e2;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: #88d3ce;
    transition: width 0.3s;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: #88d3ce;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links a {
    color: #fff;
    
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    color: #88d3ce;
    transform: translateY(-3px);
    background: rgba(136, 211, 206, 0.2);
}

.copyright {
    opacity: 0.7;
    
}

/* Add to your existing CSS */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    
    transition: all 0.3s;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    
    background: #0f0e1a;
    padding: 0 5px;
    color: #88d3ce;
}

/* Loading spinner for submit button */
.fa-spinner {
    margin-right: 8px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 14, 26, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1a1835;
    padding: 30px;
    border-radius: 15px;
    max-width: 400px;
    text-align: center;
    border: 1px solid #6e45e2;
    box-shadow: 0 0 30px rgba(110, 69, 226, 0.5);
    animation: fadeIn 0.3s ease-out;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    
    cursor: pointer;
    color: #88d3ce;
}

#whatsappBtn {
    margin-left: 15px;
    background: #25D366;
    color: white;
    border: none;
}

#whatsappBtn:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

/* Modal Styles - Add to your CSS */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 14, 26, 0.9);
            z-index: 10000;
            align-items: center;
            justify-content: center;
        }
        .modal-content {
            background: #1a1835;
            padding: 30px;
            border-radius: 15px;
            max-width: 400px;
            text-align: center;
            border: 1px solid #6e45e2;
            box-shadow: 0 0 30px rgba(110, 69, 226, 0.5);
            animation: fadeIn 0.3s ease-out;
            position: relative;
        }
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            
            cursor: pointer;
            color: #88d3ce;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

#whatsappBtn i {
    margin-right: 8px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Instagram Widget Styling */
.elfsight-instagram-container {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Featured Post Styling */
.featured-post {
    margin-bottom: 60px;
}

.blog-post {
    display: flex;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.post-image {
    flex: 1;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.post-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #6e45e2;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    
    font-weight: bold;
}

.post-content {
    flex: 1;
    padding: 40px;
}

/* Instagram Header */
.instagram-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 60px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.instagram-header i {
    
    background: radial-gradient(circle at 30% 107%, 
        #fdf497 0%, #fdf497 5%, 
        #fd5949 45%, #d6249f 60%, 
        #285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.follow-btn {
    margin-left: auto;
    padding: 8px 20px;
    background: #405DE6;
    border-radius: 4px;
    
    transition: all 0.3s;
}

.follow-btn:hover {
    background: #833AB4;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6e45e2, #88d3ce);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(110, 69, 226, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 32px;
        
        
    }
    
    .planet {
        width: 350px;
        height: 350px;
    }
    
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
         padding: 0 20px;
    }
    

    .hero-buttons {
        justify-content: center;
    }

    .planet {
        width: 300px;
        height: 300px;
    }

    .about {
        flex-direction: column;
    }

    .about-image {
        order: -1;
        margin-bottom: 40px;
    }
    
    .mission-statement {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 66px;
    }

    .hero p {
        font-size: 20px;
    }

    .section-title {
        font-size: 45px;
    }

    .section-subtitle {
        font-size: 26px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links {
        gap: 15px;
    }
}

/* ==================== */
/* RESPONSIVO PARA CELULAR */
/* ==================== */

@media (max-width: 576px) {
    /* Ajustes gerais */
    :root {
        --font-size-titulo: 36px;
        --font-size-subtitulo: 28px;
        --font-size-texto: 18px;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 50px 0;
    }

    /* Header */
    header {
        padding: 10px 0;
    }

    .logo {
        margin-left: 15px;
        font-size: 22px;
    }

    .logo img {
        width: 35px;
    }

    .menu-toggle i {
        font-size: 28px;
    }

    /* Hero Section */
    .hero {
        padding-top: 80px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 32px;
        margin-top: 1rem;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .planet {
        width: 250px;
        height: 250px;
        margin-top: 30px;
    }

    /* About Section */
    .about-content {
        text-align: center;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .stat-item:hover {
        transform: none;
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 20px;
    }

    /* CEO Section */
    .ceo-container {
        flex-direction: column;
    }

    .ceo-photo-container {
        margin-bottom: 30px;
    }

    .ceo-content {
        text-align: center;
    }

    .ceo-quote {
        padding: 20px;
    }

    .quote-text {
        font-size: 22px;
    }

    .education-timeline {
        padding-left: 0;
    }

    .education-timeline::before {
        display: none;
    }

    .timeline-item {
        padding-left: 0;
        text-align: center;
    }

    .timeline-item::before {
        display: none;
    }

    .timeline-date {
        position: relative;
        left: 0;
        margin-bottom: 10px;
    }

    .ceo-stats {
        flex-direction: column;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 20px;
    }

    /* Contact Form */
    .form-buttons {
        flex-direction: column;
    }

    #whatsappBtn {
        margin-left: 0;
        margin-top: 15px;
    }

    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .social-links {
        flex-wrap: wrap;
    }
}

/* Ajustes para tablets */
@media (min-width: 577px) and (max-width: 768px) {
    /* Ajustes gerais */
    :root {
        --font-size-titulo: 42px;
        --font-size-subtitulo: 32px;
        --font-size-texto: 20px;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Portfolio Grid */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}