/* Container principal */
.garantia-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Nobel-Book', sans-serif;
}

/* Header */
.garantia-header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 60px;
    margin-bottom: 60px;
}

/* Títulos e conteúdo */
.garantia-title {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.garantia-main-title {
    font-family: 'Nobel-Regular', sans-serif;
    font-size: 32px;
    color: #000;
    margin-bottom: 40px;
    max-width: 100%;
    text-align: left;
    padding: 20px 0;
    line-height: 1.3;
    margin-left: 0;
    word-spacing: normal;
}

.garantia-main-title br {
    display: none;
}

.garantia-title h1 {
    font-family: 'Nobel-Regular', sans-serif;
    font-size: 32px;
    color: #000;
    margin-bottom: 40px;
    max-width: 600px;
    text-align: left;
    padding: 20px 0;
    line-height: 1.3;
    word-wrap: break-word;
    white-space: pre-line;
}

.garantia-title h1 br {
    display: inline;
    content: '';
}

.garantia-title h2 {
    font-family: 'Nobel-Regular', sans-serif;
    font-size: 24px;
    margin-bottom: 30px;
    color: #000;
    line-height: 1.3;
}

.garantia-title h3 {
    font-family: 'Nobel-Regular', sans-serif;
    font-size: 24px;
    margin-bottom: 25px;
    color: #000;
    line-height: 1.3;
}

.garantia-title p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

/* Listas */
.garantia-title ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.garantia-title li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.garantia-title li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
}

/* Imagens */
.garantia-image-align-right {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.garantia-image-align-right img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Botões */
.garantia-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Nobel-Book', sans-serif;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 20px;
}

.garantia-button:hover {
    background-color: #000;
    color: #fff;
}

/* Seções de conteúdo */
.garantia-content {
    margin-top: 60px;
}

.garantia-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 40px;
    background: #fdfcfc;
    padding: 40px;
}

.garantia-section:nth-child(odd) {
    flex-direction: row-reverse;
}

.garantia-section:first-of-type .garantia-image {
    flex: 2;
    max-width: 550px;
}

.garantia-section:first-of-type .garantia-image img {
    height: auto;
    max-height: none;
    border-radius: 4px;
    object-fit: contain;
    transform: scale(1);
}

/* Responsivo */
@media (max-width: 768px) {
    .garantia-container {
        max-width: 100%;
        justify-items: flex-start;
    }

    .garantia-header {
        flex-direction: column;
        gap: 0;
    }

    .garantia-section {
        flex-direction: column !important;
        padding: 0;
        gap: 30px;
        margin-bottom: 40px;
        background: none;
        position: relative;
        display: flex;
    }

    .garantia-section > * {
        order: 2;
    }

    .garantia-section .garantia-image {
        order: 1;
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .garantia-section .garantia-button,
    .garantia-section .btn-condicoes {
        order: 3;
    }

    .garantia-image img {
        width: 100%;
        height: auto;
        border-radius: 0;
        object-fit: contain;
    }

    .garantia-title,
    .garantia-text {
        align-items: flex-start;
    }

    .garantia-button {
        align-self: flex-start;
        margin: 20px 0;
    }

    .garantia-termos {
        margin: 40px 0;
        padding: 30px 20px;
        width: 100%;
        box-sizing: border-box;
        text-align: left;
    }

    .termos-content {
        width: 100%;
        text-align: left;
    }

    .termos-content h3 {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 20px;
        padding: 0;
    }

    .garantia-title ul {
        text-align: left;
    }

    .garantia-title p,
    .garantia-text p {
        text-align: left;
        font-size: 16px;
    }

    .garantia-title h1 {
        font-size: 28px;
        padding: 15px 0;
        margin-bottom: 30px;
        max-width: 100%;
        text-align: left;
        word-wrap: break-word;
        white-space: pre-line;
    }

    .garantia-title h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .garantia-title h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .garantia-section:first-of-type .garantia-image img {
        width: 100%;
        transform: none;
    }

    .garantia-section:nth-child(3) .garantia-image img {
        width: 100%;
        transform: none;
    }
}

.garantia-termos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0;
    width: 95%;
    background-color: #fdfcfc;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.termos-content {
    text-align: center;
}

.termos-content h3 {
    font-family: 'Nobel-Regular', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    color: #000;
}

.btn-condicoes {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Nobel-Book', sans-serif;
}

.btn-condicoes:hover {
    background-color: #000;
    color: #fff;
}

.garantia-extensao {
    display: flex;
    gap: 30px;
    align-items: center;
}

.garantia-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.garantia-image img {
    height: auto;
    border-radius: 4px;
    object-fit: contain;
}

.garantia-image-top1 {
    display: flex;
    justify-content: center;
    margin-top: 100px;
}

.garantia-text {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.garantia-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #000;
}

.garantia-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.leia-mais {
    color: #0051A4;
    text-decoration: none;
    font-weight: 500;
}

.divider {
    width: 100%;
    height: 2px;
    background-color: #000;
    margin: 20px 0;
}

.garantia-image {
    flex: 1;
    max-width: 500px;
}

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

.faq-section {
    margin-top: 80px;
    padding: 40px 0;
}

.faq-title {
    font-family: 'Nobel-Regular', sans-serif;
    font-size: 24px;
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-family: 'Nobel-Regular', sans-serif;
}

.faq-question h3 {
    font-size: 18px;
    margin: 0;
}

.faq-question .icon {
    font-size: 24px;
}

.faq-answer {
    display: none;
    padding: 0 0 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 768px) {
    .garantia-header {
        flex-direction: column;
        gap: 0;
    }

    .garantia-termos {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        background: rgb(228, 228, 228);
        text-align: center;
    }

    .garantia-extensao {
        flex-direction: column;
    }

    .garantia-title {
        max-width: 100%;
        justify-items: flex-start;
    }
}

.banner-garantia {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.banner-garantia img {
    width: 100%;
    height: auto;
    display: block;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }
    
    .d-md-block {
        display: block !important;
    }
}

@media (max-width: 767px) {
    .d-md-none {
        display: block !important;
    }
    
    .d-md-block {
        display: none !important;
    }
} 