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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #3c395a;
    /* background-color: #4f4c74; */
}

/* Configurações de fontes customizadas */
@font-face {
    font-family: 'Sofia Pro';
    font-weight: 400;
    src: local('Sofia Pro Regular');
}

@font-face {
    font-family: 'Sofia Pro';
    font-weight: 500;
    src: local('Sofia Pro Medium');
}

@font-face {
    font-family: 'Sofia Pro';
    font-weight: 600;
    src: local('Sofia Pro SemiBold');
}

@font-face {
    font-family: 'Sofia Pro';
    font-weight: 700;
    src: local('Sofia Pro Bold');
}

/* Hero Section */
.hero-section {
    background-color: #4f4c74;
    min-height: 100vh;
    position: relative;
    padding: 10% 0 0 0;
}

.hero-banner {
    background-image: url('banner-hero-auto-cartao-torra.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 800px;
    width: 100%;
    position: relative;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.logo-torra {
    height: 50px;
}

.assistencia-badge {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Sofia Pro', sans-serif;
    font-weight: 600;
}

.assistencia-text {
    color: #ff5101;
    font-size: 24px;
}

.auto-text {
    color: #589cde;
    font-size: 36px;
    font-weight: 700;
}

.tempo-text {
    color: #ff5101;
    font-size: 24px;
}

.porto-logo {
    height: 40px;
}

.hero-content {
    color: white;
    z-index: 2;
    position: relative;
}

.woman-image {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

.solution-badge {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 20px;
    border-radius: 5px;
    margin-top: 20px;
    font-family: 'Sofia Pro', sans-serif;
}

.action-text {
    color: #ff5101;
    font-size: 24px;
    font-weight: 400;
}

.solution-text {
    color: white;
    font-size: 32px;
    font-weight: 700;
}

.for-you-text {
    color: #589cde;
    font-size: 20px;
    font-weight: 400;
}

/* Card Section */
.card-section {
    position: relative;
    z-index: 2;
}

.credit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.card-image {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
}

.benefit-text {
    color: #3c395a;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.price-section {
    margin-bottom: 15px;
}

.price-label {
    color: #666;
    font-size: 14px;
    display: block;
}

.price-value {
    color: #ff5101;
    font-size: 48px;
    font-weight: 700;
    font-family: 'Sofia Pro', sans-serif;
}

.price-period {
    color: #666;
    font-size: 16px;
}

.prize-section {
    background-color: #589cde;
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
}

.prize-text {
    font-size: 14px;
    display: block;
}

.prize-value {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Sofia Pro', sans-serif;
}

.prize-period {
    font-size: 16px;
}

/* Services Section */
.services-section-chamada {
    background-color: #9AD4DD;
    padding: 0px 0;
    color: white;
    position: relative;
}

.services-section {
    background-color: #4f4c74;
    padding: 80px 0;
    color: white;
    position: relative;
}
.quebra-superior {
    height: 50px;
    background-color: #9AD4DD;
    clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%);
    margin-bottom: -1px;
}
.quebra-inferior {
    height: 50px;
    background-color: #9AD4DD;
    clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%);
    margin-top: -1px;
    transform: rotate(180deg);
    transform: scaleY(-1);
}

/* .services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background-image: url('wave-separator.svg');
    background-size: cover;
    background-position: center;
} */

.section-title h2 {
    font-family: 'Sofia Pro', sans-serif;
    font-weight: 500;
    font-size: 48px;
    color: #3c395a;
    background-color: rgba(156, 213, 221, 0.9);
    padding: 40px;
    border-radius: 10px;
    margin: 0 auto;
    max-width: 800px;
}

.services-title h3 {
    font-family: 'Sofia Pro', sans-serif;
    font-weight: 500;
    font-size: 40px;
    color: white;
    margin-bottom: 50px;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #33314c;
    padding: 20px 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 30px;
    height: 80px;
    transition: transform 0.3s ease;
    justify-content: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-center {
    max-width: 569px;
    margin: 0 auto;
}

.service-icon {
    width: 60px;
    height: 45px;
    flex-shrink: 0;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-text {
    font-family: 'Sofia Pro', sans-serif;
    font-weight: 600;
    font-size: 36px;
    color: white;
    white-space: nowrap;
}

.service-name {
    color: white;
}

.service-brand {
    color: #589cde;
}

/* Service Info Boxes */
.service-info {
    max-width: 1000px;
    margin: 0 auto;
}

.info-box {
    padding: 24px 48px;
    border-radius: 5px;
    margin: 20px 0;
}

.info-box-orange {
    background-color: #ff5101;
    color: white;
}

.info-box-blue {
    background-color: #9cd5dd;
    color: #3c395a;
}

.info-box p {
    font-family: 'Sofia Pro', sans-serif;
    font-size: 36px;
    margin: 0;
    line-height: 1.19;
}

.service-details p {
    color: white;
    font-family: 'Sofia Pro', sans-serif;
    font-size: 26px;
    margin: 30px 0;
}

/* Benefits Grid */
.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    border: 2px solid #b9dcdc;
    border-radius: 10px;
    padding: 32px 42px;
    text-align: center;
    background: transparent;
}

.benefit-card p {
    font-family: 'Sofia Pro', sans-serif;
    font-size: 36px;
    color: #b9dcdc;
    margin: 0;
    line-height: 1.19;
}

/* Store Locator */
.store-locator {
    
    margin: 0 auto;
    padding-top: 60px;
}

.store-info {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 36px;
    color: white;
    margin-bottom: 40px;
    line-height: 1.4;
}

.store-info .highlight {
    color: #9ad4dd;
}

.btn-find-store {
    background-color: #ff5101;
    color: white;
    border: none;
    padding: 16px 39px;
    border-radius: 40px;
    font-family: 'Sofia Pro', sans-serif;
    font-size: 32px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-bottom: 40px;
}

.btn-find-store:hover {
    background-color: #e6460f;
    color: white;
}

.arrow-icon {
    width: 33px;
    height: 40px;
}

.store-cta {
    font-family: 'Sofia Pro', sans-serif;
    font-size: 36px;
    color: white;
    margin: 40px 0;
}

/* Download Section */
.download-section {
    margin-top: 40px;
}

.download-info {
    color: white;
    font-family: 'Sofia Pro', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: -1.2px;
}

.btn-download {
    background-color: #ff5101;
    color: white;
    border: none;
    padding: 10px 41px;
    border-radius: 36px;
    font-family: 'Sofia Pro', sans-serif;
    font-size: 27px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-download:hover {
    background-color: #e6460f;
    color: white;
}

.download-icon {
    width: 34px;
    height: 34px;
}

/* Contact Section */
.contact-section {
    background-color: #9cd5dd;
    padding: 80px 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background-image: url('wave-contact.svg');
    background-size: cover;
    background-position: center;
}

.contact-title {
    font-family: 'Sofia Pro', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #3b375b;
    margin-bottom: 30px;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.phone-icon {
    width: 57px;
    height: 57px;
}

.number {
    font-family: 'Sofia Pro', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #3b375b;
}

.legal-text {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-text p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #3c395a;
    line-height: 1.4;
    letter-spacing: -0.6px;
    text-align: left;
}

/* Banner Section */
.banner-section {
    background-color: white;
    padding: 30px 0;
}

.banner-cartao {
    text-align: center;
}

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

/* Footer */
.footer-section {
    position: relative;
    height: 435px;
    background-color: #4f4c74;
}

.footer-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsividade */
@media (max-width: 1200px) {
    .services-grid {
        padding: 0 20px;
    }
    
    .service-card {
        padding: 15px 20px;
        height: auto;
        min-height: 80px;
    }
    
    .service-text {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .hero-banner {
        height: 600px;
    }
    
    .section-title h2 {
        font-size: 36px;
        padding: 30px;
    }
    
    .services-title h3 {
        font-size: 32px;
    }
    
    .service-text {
        font-size: 24px;
    }
    
    .info-box p {
        font-size: 28px;
    }
    
    .benefit-card p {
        font-size: 28px;
    }
    
    .store-info {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 25%;
    }
    
    .hero-banner {
        height: 500px;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
        padding: 20px;
    }
    
    .services-title h3 {
        font-size: 28px;
    }
    
    .service-card {
        flex-direction: column;
        height: auto;
        padding: 20px;
        text-align: center;
        gap: 15px;
    }
    
    .service-text {
        font-size: 20px;
        white-space: normal;
    }
    
    .info-box p {
        font-size: 20px;
    }
    
    .service-details p {
        font-size: 18px;
    }
    
    .benefit-card p {
        font-size: 20px;
    }
    
    .store-info {
        font-size: 20px;
    }
    
    .btn-find-store {
        font-size: 24px;
        padding: 12px 24px;
    }
    
    .store-cta {
        font-size: 24px;
    }
    
    .contact-title {
        font-size: 24px;
    }
    
    .number {
        font-size: 32px;
    }
    
    .phone-number {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        height: 400px;
    }
    
    .section-title h2 {
        font-size: 22px;
        padding: 15px;
    }
    
    .services-title h3 {
        font-size: 22px;
    }
    
    .service-text {
        font-size: 18px;
    }
    
    .info-box p {
        font-size: 16px;
    }
    
    .service-details p {
        font-size: 16px;
    }
    
    .benefit-card p {
        font-size: 16px;
    }
    
    .store-info {
        font-size: 16px;
    }
    
    .btn-find-store {
        font-size: 18px;
        padding: 10px 20px;
    }
    
    .store-cta {
        font-size: 18px;
    }
    
    .download-info {
        font-size: 16px;
    }
    
    .btn-download {
        font-size: 18px;
        padding: 8px 20px;
    }
    
    .legal-text p {
        font-size: 10px;
    }
}

/* Utilitários */
.adjustLetterSpacing {
    letter-spacing: -0.05em;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
