/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors (HSL) */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(218, 11%, 12%);
    
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(218, 11%, 12%);
    
    --primary: hsl(267, 85%, 20%);
    --primary-foreground: hsl(0, 0%, 98%);
    --primary-glow: hsl(213, 100%, 40%);
    
    --secondary: hsl(210, 30%, 96%);
    --secondary-foreground: hsl(218, 11%, 12%);
    
    --muted: hsl(210, 30%, 96%);
    --muted-foreground: hsl(218, 11%, 65%);
    
    --accent: hsl(254, 88%, 90%);
    --accent-foreground: hsl(254, 88%, 20%);
    
    --border: hsl(214, 20%, 90%);
    --input: hsl(214, 20%, 90%);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, rgba(255,0,135,1.00), rgba(255,0,135,1.00));
    --gradient-secondary: linear-gradient(135deg, rgba(255,0,135,1.00), rgba(255,0,130,1.00));
    --gradient-hero: linear-gradient(135deg, rgba(34,8,57,1.00), hsl(254, 88%, 25%));
    
    /* Shadows */
    --shadow-glow: 0 0 40px rgba(100,35,180,0.30);
    --shadow-card: 0 10px 40px hsla(213, 84%, 20%, 0.1);
    
    /* Border radius */
    --radius: 0.5rem;
    
    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0.95;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-image: url('assets/hero-communication.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--primary-foreground);
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    font-size: 1.075rem;
    font-weight: 500;
    animation: fadeIn 0.6s ease-out;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.gradient-text {
    background: var(--gradient-secondary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeIn 0.6s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 1;
	 color: white;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.6s ease-out 0.8s both;
}

.floating-icon {
    position: absolute;
    opacity: 0.6;
    animation: pulse 2s infinite;
}

.floating-icon-1 {
    top: 5rem;
    left: 5rem;
}

.floating-icon-2 {
    bottom: 8rem;
    right: 5rem;
}

.floating-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--primary-glow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-foreground);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: rgba(100,35,180,1.0);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-foreground);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-cta {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

.btn-cta:hover {
    transform: translateY(-2px);
	 color: var(--primary-foreground);
    box-shadow: var(--shadow-glow);
}

.btn-outline-light {
    background: transparent;
    color: var(--primary-foreground);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
}


/* clientes */
.clientes {
    padding: 2rem 0;
    background-color: white;
}

.clientes-header {
    text-align: center;
    margin-bottom: 2rem;
}

.clientes-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.clientes-subtitle {
    font-size: 1.25rem;
    color: grey;
    max-width: 48rem;
    margin: 0 auto;
}

.logo-carousel {
  overflow: hidden;
  width: 100%;
  background: #fff;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  width: calc(200%); /* duplicado para o loop */
  animation: scroll 20s linear infinite;
}

.carousel-slide {
  flex: 0 0 auto;
  width: 200px; /* ajuste conforme necessário */
  margin: 0 20px;
}

.carousel-slide img {
  width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter 0.3s;
}

.carousel-slide img:hover {
  filter: grayscale(0%);
	
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* secaoimagem */
.secaoimagem {
    padding: 0rem 0;
    background-color: white;
}

.secaoimagem {
    text-align: center;
    margin-bottom: orem;
}

.secaoimagem {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0rem;
    color: var(--foreground);
}

.section-subtitle {
    font-size: 1.25rem;
    color: #222;
    max-width: 48rem;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 2rem 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.section-subtitle {
    font-size: 1.25rem;
    color: #222;
    max-width: 48rem;
    margin: 0 auto;
	   font-weight:600;
	
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
	
}

.service-card {
    background: rgba(28,8,52,1.00);
    backdrop-filter: blur(8px);
    border: 0px solid rgba(214, 20%, 90%, 0.5);
    border-radius: var(--radius);
    padding: 1rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
	
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.service-card:hover .service-icon {
    box-shadow: var(--shadow-glow);
}

.service-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-foreground);
}

.service-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255,0,130,1.00);
}

.service-description {
    color: white;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
	background: rgba(28,8,52,1.00);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
}

.benefits-subtitle {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
	color: white;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-check i {
    width: 1rem;
    height: 1rem;
    color: var(--primary-foreground);
}

.benefits-right {
	vertical-align: top;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}



.stat-card {
    background: var(--card);
    border: 0px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.stat-card:hover {
    box-shadow: var(--shadow-glow);
}

.stat-card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
	
}

.stat-card-icon {
    padding: 0.75rem;
    border-radius: var(--radius);
    background: var(--secondary);
}

.stat-card-icon.green {
    color: hsl(142, 76%, 36%);
}

.stat-card-icon.red {
    color: hsl(0, 84%, 60%);
}

.stat-card-icon.blue {
    color: hsl(221, 83%, 53%);
}

.stat-card-value {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--foreground);
}

.stat-card-label {
    color: var(--muted-foreground);
}

.testimonial {
    background: rgba(100,35,180,1.00);
    padding: 1.5rem;
    border-radius: var(--radius);
    color: var(--primary-foreground);
}

.testimonial blockquote {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-company {
    opacity: 0.8;
    font-size: 0.875rem;
}


/* investir */
.invest {
    padding: 6rem 0;
	background: rgba(100,25,180,1.00);
}

.invest-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;

}

.invest-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
}

.invest-subtitle {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2rem;
}

.invest-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
	color: white;

}

.invest-item {
    display: flex;
    align-items: center;
	text-align:center;
    gap: 0.75rem;

}

.invest-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.invest-check i {
    width: 1rem;
    height: 1rem;
    color: var(--primary-foreground);
}






/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 75rem;
    margin: 0 auto;
}
.contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: rgba(255,0,135,1.00);
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #222;
    max-width: 48rem;
    margin: 0 auto;
	font-weight:600;
}

/* diferencial Section */
.diferencial {
    padding: 2rem 0;
    background-color: rgba(70,20,130,1.00);
}

.diferencial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
}
.diferencial-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.diferencial-subtitle {
    font-size: 1rem;
    color: white;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 3rem 0;
	width: 100%;
	
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1200px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: bold;
}

.footer-description {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--primary-foreground);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}



.footer-column-title {
    font-weight: 600;
    margin-bottom: 1rem;
	align: right
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-foreground);
}

.footer-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    opacity: 1.0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-foreground);
}


/* CASES */
.four-columns {
  padding: 60px 0;
  background: #f9f9f9;
}
.four-columns .container {
  width: 90%;
  margin: 0 auto;
}
.columns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.column-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.column-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}
.column-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #222;
}
.column-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}
@media (max-width: 1024px) {
  .columns-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .columns-grid {
    grid-template-columns: 1fr;
  }


.seo-extra {
  padding: 60px 0;
  
}

.seo-extra .seo-title {
  font-size: 14px;
  margin-bottom: 20px;
  color: white;
}

.seo-extra p {
  font-size: 14px;
  line-height: 1.0;
  margin-bottom: 16px;
  color: white;
}

	
	
	
	

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .benefits-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-main {
        grid-column: 1 / -1;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-icon-1,
    .floating-icon-2 {
        display: none;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .services,
    .benefits,
    .contact {
        padding: 4rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

	
	
	/* Cookies */
	
	.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  color: #222;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  z-index: 9999;
}

.cookie-consent p {
  margin: 10;
  max-width: 80%;
	font-weight: bold;
	
}

.cookie-consent a {
  color: #461482;
	font-weight: bold;
  text-decoration: underline;
}

.cookie-consent button {
  background: #461482;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  transition: background 0.3s;
}

.cookie-consent button:hover {
  background: #6423b4;
  color: #fff;
}
	
	