/* =====================================================
   HOME
   ===================================================== */
.banner-featured {
    margin-bottom: 50px;
}

#carouselExample .carousel-indicators {
    bottom: -45px;
}

#carouselExample .carousel-indicators [data-bs-target] {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--borderInputColor);
    opacity: 1;
    margin: 0 5px;
    border: none;
}

#carouselExample .carousel-indicators .active {
    background-color: var(--primaryColor);
}

.about {
    margin: 60px 0;
    padding: 20px;
    border: 1px solid var(--primaryColor);
    border-top: 4px solid var(--primaryColor);
    background: var(--whiteColor);
    border-radius: var(--borderRadius);
    box-shadow: var(--boxShadow);
}

.about h1 {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 600;
}

.about .content-about {
    font-size: 16px;
    line-height: 20px;
}

/* Adicione ao seu arquivo CSS */
.about-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
}

.about-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.about-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-image-item figure {
    margin: 0;
    position: relative;
}

.gallery-link {
    display: block;
    cursor: pointer;
}

.about-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Responsividade */
@media (max-width: 768px) {
    .about-images-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }

    .about-image {
        height: 150px;
    }
}

.wheretofind {
    padding: 40px 0;
    background: var(--grayColor);
}

.wheretofind h1 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 30px;
    font-weight: 600;
}

.wheretofind-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.wheretofind-item {
    background: var(--whiteColor);
    border-radius: var(--borderRadius);
    overflow: hidden;
    box-shadow: var(--boxShadow);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.wheretofind-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.wheretofind-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.wheretofind-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wheretofind-item:hover .wheretofind-image img {
    transform: scale(1.05);
}

.wheretofind-content {
    padding: 1.5rem;
}

.wheretofind-content h2 {
    font-size: 30px;
    margin-bottom: 1rem;
}

.wheretofind-content .short-text {
    margin-bottom: 20px;
    font-size: 15px;
}

.btn-wheretofind {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    text-align: center;
}

.btn-wheretofind:hover {
    background-color: #0056b3;
    color: white;
    text-decoration: none;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .wheretofind-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .wheretofind h1 {
        font-size: 2rem;
    }

    .wheretofind-content h2 {
        font-size: 1.25rem;
    }
}

.products {
    padding: 20px 0;
}

.products h1 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

    background: var(--whiteColor);
    border-radius: var(--borderRadius);
    box-shadow: var(--boxShadow);
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.product-card {
    cursor: pointer;
}

.product-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-image-placeholder {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #999;
    font-size: 0.9rem;
}

.product-info {
    padding: 1rem;
    text-align: center;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1rem;
    }

    .product-image,
    .product-image-placeholder {
        height: 180px;
    }

    .product-name {
        font-size: 0.95rem;
    }
}

.maps iframe {
    width: 100%;
    height: 400px;
    background: var(--grayColor);
}

/* Estilos adicionais para o layout completo */
.main-image-wrapper {
    margin-bottom: 2rem;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.main-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.short-text {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
    font-style: italic;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.responsive-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.about-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.gallery-section {
    margin-top: 20px;
}

.about-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f5f5f5;
}

.about-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-link {
    display: block;
    text-decoration: none;
}

.about-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.image-caption {
    display: block;
    padding: 0.75rem;
    text-align: center;
    font-size: 0.9rem;
    color: #555;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.error-message {
    text-align: center;
    padding: 3rem;
    background: #fee;
    border-radius: 8px;
    color: #c00;
    margin: 2rem 0;
}

.btn-back {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-back:hover {
    background: #0052a3;
}

/* Responsive */
@media (max-width: 768px) {
    .about-images-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1rem;
    }

    .about-image {
        height: 180px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .short-text {
        font-size: 1rem;
    }
}

/* Loading Skeleton */
.skeleton-loading {
    animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
    0% {
        background-color: #f0f0f0;
    }
    100% {
        background-color: #e0e0e0;
    }
}

.address .fence {
    padding: 20px;
    background: var(--grayColor);
    border-radius: var(--borderRadius);
}

.address p {
    margin-bottom: 20px;
}

.address p:last-child {
    margin-bottom: 0px;
}

.address p span {
    display: block;
    font-size: 15px;
    font-weight: 500;
}

/* Social Media Section */
.social-media-section,
.whatsapp-section {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    flex: 1;
    min-width: 140px;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-link i {
    font-size: 1.5rem;
}

.social-name {
    font-weight: 500;
    text-transform: capitalize;
}

/* Cores específicas para cada rede social */
.social-link.social-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.social-link.social-instagram:hover {
    background: linear-gradient(
        45deg,
        #405de6,
        #5851db,
        #833ab4,
        #c13584,
        #e1306c,
        #fd1d1d
    );
    border-color: #c13584;
    color: white;
}

.social-link.social-twitter:hover {
    background: #000;
    border-color: #000;
    color: white;
}

.social-link.social-youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: white;
}

.social-link.social-linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: white;
}

/* WhatsApp Section */
.whatsapp-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-button:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button i:first-child {
    font-size: 1.8rem;
}

.whatsapp-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.whatsapp-phone {
    font-weight: bold;
    font-size: 1.1rem;
}

.whatsapp-phrase {
    font-size: 0.85rem;
    opacity: 0.9;
}

.whatsapp-button i:last-child {
    font-size: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.whatsapp-button:hover i:last-child {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info-card,
    .social-media-section,
    .whatsapp-section {
        padding: 1.5rem;
    }

    .social-icons {
        flex-direction: column;
    }

    .social-link {
        width: 100%;
    }

    .contact-item {
        flex-direction: column;
    }

    .contact-icon {
        margin-bottom: 0.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info-card,
.social-media-section,
.whatsapp-section {
    animation: fadeInUp 0.5s ease-out;
}

.social-media-section {
    animation-delay: 0.1s;
}

.whatsapp-section {
    animation-delay: 0.2s;
}

.form-client {
    padding: 20px;
    background: var(--borderContainer);
    border-radius: var(--borderRadius);
    box-shadow: var(--boxShadowInsetSoft);
    transition: all 0.3s ease;
    border: 1px solid var(--grayColorVariation);
}
