:root {
    --primary-color: #ff1e88;
    --secondary-color: #1ee8ff;
    --dark-color: #1a1a1a;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Header Hero */
.header-hero {
    position: relative;
    overflow: hidden;
    background-color: #000000;
}

.hero-section {
    position: relative;
    padding: 12rem 0 3rem;
    background-color: #000000;
}

.navbar {
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--dark-color) !important;
    padding: 1rem 0;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.8rem 2rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff0077;
    border-color: #ff0077;
    transform: translateY(-2px);
}

/* Benefícios */
.benefit-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* Oferta */
.offer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a2a2a 100%);
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.offer-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #fff;
}

.offer-list i {
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.offer-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.offer-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.price-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #888;
    font-size: 1.1rem;
}

.new-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.discount {
    display: block;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-section {
        padding: 8rem 0 3rem;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
        margin-bottom: 1.5rem !important;
    }

    .hero-section .lead {
        font-size: 1.1rem !important;
        line-height: 1.6;
        margin-bottom: 30px !important;
    }

    .hero-section .video-container {
        margin-top: 30px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .hero-section .video-wrapper {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
        height: 0;
        overflow: hidden;
    }

    .hero-section .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }

    .hero-section .btn-primary {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .hero-section .d-lg-none .btn-primary {
        margin-top: 2rem;
        margin-bottom: 0;
        animation: pulse 2s infinite;
    }

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

    .navbar-brand {
        font-size: 1.5rem;
        font-weight: bold;
    }

    .navbar .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .benefit-card {
        margin-bottom: 2rem;
    }
    
    .offer {
        text-align: center;
    }
    
    .offer img {
        margin-top: 2rem;
    }
}

/* Video Player Styles */
.video-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Hero Video Styles */
.hero-video.video-container {
    margin-top: 2rem;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.hero-video.video-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

@media (max-width: 768px) {
    .hero-video.video-container {
        transform: none;
        margin-top: 3rem;
    }
}

/* Antes e Depois Section */
.before-after {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.transformation-story {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.transformation-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.transformation-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.transformation-label {
    position: absolute;
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    z-index: 2;
}

.transformation-label.before {
    top: 1rem;
    left: 1rem;
    border-radius: 20px 20px 20px 0;
}

.transformation-label.after {
    bottom: 1rem;
    right: 1rem;
    border-radius: 20px 20px 0 20px;
    background: var(--secondary-color);
}

.result-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: scale(1.03);
}

.result-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.result-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    text-align: center;
}

.result-overlay span {
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.text-primary {
    color: var(--primary-color) !important;
}

@media (max-width: 768px) {
    .result-card img {
        height: 200px;
    }
    
    .transformation-story {
        margin-bottom: 2rem;
    }
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.custom-accordion {
    --bs-accordion-border-radius: 15px;
    --bs-accordion-inner-border-radius: 15px;
}

.custom-accordion .accordion-item {
    border: none;
    background: white;
    border-radius: 15px !important;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.custom-accordion .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.custom-accordion .accordion-button {
    border: none;
    border-radius: 15px !important;
    background: white;
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: white;
    box-shadow: none;
}

.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff1e88'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.custom-accordion .accordion-button i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-body {
    padding: 1.5rem;
    font-size: 1.1rem;
    color: #666;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-primary i {
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0;
}

.testimonials-slider {
    padding: 2rem 0;
    margin: 0 auto;
    max-width: 800px;
}

.testimonial-card {
    background: rgba(26, 26, 26, 0.95);
    border-radius: 20px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.testimonial-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.testimonial-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.testimonial-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: #ff1e88;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.2rem;
}

.rating {
    color: #ffd700;
    margin-bottom: 1rem;
}

.rating i {
    margin-right: 0.2rem;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.testimonial-author h4 {
    color: #ff1e88;
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
}

.testimonial-author span {
    color: #666666;
    font-size: 0.9rem;
}

/* Swiper Navigation Styles */
.swiper-button-next,
.swiper-button-prev {
    color: #ff1e88;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

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

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #ff1e88;
}

@media (max-width: 768px) {
    .testimonial-image img {
        height: 300px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Antes e Depois Carousel */
.before-after-carousel {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.before-after-carousel .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.before-after-carousel .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.before-after-carousel .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.before-after-slider {
    padding: 2rem 0;
    margin: 0 auto;
    max-width: 1000px;
}

.before-after-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 1rem;
}

.before-after-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.before-after-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.before-after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.before-after-card:hover .before-after-image img {
    transform: scale(1.05);
}

.before-after-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.before-after-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.before-after-overlay p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

.before-after-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    z-index: 2;
}

/* Swiper Navigation para Before After */
.before-after-slider .swiper-button-next,
.before-after-slider .swiper-button-prev {
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.before-after-slider .swiper-button-next:after,
.before-after-slider .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.before-after-slider .swiper-button-next:hover,
.before-after-slider .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
}

.before-after-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    opacity: 0.5;
}

.before-after-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 768px) {
    .before-after-carousel {
        padding: 3rem 0;
    }

    .before-after-carousel .section-header h2 {
        font-size: 2rem;
    }

    .before-after-image {
        height: 300px;
    }

    .before-after-overlay h3 {
        font-size: 1.3rem;
    }

    .before-after-overlay p {
        font-size: 1rem;
    }
}

/* Desafio da Barriga Negativa */
.desafio-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.desafio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('../img/pattern.png') repeat;
    opacity: 0.05;
    z-index: 1;
}

.desafio-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.desafio-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.desafio-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.desafio-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.desafio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.desafio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.desafio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.desafio-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.desafio-image img {
    width: 100%;
    height: 100%;
  /*  object-fit: cover;*/
    transition: transform 0.5s ease;
}

.desafio-card:hover .desafio-image img {
    transform: scale(1.05);
}

.desafio-content {
    padding: 2rem;
    text-align: center;
}

.desafio-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.desafio-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.desafio-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
}

@media (max-width: 768px) {
    .desafio-section {
        padding: 3rem 0;
    }

    .desafio-header h2 {
        font-size: 2.5rem;
    }

    .desafio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .desafio-image {
        height: 250px;
    }
}

/* Modal de Captura */
.modal-content {
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: none;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.btn-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #000;
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 0.5rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
}

.btn-close:hover {
    opacity: 1;
    color: #000;
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.form-floating {
    margin-bottom: 1rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem 0.75rem;
    height: auto;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 30, 136, 0.25);
}

.form-floating label {
    padding: 1rem 0.75rem;
    color: #6c757d;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-color);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.modal .btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #ff4d9e);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.modal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 30, 136, 0.3);
}

.modal .btn-primary i {
    font-size: 1.2rem;
}

/* Animação do Modal */
.modal.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease-in-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

@media (max-width: 768px) {
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
}

/* Página de Agradecimento */
.thank-you-section {
    min-height: 100vh;
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.thank-you-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern.png') repeat;
    opacity: 0.05;
    z-index: 1;
}

.thank-you-content {
    position: relative;
    z-index: 2;
}

.success-icon {
    font-size: 5rem;
    color: #28a745;
    margin-bottom: 2rem;
    animation: scaleIn 0.5s ease-out;
}

.success-icon i {
    animation: pulse 2s infinite;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.bonus-section {
    position: relative;
    padding: 3rem;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.bonus-badge {
    position: absolute;
    top: 2rem;
    right: -3rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 4rem;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.bonus-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 20px;
    position: relative;
}

.bonus-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.social-buttons .btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.social-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .thank-you-section {
        padding: 4rem 0;
    }

    .success-icon {
        font-size: 4rem;
    }

    .bonus-section {
        padding: 2rem;
    }

    .bonus-content {
        padding: 2rem;
    }

    .bonus-badge {
        font-size: 0.8rem;
        padding: 0.4rem 3rem;
    }

    .social-buttons .btn {
        margin-bottom: 1rem;
        width: 100%;
    }
}

/* Contador Regressivo para a seção principal */
.countdown-container {
    margin: 20px 0;
    text-align: center;
}

.countdown-text {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.countdown-item {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 8px;
    min-width: 80px;
}

.countdown-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

@media (max-width: 768px) {
    .countdown-timer {
        gap: 8px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 8px;
    }
    
    .countdown-number {
        font-size: 1.4rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
}

/* Estilo para o contador da seção de oferta final */
.countdown-box {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 10px;
    margin: 0 auto;
    /*max-width: 500px;*/
}

.countdown-numbers {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
}

.countdown-numbers span {
    font-size: 90px;
    font-weight: bold;
    color: #fff;
    min-width: 120px;
    text-align: center;
    line-height: 1;
}

.countdown-labels {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.countdown-labels span {
    color: #fff;
    font-size: 16px;
    min-width: 120px;
    text-align: center;
    opacity: 0.8;
}

.price-box h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .countdown-numbers {
        gap: 10px;
    }
    
    .countdown-numbers span {
        font-size: 40px;
        min-width: 60px;
    }
    
    .countdown-labels {
        gap: 10px;
    }
    
    .countdown-labels span {
        font-size: 12px;
        min-width: 60px;
    }
    
    .countdown-box {
        padding: 15px;
    }
}

/* Melhorias Visuais */
.thank-you-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.success-icon {
    color: #28a745;
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: bounceIn 1s ease-out;
}

.bonus-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.bonus-content {
    text-align: center;
    padding: 2rem;
}

.bonus-icon {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-buttons .btn {
    min-width: 160px;
    transition: all 0.3s ease;
}

.social-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    #countdown {
        font-size: 4rem;
        width: 100px;
        height: 100px;
    }
    
    .countdown-text {
        font-size: 1.2rem;
    }
    
    .social-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Página de Dados do Cliente */
.client-data-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 100vh;
}

.form-header {
    margin-bottom: 3rem;
}

.progress-indicator {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.progress {
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.step-counter {
    margin-top: 1rem;
    color: #6c757d;
    font-weight: 500;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

.step-title {
    color: var(--dark-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
    position: relative;
}

.step-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.form-floating {
    margin-bottom: 1rem;
}

.form-floating > .form-control,
.form-floating > .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
   /* padding: 1rem 0.75rem;*/
    height: calc(3.5rem + 2px);
    line-height: 1.25;
}

.form-floating > textarea.form-control {
    height: auto;
    min-height: 100px;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 30, 136, 0.25);
}

.form-floating > label {
    padding: 1rem 0.75rem;
    color: #6c757d;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.form-navigation button {
    min-width: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

.btn-submit {
    background: linear-gradient(45deg, #28a745, #34ce57);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: none; /* Inicialmente oculto */
}

.btn-submit.show {
    display: inline-flex;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.btn-submit i {
    margin-right: 0.5rem;
}

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

/* Upload de Fotos */
.upload-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.upload-label {
    display: block;
    cursor: pointer;
    margin: 0;
    padding: 0;
    width: 100%;
    transition: all 0.3s ease;
}

.upload-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 15px;
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.upload-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    padding: 1rem;
    transition: all 0.3s ease;
}

.upload-overlay i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.upload-overlay span {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.upload-overlay small {
    font-size: 0.9rem;
    opacity: 0.8;
}

.upload-label:hover .upload-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.upload-label:hover .preview-image {
    opacity: 0.9;
    transform: scale(1.05);
}

.selected-file {
    display: flex;
    align-items: center;
    background: white;
    padding: 0.75rem;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.selected-file i {
    font-size: 1.2rem;
    color: #28a745;
    margin-right: 0.5rem;
}

.selected-file .file-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.9rem;
    color: #666;
}

.btn-remove {
    background: none;
    border: none;
    color: #dc3545;
    padding: 0.25rem;
    margin-left: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-remove:hover {
    color: #c82333;
    transform: scale(1.1);
}

/* Animações para Upload */
@keyframes uploadProgress {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.upload-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--primary-color);
    animation: uploadProgress 2s ease-in-out;
}

/* Responsivo */
@media (max-width: 768px) {
    .upload-preview {
        aspect-ratio: 1/1;
    }

    .upload-overlay i {
        font-size: 2rem;
    }

    .upload-overlay span {
        font-size: 1rem;
    }
}

/* Estilos para a etapa de Alimentação */
.carboidratos-grid,
.proteinas-grid,
.frutas-vegetais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.form-check {
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-check:hover {
    background-color: rgba(var(--primary-rgb), 0.05);
}

.form-check-input {
    cursor: pointer;
}

.form-check-label {
    cursor: pointer;
    user-select: none;
    padding-left: 0.5rem;
}

/* Estilo personalizado para radio buttons */
.form-check-input[type="radio"] {
    width: 1.2em;
    height: 1.2em;
}

.form-check-input[type="radio"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Estilo personalizado para checkboxes */
.form-check-input[type="checkbox"] {
    width: 1.2em;
    height: 1.2em;
    border-radius: 4px;
}

.form-check-input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Animação para os campos de detalhes */
.collapse {
    transition: all 0.3s ease-in-out;
}

.collapse.show {
    margin-top: 1rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .carboidratos-grid,
    .proteinas-grid,
    .frutas-vegetais-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

/* Termos e Condições */
.form-check a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-check a:hover {
    text-decoration: underline;
}

/* Modal dos Termos */
.modal-content {
    border-radius: 20px;
}

.modal-header {
    border-bottom: 2px solid #f8f9fa;
    padding: 1.5rem;
}

.modal-body {
    padding: 2rem;
}

.modal-body ol {
    padding-left: 1.2rem;
}

.modal-body li {
    margin-bottom: 1rem;
    color: #666;
}

.modal-footer {
    border-top: none;
    padding: 1.5rem;
}

/* Botão de Cadastro */
.btn-submit {
    background: linear-gradient(45deg, #28a745, #34ce57);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.btn-submit i {
    margin-right: 0.5rem;
}

/* Estilo específico para o botão "Entendi" no modal dos termos */
#btnEntendi {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

#btnEntendi:hover {
    background-color: #0069d9;
    border-color: #0062cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Garantir que botões em modais fiquem acima de outros elementos */
.modal-content .btn {
    position: relative;
    z-index: 1060;  /* Valor maior que o z-index padrão dos modais */
}

/* Página de Cadastro */
.cadastro-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    position: relative;
}

.cadastro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern.png') repeat;
    opacity: 0.05;
    z-index: 1;
}

.cadastro-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.cadastro-header i {
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

.cadastro-form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    max-width: 650px;
    margin: 0 auto;
}

.cadastro-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.cadastro-image {
    position: relative;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a2a2a 100%);
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    padding: 2rem;
}

.cadastro-image img {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.cadastro-image:hover img {
    transform: scale(1.02);
}

.cadastro-badges {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cadastro-badges .badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInRight 0.5s ease;
}

.cadastro-testimonial {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.5s ease;
}

.testimonial-text {
    color: white;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid white;
}

.testimonial-author h5 {
    color: white;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.testimonial-author .rating {
    color: #ffd700;
    font-size: 0.8rem;
}

.cadastro-form {
    padding: 2.5rem;
}

.cadastro-form h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-align: center;
}

.cadastro-form p.text-muted {
    text-align: center;
    margin-bottom: 2rem;
}

#cadastroForm .form-floating {
    margin-bottom: 1.5rem;
}

#cadastroForm .form-control {
    border: 2px solid #f0f0f0;
    border-radius: 10px;
/* padding: 1.75rem 0.75rem; */
    height: calc(3.5rem + 2px);
    font-size: 1rem;
    transition: all 0.3s ease;
}

#cadastroForm .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 30, 136, 0.15);
}

#cadastroForm .form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.15em;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

#cadastroForm .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

#cadastroForm .form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

#cadastroForm .form-check-label a:hover {
    text-decoration: underline;
}

#btnCadastrar {
    background: linear-gradient(45deg, var(--primary-color), #ff4d9e);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 1rem;
    font-size: 1.1rem;
}

#btnCadastrar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

#btnCadastrar:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 30, 136, 0.3);
}

#btnCadastrar:hover::before {
    left: 100%;
}

.security-badges {
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.security-badges i {
    font-size: 1.5rem;
    color: #6c757d;
    display: block;
    margin-bottom: 0.5rem;
}

.security-badges small {
    color: #6c757d;
    font-size: 0.8rem;
}

.cadastro-benefits {
    margin-top: 4rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-item h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.9rem;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@media (max-width: 768px) {
    .cadastro-section {
        padding: 4rem 0;
    }
    
    .cadastro-form {
        padding: 1.5rem;
    }
    
    .cadastro-image {
        border-radius: 20px 20px 0 0;
    }
    
    .cadastro-badges {
        top: 1rem;
        right: 1rem;
    }
    
    .cadastro-testimonial {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1rem;
    }
    
    .benefit-item {
        margin-bottom: 1.5rem;
    }
}

/* Estilo para a mensagem de erro de e-mail já cadastrado */
.erro-email-cadastrado {
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    padding: 15px;
    border-radius: 5px;
    border: 2px solid #ff0000;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    animation: piscar 1s infinite;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.erro-email-cadastrado::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: brilho 2s infinite;
}

.erro-email-cadastrado i {
    margin-right: 5px;
    font-size: 20px;
    animation: shake 0.5s infinite;
}

@keyframes piscar {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes brilho {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

/* Página 404 */
.error-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.error-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.error-number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2rem;
    gap: 1rem;
}

.zero-wrapper {
    width: 120px;
    height: 120px;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.zero {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.zero-image {
    width: 80%;
    height: auto;
    object-fit: contain;
    animation: spin 20s linear infinite;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.error-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.btn-voltar {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    background: linear-gradient(45deg, var(--primary-color), #ff4d9e);
    border: none;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-voltar:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 30, 136, 0.3);
}

.error-timer {
    text-align: center;
}

.error-timer p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.error-timer span {
    font-weight: 700;
    color: var(--primary-color);
}

.timer-progress {
    width: 200px;
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
}

.timer-bar {
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    animation: timerProgress 10s linear forwards;
}

.error-suggestions {
    margin-top: 4rem;
}

.error-suggestions h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.suggestion-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--dark-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.suggestion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    color: var(--dark-color);
}

.suggestion-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.suggestion-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.suggestion-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Elementos de decoração */
.decoration-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), #ff4d9e);
    opacity: 0.1;
}

.bubble-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation: float 4s ease-in-out infinite;
}

.bubble-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 10%;
    animation: float 5s ease-in-out infinite reverse;
}

.bubble-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-color), #ff4d9e);
    opacity: 0.1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(45deg);
    animation: rotate 20s linear infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    transform: rotate(-45deg);
    animation: rotate 25s linear infinite reverse;
}

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

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes timerProgress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .error-404 {
        padding: 2rem 0;
    }

    .error-number {
        font-size: 5rem;
    }

    .zero-wrapper {
        width: 80px;
        height: 80px;
    }

    .error-title {
        font-size: 2rem;
    }

    .error-description {
        font-size: 1rem;
    }

    .suggestions-grid {
        grid-template-columns: 1fr;
    }

    .suggestion-card {
        padding: 1.5rem;
    }
}

/* Quem Sou Eu */
.quem-sou-eu {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.quem-sou-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.quem-sou-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.quem-sou-content h3 {
    color: #333;
    font-weight: 500;
}

.quem-sou-text {
    color: #666;
    line-height: 1.8;
}

.quem-sou-stats {
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.quem-sou-image {
    position: relative;
    padding: 2rem;
}

.quem-sou-image img {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.quem-sou-image:hover img {
    transform: scale(1.02);
}

.image-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 2rem;
    transform: rotate(-3deg);
    z-index: 1;
}

@media (max-width: 768px) {
    .quem-sou-content {
        text-align: center;
        padding: 1rem 0;
    }

    .quem-sou-image {
        margin-top: 2rem;
        padding: 1rem;
    }

    .stat-item {
        margin-bottom: 1rem;
    }
} 