* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 30px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.header p {
    font-size: 1.1rem;
    font-weight: 300;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #fff5f0 0%, #ffffff 100%);
    padding: 60px 0 40px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

/* Carousel Section */
.carousel-section {
    padding: 40px 0 80px;
    overflow: hidden;
    background-color: #ffffff;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    animation: scroll 60s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* REMOVA OU COMENTE ESTA LINHA */
/* .carousel-track:hover {
    animation-play-state: paused;
} */


/* Carrossel com scroll horizontal */
.carousel-track {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    cursor: grab;
    user-select: none;
}

.carousel-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-card {
    scroll-snap-align: start;
    flex-shrink: 0;
}


.carousel-card {
    flex: 0 0 350px;
    margin: 0 15px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

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

.carousel-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
    text-align: center;
}

.card-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.price {
    font-size: 1.3rem;
    color: #ff6b35;
    margin-bottom: 15px;
    font-weight: 600;
}

.price strong {
    font-size: 1.6rem;
    font-weight: 700;
}

.description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-saiba-mais {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-saiba-mais:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-whatsapp {
    display: inline-block;
    background: white;
    color: #ff6b35;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp span {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
}

footer p {
    margin: 5px 0;
    font-size: 0.95rem;
}

/* Service Page Styles */
.service-header {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.service-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.service-header .price-highlight {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 15px;
}

.service-content {
    padding: 60px 0;
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

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

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

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

.service-description {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 30px;
    background: #fff5f0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-description h2 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.whatsapp-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-whatsapp-large {
    display: inline-block;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-large span {
    font-size: 1.8rem;
    margin-right: 15px;
}

.back-link {
    display: inline-block;
    margin: 30px 0;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #ff8c42;
    transform: translateX(-5px);
}

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

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

    .carousel-card {
        flex: 0 0 280px;
    }

    .card-image {
        height: 200px;
    }

    .service-header h1 {
        font-size: 1.8rem;
    }

    .service-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .carousel-card {
        flex: 0 0 250px;
        margin: 0 10px;
    }

    .card-content {
        padding: 20px 15px;
    }

    .card-content h3 {
        font-size: 1.2rem;
    }

    .btn-whatsapp-large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}


/* Adicionar ao final do arquivo styles.css */

/* Melhorias para drag/swipe */
.carousel-track {
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-track img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Dica visual de arraste */
.drag-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 107, 53, 0.9);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
    opacity: 1;
    transition: opacity 0.5s ease;
    animation: pulseHint 2s ease-in-out infinite;
}

@keyframes pulseHint {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .drag-hint {
        font-size: 0.85rem;
        padding: 10px 25px;
        bottom: 15px;
    }
}

/* Remove seleção de texto durante drag */
.carousel-section {
    -webkit-tap-highlight-color: transparent;
}

/* Melhoria visual durante o hover */
.carousel-card {
    transition: all 0.3s ease, transform 0.3s ease;
}

.carousel-track:not(:active) .carousel-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Indicador de scroll touch para mobile */
@media (max-width: 768px) {
    .carousel-container::before,
    .carousel-container::after {
        display: none !important;
        content: '' !important;
        background: none !important;
    }
}




/* Carrossel com animação CSS */
.carousel-track {
    display: flex;
    animation: scroll 60s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* REMOVE O HOVER QUE PAUSA */
/* NÃO ADICIONE ISSO:
.carousel-track:hover {
    animation-play-state: paused;
}
*/

/* ============================================
   BOTÕES DE CONTROLE - DESIGN PREMIUM
   ============================================ */

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 80px; /* Mais espaço (equivalente a 2 quebras de linha) */
    padding: 0 20px;
}

.control-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(145deg, #ff7e50 0%, #ff5722 50%, #e64a19 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 20px rgba(255, 87, 34, 0.4),
        0 4px 10px rgba(255, 87, 34, 0.3),
        inset 0 -2px 5px rgba(0, 0, 0, 0.2);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Efeito de brilho nos botões */
.control-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.control-btn:hover::before {
    left: 100%;
}

.control-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 12px 30px rgba(255, 87, 34, 0.5),
        0 6px 15px rgba(255, 87, 34, 0.4),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.control-btn:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 5px 15px rgba(255, 87, 34, 0.4),
        inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.control-btn.active-btn {
    animation: pulse 0.3s ease;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.95); }
}

.control-btn svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.control-btn:hover svg {
    transform: scale(1.15);
}

.control-btn span {
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Botão Play/Pause - Verde/Vermelho */
.control-btn-play {
    background: linear-gradient(145deg, #66BB6A 0%, #4CAF50 50%, #388E3C 100%);
    box-shadow: 
        0 8px 20px rgba(76, 175, 80, 0.4),
        0 4px 10px rgba(76, 175, 80, 0.3),
        inset 0 -2px 5px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    min-width: 140px;
}

.control-btn-play:hover {
    box-shadow: 
        0 12px 30px rgba(76, 175, 80, 0.5),
        0 6px 15px rgba(76, 175, 80, 0.4),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.control-btn-play.paused {
    background: linear-gradient(145deg, #EF5350 0%, #F44336 50%, #D32F2F 100%);
    box-shadow: 
        0 8px 20px rgba(244, 67, 54, 0.4),
        0 4px 10px rgba(244, 67, 54, 0.3),
        inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.control-btn-play.paused:hover {
    box-shadow: 
        0 12px 30px rgba(244, 67, 54, 0.5),
        0 6px 15px rgba(244, 67, 54, 0.4),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2);
}

/* Efeito de clique visual */
.control-btn:active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    to {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* ============================================
   RESPONSIVO - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .carousel-controls {
        gap: 12px;
        margin-top: 60px;
    }

    .control-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .control-btn span {
        font-size: 0.9rem;
    }

    .control-btn svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .carousel-controls {
        gap: 10px;
        margin-top: 50px;
        flex-wrap: nowrap;
    }

    .control-btn {
        padding: 12px 20px;
        border-radius: 40px;
        min-width: auto;
    }

    .control-btn span {
        display: none; /* Esconde texto, mostra só ícone */
    }

    .control-btn svg {
        width: 22px;
        height: 22px;
        margin: 0;
    }

    .control-btn-play {
        min-width: 60px;
    }
}

/* Acessibilidade - Focus */
.control-btn:focus {
    outline: 3px solid rgba(255, 152, 0, 0.5);
    outline-offset: 3px;
}

.control-btn:focus:not(:focus-visible) {
    outline: none;
}
