:root {
    --primary-purple: #5B21B6;
    --secondary-purple: #6D28D9;
    --accent-yellow: #FCD34D;
    --dark-purple: #5B21B6;
    --light-bg: #F9FAFB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.swiper {
      width: 100%;
      padding-top: 50px;
      padding-bottom: 50px;
    }

    .swiper-slide {
      background-position: center;
      background-size: cover;
      width: 300px;
      height: 300px;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
    }
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}
.site-header{
    padding: 2em 0px; 
}
 
.site-title {
    max-width:600px;
    margin: auto;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-purple);
}
/* Navbar */
.navbar {
    background: var(--primary-purple);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
}

.nav-link {
    color: white !important;
    margin: 0 0.5rem;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.8;
}

.btn-criar-catalogo {
    background: var(--accent-yellow);
    color: var(--dark-purple);
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    border: none;
    transition: transform 0.3s;
}

.btn-criar-catalogo:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-primary-custom {
    background: var(--accent-yellow);
    color: var(--dark-purple);
    border: none;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(252, 211, 77, 0.3);
}

.btn-outline-custom {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-custom:hover {
    background: white;
    color: var(--primary-purple);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* Steps Section */
.steps-section {
    padding: 4rem 0;
    background: white;
}

.step-card {
    margin-bottom: 2rem;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 1rem;
}

.step-description {
    color: #4B5563;
    line-height: 1.6;
}
.grid-cases{
  display: grid;
grid-template-columns: repeat(5, 1fr);
grid-template-rows: repeat(2, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;  
}
/* Target Audience Section */
.audience-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.audience-card {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
   min-height: 450px;
}
 

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(91, 33, 182, 0.3);
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: rgba(252, 211, 77, 0.2);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.audience-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: white;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 0.8rem;
}

.feature-description {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Innovation Section */
.innovation-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.innovation-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}

.innovation-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.innovation-feature h4 {
    font-weight: 700;
    margin-bottom: 0.8rem;
}

/* Local Presence Section */
.local-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-purple) 100%);
    color: white;
}

.local-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.local-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.local-features {
    list-style: none;
    padding: 0;
}

.local-features li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.local-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
    font-weight: bold;
    font-size: 1.2rem;
}
/*blog*/
.entry-col .entry .entry-date{
    font-size: 11px;
    text-align: left
}
.entry-col .entry .entry-title{
    font-size: 1.2em;
    font-weight: bold;
    text-align: left;
    color:#FFF
}
.entry-col .entry a{ 
    color:#FFF;
    text-decoration: none
}
.entry-col .entry p{ 
    text-align: justify
}
.entry-col .entry .thumbnail-attachment img{
    position: absolute;
    object-fit: cover;
    width:100%;height:100%;
    object-position: center;
}
.entry-col .entry .thumbnail-attachment{
    height: 230px;
    position: relative;
    overflow: hidden
    
}
/*end blog*/
/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

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

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: white;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-purple);
    margin-bottom: 3rem;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.8rem;
}

.faq-answer {
    color: #4B5563;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--dark-purple);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}
.footer-whatsapp{
    position: fixed;
    right:30px;
    bottom: 30px;
}
.footer-whatsapp div{
    display: none
}
/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .step-number {
        font-size: 2rem;
    }

    .local-title {
        font-size: 1.8rem;
    }
    .audience-card { 
   min-height: 250px;
}
}