body {
    font-family: 'Lato', sans-serif;
}
.hero {
    background: url('/customassets/images/backgrounds/background.webp') no-repeat center center;
    background-size: cover;
    height: 60vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-attachment: fixed; /* Parallax effect */
}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Darker overlay */
}
.hero .container {
    position: relative;
    z-index: 1;
}
.hero .btn {
    margin-top: 20px;
}
.features, .about-us, .testimonials, .portfolio, .faq, .clientes, .subscriptions, .youtube-section {
    padding: 60px 0;
}
.features:nth-of-type(even),
.about-us:nth-of-type(even),
.testimonials:nth-of-type(even),
.portfolio:nth-of-type(even),
.faq:nth-of-type(even),
.clientes:nth-of-type(even),
.subscriptions:nth-of-type(even),
.youtube-section:nth-of-type(even) {
    background-color: #f8f9fa;
}
.features .icon-o, .clientes .icon-o {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.portfolio img {
    max-width: 150px;
    margin: 10px;
}
.portfolio img {
    max-width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s;
}
.portfolio img:hover {
    transform: scale(1.05);
}
.portfolio .large-image {
    max-width: 100%;
    height: auto;
}
.faq h4 {
    cursor: pointer;
}
.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}
.navbar-brand img {
    height: 50px;
}
/* Contact section specific styles */
.contact {
    background-color: #ffffff; /* Set background color */
    padding: 50px 0; /* Adjust padding as needed */
}

.contact .section-title {
    color: #e91e63;
}

.contact .card {
    background-color: #f8f9fa; /* Set background color */
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact .card-body {
    padding: 20px;
}

.contact .card-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.contact .card-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

.social-links {
    margin-top: 20px;
}

.social-icon {
    display: inline-block;
    font-size: 24px;
    color: #333;
    margin-right: 10px;
}

.social-icon:hover {
    color: #e91e63; /* Change color on hover as needed */
}
.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 5px;
}
.mosaic-item {
    overflow: hidden;
    position: relative;
}
.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.0s;
}
.mosaic-item:hover img {
    transform: scale(1.1);
}
.mosaic-item.large {
    grid-column: span 2;
    grid-row: span 2;
}
.mosaic-item.tall {
    grid-row: span 2;
}
.mosaic-item.wide {
    grid-column: span 2;
}
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    color: #e91e63; /* Pink color */
    margin: 0 auto; /* Center the title */
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: #e91e63; /* Pink color */
    bottom: 0;
    left: 25%;
    right: 25%; /* Adjust for centering */
}

.clients {
    padding: 20px;
    background-color: #f0f0f0;
    text-align: center;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Adjust spacing between logos */
}

.client-logos img {
    width: 80px; /* Set a fixed width for the logos */
    height: 80px; /* Set a fixed height for the logos */
    border-radius: 20%; /* Make the logos circular */
    object-fit: cover; /* Ensure the entire logo fits within the circle */
    border: 1px solid #e91e63;
}
/* Statistics section specific styles */
.statistics {
    background-color: #ffffff; /* Background color for the statistics section */
    padding: 50px 0;
}

.statistics .statistic-item {
    padding: 20px;
    background-color: #f0f0f0; /* Background color for statistic items */
    border-radius: 8px;
    margin-bottom: 20px;
}

.statistics .statistic-number {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.statistics .statistic-label {
    font-size: 18px;
    color: #666;
    margin-bottom: 0;
}

.blog-container {
    margin: 80px auto;
    padding: 100px 0;
    max-width: 800px;
    margin: 50px auto;
}

.blog {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.blog .card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.blog .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.blog .card-body {
    padding: 20px;
}

.blog .card-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
}

.blog .card-text {
    font-size: 1rem;
    color: #666;
}

.blog .btn {
    background-color: #e91e63;
    border: none;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    transition: background 0.3s;
}

.blog .btn:hover {
    background-color: #d81b60;
}

.blog-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.blog-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.blog-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 15px;
    background-color: #e91e63;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.back-link:hover {
    background-color: #d81b60;
}

.error-message {
    font-size: 1.2rem;
    color: red;
    text-align: center;
    margin-top: 20px;
}

