/* HERO CAROUSEL SWIPER */
.hero-carousel-section {
    width: 100%;
    margin-top: 0;
    padding: 0;
    position: relative;
    overflow: visible;
    background: #f5f5f5;
}

.heroSwiper {
    width: 100%;
    height: 600px;
    max-height: 100vh;
    padding: 0 15px;
    box-sizing: border-box;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    overflow: hidden;
}

.swiper-slide img.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* Pagination */
.swiper-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* Navigation Arrows */
.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.6);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 24px;
    color: white;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 992px) {
    .heroSwiper {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .heroSwiper {
        height: 350px;
        padding: 0 10px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
        display: none !important;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 18px;
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .swiper-pagination-bullet-active {
        width: 24px;
    }

    .swiper-pagination {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .heroSwiper {
        height: 280px;
        padding: 0 8px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 35px;
        height: 35px;
        display: none;
    }
}

/* HERO CAROUSEL CUSTOMIZADO */

.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 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideInDown 0.8s ease-out;
    position: relative;
    z-index: 1;
}

.hero-section p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    animation: slideInUp 0.8s ease-out;
    position: relative;
    z-index: 1;
}

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

.hero-section .btn {
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: auto;
    width: auto;
    position: relative;
    z-index: 1;
}

.hero-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Seções */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Carrossel */
.carousel-item {
    min-height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.carousel-item-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.carousel-item-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.carousel-item-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.promo-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 1rem;
}

.promo-btn {
    background: white;
    color: #667eea;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.promo-btn:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
}

/* Depoimentos */
.depoimento-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.depoimento-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h5 {
    margin: 0;
    font-weight: 600;
    color: #333;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #999;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

/* Formulário */
#formContato {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Mensagem de Resposta */
.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
footer {
    background-color: #A6036D !important;
    margin-top: 80px;
}

footer h5 {
    color: white;
    font-weight: 700;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: white !important;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

/* Animações */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

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

    .carousel-item {
        min-height: 300px;
    }

    .carousel-item-content h3 {
        font-size: 1.5rem;
    }

    .d-flex.gap-3 {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    #formContato {
        padding: 20px;
    }
}

/* Scroll Smooth */
html {
    scroll-behavior: smooth;
}

/* Overflow Hidden para animations */
body {
    overflow-x: hidden;
}
