/* Magic UI Styles for Turistar Viagens */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #333;
    overflow-x: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation Menu */
.carousel-nav {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    display: flex;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    gap: 10px;
    z-index: 1000;
    width: 300px;
}

.nav-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: #7b0707;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.nav-btn:hover {
    background: rgba(123, 7, 7, 0.1);
    transform: translateY(-2px);
}

.nav-btn.active {
    background: #7b0707;
    color: white;
    box-shadow: 0 4px 15px rgba(123, 7, 7, 0.3);
}

/* Carousel Wrapper */
.carousel-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    width: 33.333%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 20px;
    position: relative;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
    z-index: -1;
}

.carousel-slide:nth-child(1)::before {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.carousel-slide:nth-child(2)::before {
    background: linear-gradient(135deg, #7b0707 0%, #a00909 100%);
}

.carousel-slide:nth-child(3)::before {
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f4 100%);
}

.slide-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

/* Slide 1 - Sobre */
.company-logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin-bottom: 30px;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(123, 7, 7, 0.25);
    transition: all 0.4s ease;
    animation: logoFloat 3s ease-in-out infinite;
}

.company-logo:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 15px 40px rgba(123, 7, 7, 0.35);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #7b0707;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.carousel-slide:nth-child(2) h2 {
    color: white;
}

.carousel-slide:nth-child(3) h2 {
    color: #7b0707;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.8;
}

.carousel-slide:nth-child(2) p {
    color: rgba(255, 255, 255, 0.9);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 1.5rem;
    color: #7b0707;
    min-width: 24px;
}

.feature span {
    font-weight: 500;
    color: #333;
}

/* Slide 2 - Contato */
.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    justify-content: center;
}

.contact-btn.instagram {
    background: linear-gradient(45deg, #e1306c, #fd1d1d, #fcb045);
    color: white;
}

.contact-btn.whatsapp {
    background: #25d366;
    color: white;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.contact-btn i {
    font-size: 1.3rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.schedule-container {
    color: white;
}

.schedule-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.schedule-header i {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

.schedule-header strong {
    font-size: 1.2rem;
    font-weight: 600;
}

.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.schedule-item.closed {
    border-left-color: rgba(255, 255, 255, 0.3);
    opacity: 0.7;
}

.day {
    font-weight: 600;
    font-size: 1rem;
    min-width: 120px;
}

.hours {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}

.time {
    font-size: 0.95rem;
    font-weight: 500;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    min-width: 100px;
}

.closed-text {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Slide 3 - Localização */
.location-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
    margin-top: 30px;
}

.address-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(123, 7, 7, 0.05);
    border-radius: 15px;
    border-left: 4px solid #7b0707;
}

.address-item i {
    font-size: 1.2rem;
    color: #7b0707;
    margin-top: 5px;
    min-width: 20px;
}

.address-item strong {
    display: block;
    margin-bottom: 5px;
    color: #7b0707;
    font-size: 1.1rem;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #7b0707;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(123, 7, 7, 0.3);
}

.map-btn:hover {
    background: #a00909;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 7, 7, 0.4);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #7b0707;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}



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

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-nav {
        bottom: clamp(16px, 5vh, 32px);
        padding: 8px 15px;
        gap: 5px;
        width: 250px;
    }
    
    .nav-btn {
        padding: 6px 12px;
        font-size: 11px;
        flex: 1;
    }
    
    .carousel-slide {
        padding: 20px 15px 80px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        min-width: 250px;
    }
    
    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        text-align: left;
    }
    
    .hours {
        text-align: left;
        width: 100%;
    }
    
    .day {
        min-width: auto;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .carousel-nav {
        bottom: 20px;
        gap: 8px;
        padding: 8px 15px;
    }
    
    .nav-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .feature {
        padding: 15px;
    }
    
    .contact-btn {
        min-width: 200px;
        padding: 12px 20px;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .carousel-nav {
        bottom: 15px;
        gap: 4px;
        padding: 6px 8px;
        width: 250px;
    }
    
    .nav-btn {
        padding: 4px 6px;
        font-size: 9px;
        min-width: auto;
        flex: 1;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
}