/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #1e3c72;
    color: #e0e7ff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Color Variables */
:root {
    --azul: #405DE6;
    --roxo: #833AB4;
    --rosa: #C13584;
    --magenta: #E1306C;
    --laranja: #F56040;
    --amarelo: #FCAF45;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
    0% { text-shadow: 0 0 5px var(--azul); }
    100% { text-shadow: 0 0 15px var(--roxo); }
}

@keyframes slideshow {
    0% { background-image: url('https://renatorm.com/img/C52.png'); }
    33% { background-image: url('https://renatorm.com/img/image-7.jpg'); }
    66% { background-image: url('https://renatorm.com/img/C52.png'); }
    100% { background-image: url('https://renatorm.com/img/logo1.png'); }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: var(--magenta); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes cascade {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1.2); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1.2); }
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: linear-gradient(135deg, var(--azul), var(--roxo));
}

.navbar-brand, .nav-link {
    color: #E0F7FA !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
    color: var(--magenta) !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -8px;
    left: 0;
    background: linear-gradient(90deg, var(--magenta), var(--roxo));
    transition: width 0.4s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: slideshow 15s infinite;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.typing-effect {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(45deg, var(--azul), var(--magenta));
    -webkit-background-clip: text;
    color: transparent;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid var(--magenta);
    animation: typing 3.5s steps(30, end) infinite, blink 0.75s step-end infinite, glow 2s infinite alternate;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(224, 247, 250, 0.9);
    animation: fadeInUp 1s ease 0.5s forwards;
    opacity: 0;
}

/* Buttons */
.btn-custom {
    background: linear-gradient(45deg, var(--laranja), var(--amarelo));
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #E0F7FA;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.btn-custom:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 5px 20px rgba(245, 96, 64, 0.6); /* Using --laranja with opacity */
}

/* Buttons */
.btn-custom1 {
    background: linear-gradient(45deg, #25D366, var(--amarelo));
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4a148c;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.btn-custom1:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 5px 20px rgba(245, 96, 64, 0.6); /* Using --laranja with opacity */
}

.btn-whatsapp {
    background: linear-gradient(45deg, #25D366, var(--rosa));
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #E0F7FA;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.btn-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 5px 20px rgba(193, 53, 132, 0.6); /* Using --rosa with opacity */
}

.btn-whatsapp i {
    font-size: 1.5rem;
}

/* Sections */
section {
    padding: 60px 0;
}

h2 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    background: linear-gradient(45deg, var(--azul), var(--roxo));
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 1s ease, glow 2s infinite alternate;
}

/* Review Card & Portfolio */
.review-card, .portfolio-item {
    background: rgba(224, 247, 250, 0.1);
    border: none;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover, .portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.portfolio-item {
    height: 250px;
    overflow: hidden;
}

.media-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    transition: transform 0.4s ease;
}

.portfolio-item:hover .media-content {
    transform: scale(1.1);
}

.overlay {
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .overlay {
    opacity: 1;
}

.overlay-content {
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .overlay-content {
    transform: translateY(0);
}

.review-card img {
    transition: filter 0.3s ease;
}

.review-card:hover img {
    filter: brightness(110%);
}

.review-card .card-title {
    transition: color 0.3s ease;
}

.review-card:hover .card-title {
    color: var(--magenta);
}

.review-card .fas.fa-star {
    color: var(--amarelo);
    transition: transform 0.3s ease;
}

.review-card:hover .fas.fa-star {
    transform: scale(1.2);
}

/* Star Rating */
.star-rating {
    display: inline-flex;
    align-items: center;
}

.star-pulse {
    color: var(--amarelo);
    transition: transform 0.2s ease-in-out;
}

.star-pulse:hover {
    transform: scale(1.2);
    animation: pulse 0.5s infinite;
}

/* Accordion */
.accordion-button {
    background: transparent;
    color: #000;
    transition: background 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, var(--azul), var(--roxo));
    color: #E0F7FA;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px 0;
}

.social-links a {
    color: #E0F7FA;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
}

.social-links .fa-whatsapp:hover { color: #25D366; }
.social-links .fa-instagram:hover { color: var(--magenta); }
.social-links .fa-facebook:hover { color: var(--azul); }
.social-links .fa-youtube:hover { color: var(--rosa); }
.social-links .fa-tiktok:hover { color: #212121; }

.operating-hours {
    font-size: 0.9rem;
    color: #ccc;
}

.operating-hours h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--roxo);
    transition: text-shadow 0.3s ease;
}

.operating-hours h5:hover {
    text-shadow: 0 0 10px rgba(131, 58, 180, 0.8); /* Using --roxo with opacity */
}

.operating-hours li {
    line-height: 1.6;
    transition: color 0.3s ease;
}

.operating-hours li:hover {
    color: var(--magenta);
}

.operating-hours a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s ease;
}

.operating-hours a:hover {
    color: var(--roxo);
}

/* Sort Reviews */
#sortReviews {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid var(--amarelo);
    background: rgba(252, 175, 69, 0.1); /* Using --amarelo with opacity */
    color: #E0F7FA;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-inner h3 {
        font-size: 1.8rem;
    }

    .review-card, .portfolio-item {
        padding: 15px;
    }

    .portfolio-item {
        height: 200px;
    }

    .btn-whatsapp {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 30px;
    }

    .btn-custom {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .typing-effect {
        font-size: 1.5rem;
    }
}
.main-content {
            padding: 40px;
        }
        .status-section {
            margin-top: 40px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        .status-slider {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }
        .status-slider-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        .status-card {
            flex: 0 0 300px;
            height: 350px;
            margin-right: 20px;
            perspective: 1000px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            box-shadow: 0 8px 32px rgba(0, 221, 235, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .status-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }
        .status-card:hover .status-card-inner {
            transform: rotateY(180deg);
        }
        .status-card-front, .status-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 15px;
        }
        .status-card-front {
            background: linear-gradient(to bottom, rgba(0, 221, 235, 0.2), rgba(123, 66, 255, 0.2));
        }
        .status-card-back {
            background: linear-gradient(to bottom, #00ddeb, #7b42ff);
            transform: rotateY(180deg);
            color: #fff;
            text-align: center;
        }
        .status-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 10px;
            transition: transform 0.4s ease;
        }
        .status-card:hover img {
            transform: scale(1.05);
        }
        .status-card.no-image img {
            display: none;
        }
        .status-text {
            font-size: 1.1rem;
            font-weight: 500;
            color: #fff;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
            text-align: center;
        }
        .status-card-back small {
            font-size: 1rem;
            font-weight: 600;
        }
        h4 {
            background: linear-gradient(45deg, #00ddeb, #7b42ff);
            -webkit-background-clip: text;
            color: transparent;
            font-weight: 600;
            text-align: center;
            margin-bottom: 30px;
        }
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.3);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .slider-nav:hover {
            background: rgba(0, 221, 235, 0.5);
        }
        .slider-prev {
            left: -50px;
        }
        .slider-next {
            right: -50px;
        }
        @media (max-width: 768px) {
            .main-content {
                padding: 20px;
            }
            .status-card {
                flex: 0 0 250px;
                height: 300px;
            }
            .status-card img {
                height: 150px;
            }
            .status-text {
                font-size: 1rem;
            }
            .slider-prev {
                left: 10px;
            }
            .slider-next {
                right: 10px;
            }
        }