/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #C62220 0%, #8B0000 100%);
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://i.imgur.com/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    text-align: center;
}

.product-image {
    max-width: 100%;
    height: auto;
    animation: slideInLeft 1s ease-out;
}

.hero-right {
    color: white;
}

.logo {
    max-width: 30%;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}

.divider {
    width: 35%;
    height: 2px;
    background: white;
    margin: 20px 0;
}

.main-title {
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    animation: fadeIn 1.2s ease-out;
}

.subtitle {
    font-size: 21px;
    margin-bottom: 20px;
    color: #f4f4f4;
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    font-size: 20px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list i {
    color: #EFA44E;
    font-size: 22px;
}

.cta-button {
    display: inline-block;
    background: #19D532;
    color: white;
    padding: 15px 40px;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid white;
    transition: all 0.3s ease;
    margin: 20px 0;
    cursor: pointer;
}

.cta-button:hover {
    background: #F0841F;
    transform: scale(1.05);
}

.cta-button i {
    margin-right: 10px;
}

.secure-badges {
    max-width: 53%;
    margin-top: 15px;
}

.secure-badges-center {
    display: block;
    max-width: 300px;
    margin: 20px auto;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.pulse {
    animation: pulse 2s infinite;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-100px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.bounce-in {
    animation: bounceIn 1.5s ease-out;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 38px;
    font-weight: 900;
    color: #171C33;
    margin-bottom: 10px;
}

.section-title .highlight {
    color: #ff6600;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: left;
    animation: slideInLeft 1s ease-out;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.date {
    font-size: 12px;
    color: #666;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

.before-after {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.before-after img {
    width: 48%;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.reaction-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.reaction-buttons button {
    background: white;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reaction-buttons button:hover {
    background: #f0f0f0;
    border-color: #ccc;
}

.reaction-buttons i {
    margin-right: 5px;
}

/* Guarantee Section */
.guarantee-section {
    background: white;
    padding: 80px 0;
    position: relative;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: repeating-linear-gradient(
        45deg,
        #DB3939,
        #DB3939 20px,
        transparent 20px,
        transparent 40px
    );
}

.guarantee-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: repeating-linear-gradient(
        45deg,
        #F22B2B,
        #F22B2B 20px,
        transparent 20px,
        transparent 40px
    );
}

.guarantee-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.guarantee-left {
    text-align: center;
}

.guarantee-title {
    font-size: 49px;
    font-weight: 900;
    line-height: 1.1;
    color: #D32525;
    margin-bottom: 20px;
}

.guarantee-subtitle {
    font-size: 26px;
    color: #333;
    margin-bottom: 20px;
}

.guarantee-text {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.highlight-red {
    color: #ff0000;
    font-weight: bold;
}

.guarantee-note {
    font-size: 16px;
}

.guarantee-right {
    text-align: center;
}

.guarantee-image {
    max-width: 100%;
    height: auto;
}

/* Offers Section */
.offers-section {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.offers-title {
    font-size: 43px;
    font-weight: 900;
    color: #333;
    margin-bottom: 10px;
}

.offers-subtitle {
    font-size: 24px;
    color: #666;
    margin-bottom: 40px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 40px auto;
}

.offer-card {
    background: white;
    border: 2px solid #EF9B30;
    border-radius: 50px;
    padding: 30px;
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(239, 155, 48, 0.3);
}

.offer-header {
    font-size: 20px;
    font-weight: bold;
    color: #525252;
    margin-bottom: 20px;
}

.offer-image {
    max-width: 100%;
    height: 250px;
    object-fit: contain;
    margin: 20px 0;
}

.bounce-in-left {
    animation: bounceIn 1.5s ease-out;
}

.bounce-in-right {
    animation: bounceIn 1.5s ease-out 0.3s both;
}

.offer-installment {
    font-size: 16px;
    margin: 10px 0;
}

.offer-price {
    font-size: 41px;
    font-weight: 900;
    color: #EF9B30;
    margin: 10px 0;
}

.offer-cash {
    font-size: 16px;
    margin: 10px 0 20px;
}

.offer-button {
    display: inline-block;
    background: #EF9B30;
    color: white;
    padding: 15px 40px;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.offer-button:hover {
    background: #379C45;
    transform: scale(1.05);
}

/* Countdown */
.countdown-title {
    font-size: 24px;
    font-weight: 900;
    color: #BD1313;
    margin: 50px 0 20px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.countdown-item {
    background: rgba(2, 1, 1, 0);
    border: 2px solid #AA1717;
    border-radius: 10px;
    padding: 20px 30px;
    min-width: 120px;
}

.countdown-number {
    display: block;
    font-size: 48px;
    font-weight: bold;
    color: #C01515;
}

.countdown-label {
    display: block;
    font-size: 16px;
    color: #B71A1A;
    margin-top: 5px;
}

/* Security Section */
.security-section {
    background: linear-gradient(135deg, #C62220 0%, #8B0000 100%);
    padding: 80px 0;
    color: white;
}

.security-title {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.1;
}

.highlight-yellow {
    color: #ffff99;
}

.security-subtitle {
    font-size: 21px;
    text-align: center;
    margin-bottom: 40px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.security-item {
    text-align: center;
}

.security-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.security-item p {
    font-size: 16px;
    line-height: 1.3;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.faq-title {
    font-size: 44px;
    font-weight: 900;
    color: #C62220;
    margin-bottom: 20px;
}

.faq-divider {
    width: 38%;
    height: 3px;
    background: #A71515;
    margin: 0 auto 40px;
}

.faq-accordion {
    max-width: 760px;
    margin: 40px auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: #C62220;
    color: white;
    border: none;
    padding: 24px;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.faq-question:hover {
    background: #a01818;
}

.faq-question i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 24px;
    font-size: 16px;
    line-height: 1.617;
    color: rgba(0, 0, 0, 0.92);
}

.bold {
    font-weight: bold;
    color: #C62220;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #B00F0F 0%, #830404 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column img {
    max-width: 100%;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin: 9px 0;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #EF9B30;
    text-decoration: underline;
}

.footer-column p {
    font-size: 17px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .guarantee-content {
        grid-template-columns: 1fr;
    }

    .offers-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 31px;
    }

    .section-title {
        font-size: 30px;
    }

    .guarantee-title {
        font-size: 21px;
    }

    .offers-title {
        font-size: 26px;
    }

    .offers-subtitle {
        font-size: 15px;
    }

    .security-title {
        font-size: 23px;
    }

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

    .faq-title {
        font-size: 32px;
    }

    .faq-question {
        font-size: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .logo {
        max-width: 50%;
    }

    .divider {
        width: 53%;
    }

    .hero-left,
    .hero-right {
        text-align: center;
    }

    .secure-badges {
        max-width: 83%;
        margin: 15px auto;
        display: block;
    }

    .countdown-timer {
        flex-wrap: wrap;
    }

    .countdown-item {
        min-width: 100px;
        padding: 15px 20px;
    }

    .countdown-number {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .cta-button {
        font-size: 18px;
        padding: 12px 30px;
    }

    .benefits-list li {
        font-size: 16px;
    }

    .offer-price {
        font-size: 32px;
    }

    .offer-button {
        font-size: 18px;
        padding: 12px 30px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Scroll Animations */
.slide-in-left {
    opacity: 0;
    animation: slideInLeft 1s ease-out forwards;
}

.fade-in-down {
    opacity: 0;
    animation: fadeInDown 1s ease-out forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s ease-out forwards;
}
