/* 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/dont1.jpg'); }
    33% { background-image: url('https://renatorm.com/img/dont2.jpg'); }
    66% { background-image: url('https://renatorm.com/img/dont3.jpg'); }
    100% { background-image: url('https://renatorm.com/img/dont.jpg'); }
}

@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 {
    display: inline-block; /* Ensures anchor behaves like a button */
    text-decoration: none; /* Removes underline from anchor */
    cursor: pointer; /* Pointer cursor for button-like interaction */
}

.btn-lg {
    padding: 14px 36px; /* Larger padding for btn-lg */
    font-size: 1.25rem; /* Larger font size for btn-lg */
}

.btn-custom1 {
    background: linear-gradient(45deg, #25D366, var(--amarelo));
    border: none;
    border-radius: 50px;
    padding: 12px 30px; /* Base padding, overridden by btn-lg if applied */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4a148c;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* Needed for pseudo-elements */
    overflow: hidden; /* Ensures pseudo-elements stay within bounds */
    animation: float 3s ease-in-out infinite;
}

.btn-custom1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%; /* Wide enough for sliding effect */
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3), /* Light highlight for sliding effect */
        transparent
    );
    animation: slide 2s linear infinite; /* Sliding animation */
    z-index: 0; /* Behind the text */
}

.btn-custom1::after {
    content: attr(data-text); /* Uses data-text attribute for second text */
    position: absolute;
    top: 50%;
    left: 0;
    transform: perspective(500px) translate(0, -50%) rotateY(10deg); /* Initial 3D perspective with slight tilt */
    color: rgba(253, 253, 253); /* Different color (yellowish, matching --amarelo) */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: -1; /* Behind the main text and sliding effect */
    font-size: 1.1em; /* Slightly larger than main text */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Adds depth to 3D effect */
    animation: slideText 3s linear infinite; /* Sliding animation for background text */
    white-space: nowrap; /* Prevents text wrapping */
}

.btn-custom1 span {
    position: relative; /* Ensures main text stays above pseudo-elements */
    z-index: 1; /* Main text above both pseudo-elements */
}

.btn-custom1:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 5px 40px rgba(245, 96, 64, 0.6); /* Using --laranja with opacity */
}

/* Keyframe for sliding background effect */
@keyframes slide {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(50%);
    }
}

/* Keyframe for sliding background text animation */
@keyframes slideText {
    0% {
        transform: perspective(500px) translate(-100%, -50%) rotateY(10deg);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: perspective(500px) translate(100%, -50%) rotateY(10deg);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
}
/* Botão Neon Pulse */
.btn-custom2 {
    background: linear-gradient(45deg, #6a11cb, #2575fc); /* Roxo → Azul */
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 15px rgba(37, 117, 252, 0.6),
                0 0 30px rgba(106, 17, 203, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: float 3s ease-in-out infinite;
}

/* Reflexo em movimento */
.btn-custom2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
}

/* Animação do reflexo deslizando */
.btn-custom2:hover::before {
    animation: shine 1s forwards;
}

/* Pulso de brilho neon */
.btn-custom2:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 25px rgba(37, 117, 252, 0.9),
                0 0 50px rgba(106, 17, 203, 0.7);
}

/* Keyframes para o reflexo (shine) */
@keyframes shine {
    0% { left: -75%; }
    100% { left: 125%; }
}

/* Flutuação sutil (mesma que os outros botões usam) */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Botão Liquid Wave */
.btn-liquid {
    background: linear-gradient(270deg, #ff6ec4, #7873f5, #4facfe, #43e97b);
    background-size: 800% 800%;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    animation: liquidMove 8s ease infinite, float 3s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-liquid:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 5px 40px rgba(255, 110, 196, 0.6);
}

/* Animação de movimento do gradiente */
@keyframes liquidMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Flutuação reaproveitada */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Botão WhatsApp com efeito Liquid Heart 💓 */
.btn-whatsapp {
    background: linear-gradient(45deg, #25D366, var(--rosa));
    background-size: 200% 200%; /* necessário para o movimento do gradiente */
    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;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: liquidHeart 4s ease-in-out infinite, float 3s ease-in-out infinite;
}

/* Ícone */
.btn-whatsapp i {
    font-size: 1.5rem;
}

/* Efeito no hover */
.btn-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 25px rgba(193, 53, 132, 0.6),
                0 0 40px rgba(37, 211, 102, 0.5);
}

/* Animação de pulsação tipo batimento cardíaco */
@keyframes liquidHeart {
    0% {
        transform: scale(1);
        background-position: 0% 50%;
        box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    }
    25% {
        transform: scale(1.1);
        background-position: 50% 100%;
        box-shadow: 0 0 25px rgba(193, 53, 132, 0.5);
    }
    40% {
        transform: scale(0.95);
        background-position: 100% 50%;
        box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
    }
    60% {
        transform: scale(1.15);
        background-position: 50% 0%;
        box-shadow: 0 0 30px rgba(193, 53, 132, 0.6);
    }
    100% {
        transform: scale(1);
        background-position: 0% 50%;
        box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    }
}

/* Animação de leve flutuação */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* 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.3rem;
    }

    .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;
            }
        }
        
        .btn-agendamento {
  display: inline-block;
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, #ff7a18, #af1cff, #1e90ff);
  background-size: 300% 300%;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(175, 28, 255, 0.6);
  animation: gradientMove 4s ease infinite, pulseGlow 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

/* Gradiente animado */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Brilho pulsante */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 10px rgba(175, 28, 255, 0.4), 0 0 20px rgba(30, 144, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(175, 28, 255, 0.8), 0 0 50px rgba(30, 144, 255, 0.6);
  }
  100% {
    box-shadow: 0 0 10px rgba(175, 28, 255, 0.4), 0 0 20px rgba(30, 144, 255, 0.3);
  }
}

/* Hover - levanta e brilha mais */
.btn-agendamento:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 35px rgba(175, 28, 255, 0.8), 0 0 60px rgba(30, 144, 255, 0.7);
}

/* Clique - pequeno recuo */
.btn-agendamento:active {
  transform: scale(0.97);
}