* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
:root {
    --text-color: #1e293b;
    --primary-color: #FC5306;
    --bg-color: #f2f1ef;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--bg-color);
}
body {
    line-height: 1.6;
    color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
}
header {
    background-color: #FC5306;
    height: 4rem;
    padding: 0 5%;
    justify-content: space-between;
    align-items: center;
    display: flex;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header-buttons {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.header-buttons a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}
.header-buttons a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}
.header-buttons a:hover::after {
    width: 100%;
}
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
}
a.btn, .btn-contact {
    width: 10rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff; 
    font-size: 1rem; 
    font-weight: 600;
    border: 1.5px solid #fff; 
    cursor: pointer; 
    transition: all 0.3s ease;
    text-decoration: none;
}
a.btn:hover, .btn-contact:hover {
    background-color: #fff;
    color: #FC5306;
}

header img {
    height: 3.5rem;
    width: auto;
    padding: 0.5rem;
}

main {
    background-color: #ff6100;
    padding: 4rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 80vh;
}
.text {
    max-width: 600px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0;
}
.text p, .text h5 {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}
.btn-contact {
    margin-top: 1rem;
    background-color: #fff;
    color: #FC5306;
    border: none;
    font-weight: 700;
    width: fit-content;
    padding: 0.8rem 2.5rem;
    border-radius: 50rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-contact:hover {
    background-color: #f2f2f2;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

main > img {
    width: 40%;
    max-width: 500px;
    height: auto;
}

.cell{
    display: flex;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
    max-width: 50rem;
}

.card {
    width: 15rem;
    height: 17rem;
    margin: 3px;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f2f1ef;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 1;
    padding: 2rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card i {
    font-size: 24px;
    margin-bottom: 10px;
    color: #FC5306;
}

.card h5 {
    font-size: 16px;
    margin: 0;
}

.card h6 {
    font-size: 0.7rem;
    margin: 0.1rem;
}

img {
    width: 45rem;
    margin-top: 0.4rem;
    max-height:  35rem;
}

.text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 50rem;
    padding: 2rem;
    font-size: 1.5rem;
    color: #fff;
}
.text > h1 {
    padding-bottom: 1rem;
}
.text > button {
    margin-top: 2.5rem;
    color: #fff;
    padding: 0.5rem;
    width:  12rem;
    height: 2.5rem;
    background-color: #ff6100;
    border: 0.1rem solid white;
    border-radius: 50rem;
}

.card-planos ul {
    list-style-type: none;
    padding: 0;
    margin: 1rem 0;
}

.card-planos li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #333;
}

.card-planos li::before {
    content: "✓";
    color: #FC5306;
    font-weight: bold;
    margin-right: 0.5rem;
}

.card-planos h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: bold;
}

.card-planos p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.card-planos a:hover {
    background-color: #e64800;
}

.card-planos.popular {
    position: relative;
    background-color: #fff5e6;
    border: 2px solid #ff6100;
}

.card-planos.popular .popular-label {
    position: absolute;
    top: -10px;
    left: 10px;
    background-color: #ff6100;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-planos {
    width: 19.5rem;
    height: 25rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.cards-planos {
    display: flex;
    justify-content: space-around;
    gap: 1.5rem; 
    flex-wrap: wrap;
    padding: 0 1rem;
    
}
.assistencia {
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.planostitle {
    text-align: center;
    margin-bottom: 2rem;
}

.planostitle h1 {
    font-size: 1.8rem;
    color: #ff6200; /* Laranja do título principal */
    margin: 0;
}

.planostitle h5 {
    font-size: 1rem;
    color: #666;
}

.content {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: stretch;
}

.text-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 2rem;
}

.assistencia-text {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.title-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.title-icon i {
    font-size: 1.5rem;
    color: #ff6200; 
}

.title-icon h1 {
    font-size: 1.1rem;
    color: #000000; /* Preto para o h1 */
    margin: 0;
    font-weight: 600;
    padding-bottom: 0.5rem;
}

.assistencia-text h5 {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    font-weight: 200;
    max-width: 90%;
    padding-left: 2rem;
}

.assistencia-img {
    flex: 1;
    background-color: #d3d3d3; /* Fundo cinza */
    position: relative; /* Para posicionar o botão */
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.assistencia-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.assistencia-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background-color: #ff6200;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    width: fit-content;
    z-index: 1;
}

.assistencia-btn:hover {
    background-color: #e55a00;
}

.assistencia-img {
    flex: 1;
    background-color: #d3d3d3;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.assistencia-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.telemetria-section {
    display: flex;
    flex-direction: column;
    padding: 1rem 1rem;
    background-color: #f2f1ef;
}

.telemetria-content {
    display: flex;
    flex-direction: row-reverse;
    gap: 1rem;
    align-items: center;
}

.telemetria-img-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.telemetria-img-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.telemetria-section .text-container {
    flex: 1;
}

@media screen and (max-width: 768px) {
    .telemetria-content {
        flex-direction: column;
    }
    .telemetria-img-container {
        margin-bottom: 2rem;
    }
}
  
.planos {
    padding: 2rem;
}

.planostitle {
    text-align: center;
    padding: 2rem 0; /* Adds 2rem padding above and below */
}

h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.cards-planos {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.card-planos {
    background-color: #f2f1ef;
    border-radius: 10px;
    padding: 4rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-planos:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 0.5rem;
}

.card-planos > a {
    background-color: #FC5306;
    color: #fff;
    border: none;
    margin-top: 2rem;
    padding: 0.75rem 2.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

a:hover {
    background-color: #e64800;
}

footer {
    background-color: #FC5306;
    color: #fff;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contentfooter {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
    gap: 2rem;
}

.logofooter {
    max-width: 20rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logofooter > img {
    width: 10rem;
    height: auto;
    margin-bottom: 1rem;
}

.logofooter > h5 {
    line-height: 1.5;
    font-size: 0.9rem;
    font-weight: normal;
    margin: 0;
}

footer div {
    line-height: 1.5;
    border: none;
}

footer h4 {
    color: #fff;
    font-size: 1.1/rem;
    margin-bottom: 0.5rem;
}

footer h6 {
    font-size: 0.9rem;
    margin: 0.3rem 0;
    font-weight: normal;
}

.politic {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.politic a {
    background-color: #FC5306;
    color: #fff;
    font-size: 0.9rem;
    border: none;
    text-decoration: none;
    margin: 0.3rem 0;
}

.politic a:hover {
    text-decoration: underline;
    border: none;
}

.social-icons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.social-icons > div {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #fff;
    background-color: #FC5306;
    font-size: 1.5rem;
    width: auto;
    border: none;
    text-decoration: none;
}

.social-icons a:hover {
    opacity: 0.8;
}

.copyright {  
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.copyright > p {
    color: #fff;
}

#btnTopo {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FC5306;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    transition: opacity 0.3s, visibility 0.3s;
}

#btnTopo:hover {
    background-color: #e64800;
}


@media screen and (max-width: 768px) {
    header {
        width: 100vw;
        padding: 0 1rem;
        height: 4rem;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }
    header > img {
        width: 9rem;
        height: auto;
        padding: 0;
    }
    .hamburger {
        display: block;
        z-index: 1001;
    }
    .header-buttons {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 4rem;
        left: 0;
        width: 100%;
        background-color: #FC5306;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    .header-buttons.active {
        display: flex;
    }
    header .header-buttons a {
        width: 100%;
        height: 3rem;
        font-size: 1rem;
    }
    main {
        flex-direction: column;
        padding: 5rem;
        width: 100%;
    }
    main > img {
        width: 100%;
        margin-bottom: 2rem;
    }
    .text {
        padding: 0.5rem;
        font-size: 0.4rem;
    }
    .text > button {
        margin-top: 2rem;
        width: 100%;
    }

    .cell{
        display: flex;
        flex-direction: column;
    }
    .cards {
        max-width: 100%;
    }
    .card {
        width: 100%;
        margin: 5px;
        padding: 1.5rem;
    }
    img {
        width: 100%;
        max-height: none;
    }
    .content {
        flex-direction: column;
        padding: 1rem;
    }
    .content > img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2rem;
    }
    .assistencia-text {
        width: 100%;
        padding-bottom: 0.7rem;
    }
    .cards-planos {
        flex-direction: column;
        align-items: center;
    }

    .card-planos {
        width: 90%;
        margin: 5px; 
        padding: 0.1rem;
    }

    footer {
        padding: 0.5rem;
        height: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    footer > img {
        width: 10rem;
        height: auto;
    }
    .politic {
        padding-left: 1rem;
    }
    .social-icons {
        flex-direction: row; 
        justify-content: center;
        align-items: center;
    }
}
