/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.container-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: 30px;
    color: #737373;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: #ff6600;
}

.btn-entrar {
    padding: 12px 28px;
    background: transparent;
    color: #ff6600;
    text-decoration: none;
    border: 2px solid #ff6600;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-entrar:hover {
    background: #ff6600;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    max-height: 1100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #cb1a48 0%, #ff3131 50%, #ff914d 100%);
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho sutil no fundo */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.container-hero {
    max-width: 1200px;
    margin: 20% 0 0 0 ;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.hero-content {
    margin-bottom: 60px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.5;
}

.btn-primary {
    display: inline-block;
    padding: 18px 48px;
    background: white;
    color: #ff6600;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f0f0f0;
}

/* Hero Media - Placeholder */
.hero-media {
    max-width: 1400px;
    margin: 80px auto 0;
    position: relative;
    overflow: visible;
}

.hero-image-wrapper {
    width: 140%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%) translateY(40px);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(0, 0, 0, 0.2);
    display: block;
    transition: all 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35), 0 10px 25px rgba(0, 0, 0, 0.25);
}

.media-placeholder {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 80px 40px;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
}

.media-placeholder:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.placeholder-content i {
    font-size: 80px;
    color: white;
    opacity: 0.8;
}

.placeholder-content p {
    font-size: 18px;
    color: white;
    font-weight: 500;
    opacity: 0.9;
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(51, 51, 51, 0.98);
    backdrop-filter: blur(10px);
    color: #f0f0f0;
    padding: 25px 40px;
    text-align: center;
    z-index: 2000;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner p {
    margin-bottom: 15px;
    font-size: 15px;
}

.cookie-banner a {
    color: #ff6600;
    text-decoration: none;
    font-weight: 600;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

.btn-cookie {
    background: #ff6600;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-cookie:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .btn-primary {
        padding: 16px 40px;
        font-size: 16px;
    }
    
    .hero-image-wrapper {
        width: 130%;
        transform: translateX(-50%) translateY(30px);
    }
    
    .container-header {
        padding: 0 20px;
    }
    
    .nav-list {
        gap: 20px;
    }
    
    .logo-text {
        font-size: 20px;
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .btn-primary {
        padding: 14px 32px;
        font-size: 16px;
    }
    
    .hero-media {
        margin-top: 60px;
    }
    
    .hero-image-wrapper {
        width: 120%;
        transform: translateX(-50%) translateY(20px);
    }
    
    .hero-image {
        border-radius: 16px;
    }
    
    .media-placeholder {
        padding: 60px 30px;
    }
    
    .placeholder-content i {
        font-size: 60px;
    }
    
    .placeholder-content p {
        font-size: 16px;
    }
    
    .nav-list {
        gap: 15px;
        font-size: 14px;
    }
    
    .btn-entrar {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .cookie-banner {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .hero-media {
        margin-top: 40px;
    }
    
    .hero-image-wrapper {
        width: 110%;
        transform: translateX(-50%) translateY(10px);
    }
    
    .hero-image {
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 0 5px 15px rgba(0, 0, 0, 0.15);
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 18px;
    }
}

/* Features Section */
.features {
    background: #f5f5f7;
    padding: 100px 40px;
    overflow: hidden;
}

.container-features {
    max-width: 1400px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-title {
    font-size: 48px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.features-title .highlight {
    color: #86868b;
}

.features-subtitle {
    font-size: 22px;
    color: #86868b;
    font-weight: 400;
}

/* Carousel Wrapper */
.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-wrapper:hover .carousel-btn {
    opacity: 1;
}

.carousel-track {
    display: flex;
    gap: 24px;
    animation: scroll 40s linear infinite;
    width: fit-content;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-track:hover {
    animation-play-state: paused;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    color: #1d1d1f;
}

.carousel-btn:hover {
    background: white;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
    color: #ff6600;
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 18px;
    padding: 40px 32px;
    min-width: 340px;
    max-width: 340px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Gradientes de Texto */
.gradient-text-1 {
    background: linear-gradient(135deg, #ff6600 0%, #ff8c42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-2 {
    background: linear-gradient(135deg, #ff8c42 0%, #ffa366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-3 {
    background: linear-gradient(135deg, #ffa366 0%, #dc3b32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-4 {
    background: linear-gradient(135deg, #dc3b32 0%, #CB1A48 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-5 {
    background: linear-gradient(135deg, #CB1A48 0%, #ff6600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-6 {
    background: linear-gradient(135deg, #ff8c42 0%, #CB1A48 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-list li {
    font-size: 16px;
    color: #6e6e73;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.card-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6600;
    font-weight: 700;
    font-size: 18px;
}

.card-list li:last-child {
    margin-bottom: 0;
}

/* Responsive Features */
@media (max-width: 968px) {
    .features {
        padding: 80px 20px;
    }
    
    .features-title {
        font-size: 36px;
    }
    
    .features-subtitle {
        font-size: 18px;
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        opacity: 1;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
    }
    
    .feature-card {
        min-width: 300px;
        max-width: 300px;
        padding: 32px 24px;
    }
    
    .card-icon {
        width: 64px;
        height: 64px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-list li {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 60px 20px;
    }
    
    .features-title {
        font-size: 28px;
    }
    
    .features-subtitle {
        font-size: 16px;
    }
    
    .features-header {
        margin-bottom: 40px;
    }
    
    .feature-card {
        min-width: 280px;
        max-width: 280px;
        padding: 28px 20px;
    }
    
    .carousel-track {
        gap: 16px;
        animation: scroll 30s linear infinite;
    }
}

@media (max-width: 480px) {
    .features-title {
        font-size: 24px;
    }
    
    .features-subtitle {
        font-size: 14px;
    }
    
    .feature-card {
        min-width: 260px;
        max-width: 260px;
    }
}

/* Comparison Section */
.comparison {
    background: white;
    padding: 100px 40px;
}

.container-comparison {
    max-width: 1400px;
    margin: 0 auto;
}

.comparison-title {
    font-size: 48px;
    font-weight: 700;
    color: #1d1d1f;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.comparison .features-subtitle {
    text-align: center;
    margin-bottom: 60px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.comparison-card {
    border-radius: 24px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    min-height: 550px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.comparison-card:hover {
    transform: translateY(-8px);
}

/* Card Sem LaudoFacil - Cinza/Azul */
.comparison-card-without {
    background: linear-gradient(135deg, #5a6c7d 0%, #7a8a9a 50%, #8a99ab 100%);
    box-shadow: 0 8px 30px rgba(90, 108, 125, 0.3);
}

.comparison-card-without:hover {
    box-shadow: 0 16px 50px rgba(90, 108, 125, 0.4);
}

/* Card Com LaudoFacil - Laranja/Gradiente */
.comparison-card-with {
    background: linear-gradient(135deg, #ff6600 0%, #ff8c42 50%, #ffa366 100%);
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.3);
}

.comparison-card-with:hover {
    box-shadow: 0 16px 50px rgba(255, 102, 0, 0.4);
}

.comparison-card-content {
    margin-bottom: 40px;
}

.comparison-card-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.comparison-card-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 400;
}

.comparison-image-placeholder {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-grow: 1;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.comparison-card:hover .comparison-image-placeholder {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.placeholder-icon {
    width: 120px;
    height: 120px;
    color: white;
    opacity: 0.8;
}

.placeholder-icon svg {
    width: 100%;
    height: 100%;
}

.comparison-image-placeholder p {
    font-size: 16px;
    color: white;
    font-weight: 500;
    opacity: 0.9;
    text-align: center;
}

/* Responsive Comparison */
@media (max-width: 968px) {
    .comparison {
        padding: 80px 20px;
    }
    
    .comparison-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .comparison-card {
        padding: 40px 32px;
        min-height: auto;
    }
    
    .comparison-card-title {
        font-size: 28px;
    }
    
    .comparison-card-text {
        font-size: 16px;
    }
    
    .comparison-image-placeholder {
        padding: 50px 30px;
    }
    
    .placeholder-icon {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .comparison {
        padding: 60px 20px;
    }
    
    .comparison-title {
        font-size: 28px;
    }
    
    .comparison-card {
        padding: 32px 24px;
    }
    
    .comparison-card-title {
        font-size: 24px;
    }
    
    .comparison-card-text {
        font-size: 15px;
    }
    
    .comparison-image-placeholder {
        padding: 40px 20px;
    }
    
    .placeholder-icon {
        width: 80px;
        height: 80px;
    }
    
    .comparison-image-placeholder p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .comparison-title {
        font-size: 24px;
    }
    
    .comparison-card {
        padding: 28px 20px;
    }
    
    .comparison-card-title {
        font-size: 22px;
    }
}

/* IA Banner Section */
.ia-banner {
    padding: 40px 40px;
    background: #f5f5f7;
}

.container-ia-banner {
    max-width: 1200px;
    margin: 0 auto;
}

.banner-content {
    background: linear-gradient(135deg, #ff6600 0%, #ff5577 50%, #e94b7a 100%);
    border-radius: 32px;
    padding: 60px 80px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(255, 102, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(255, 102, 0, 0.35);
}

.banner-title {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.3;
}

.banner-subtitle {
    font-size: 28px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
}

/* Responsive IA Banner */
@media (max-width: 968px) {
    .ia-banner {
        padding: 60px 20px;
    }
    
    .banner-content {
        padding: 50px 60px;
    }
    
    .banner-title {
        font-size: 32px;
    }
    
    .banner-subtitle {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .ia-banner {
        padding: 50px 20px;
    }
    
    .banner-content {
        padding: 40px 40px;
        border-radius: 24px;
    }
    
    .banner-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .banner-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .ia-banner {
        padding: 40px 20px;
    }
    
    .banner-content {
        padding: 32px 24px;
    }
    
    .banner-title {
        font-size: 22px;
    }
    
    .banner-subtitle {
        font-size: 16px;
    }
}

/* Testimonials Section */
.testimonials {
    background: #f5f5f7;
    padding: 100px 40px;
}

.container-testimonials {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 700;
    color: #1d1d1f;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.2;
}

.testimonials-subtitle {
    font-size: 20px;
    color: #86868b;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    padding: 0 80px;
}

.testimonials-track-wrapper {
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px 28px;
    min-width: calc(33.333% - 16px);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Stars */
.stars {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
}

/* Testimonial Image Placeholder */
.testimonial-image-placeholder {
    width: 100%;
    height: 350px;
    background: #f9f9f9;
    border-radius: 12px;
    border: 2px dashed #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-image-placeholder:has(img) {
    border: none;
    background: transparent;
}

.testimonial-card:hover .testimonial-image-placeholder {
    border-color: #ff6600;
    background: #fff5f0;
}

.testimonial-card:hover .testimonial-image-placeholder:has(img) {
    border-color: transparent;
    background: transparent;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.placeholder-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #999;
}

.placeholder-text svg {
    opacity: 0.5;
}

.placeholder-text p {
    font-size: 14px;
    font-weight: 500;
}

/* Testimonial Author */
.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    text-align: center;
}

/* Testimonial Navigation Buttons */
.testimonial-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    z-index: 10;
    color: #1d1d1f;
}

.testimonial-btn:hover {
    background: #ff6600;
    color: white;
    box-shadow: 0 6px 24px rgba(255, 102, 0, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.testimonial-btn-prev {
    left: 0;
}

.testimonial-btn-next {
    right: 0;
}

/* Responsive Testimonials */
@media (max-width: 1200px) {
    .testimonial-card {
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 968px) {
    .testimonials {
        padding: 80px 20px;
    }
    
    .testimonials-title {
        font-size: 36px;
    }
    
    .testimonials-subtitle {
        font-size: 18px;
        margin-bottom: 50px;
    }
    
    .testimonials-carousel {
        padding: 0 60px;
    }
    
    .testimonial-card {
        min-width: calc(100% - 0px);
        padding: 28px 24px;
    }
    
    .testimonial-image-placeholder {
        height: 300px;
    }
    
    .testimonial-btn {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 20px;
    }
    
    .testimonials-title {
        font-size: 28px;
    }

    
    .testimonials-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .testimonials-carousel {
        padding: 0 50px;
    }
    
    .testimonial-card {
        padding: 24px 8px;
    }
    
    .testimonial-image-placeholder {
        height: 280px;
    }
    
    .stars svg {
        width: 20px;
        height: 20px;
    }
    
    .testimonial-author {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .testimonials-title {
        font-size: 24px;
    }
    
    .testimonials-subtitle {
        font-size: 14px;
    }
    
    .testimonials-carousel {
        padding: 0 40px;
    }
    
    .testimonial-btn {
        width: 38px;
        height: 38px;
    }
    
    .testimonial-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .testimonial-image-placeholder {
        height: 250px;
    }
}

/* FAQ Section */
.faq {
    background: white;
    padding: 100px 40px;
}

.container-faq {
    max-width: 900px;
    margin: 0 auto;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: #1d1d1f;
    text-align: center;
    margin-bottom: 60px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ff6600;
}

.faq-item.active {
    border-color: #ff6600;
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    flex-shrink: 0;
    color: #1d1d1f;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #ff6600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fafafa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 24px 28px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* Footer */
.footer {
    background: #1d1d1f;
    color: #f5f5f7;
    padding: 60px 40px 30px;
}

.container-footer {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
    max-width: 350px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: #f5f5f7;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ff6600;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #86868b;
    margin: 0;
}

/* Responsive FAQ */
@media (max-width: 968px) {
    .faq {
        padding: 80px 20px;
    }
    
    .faq-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 20px 24px;
        font-size: 16px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px 24px;
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 20px;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Footer Responsive */
    .footer {
        padding: 50px 20px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 24px;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 16px 18px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    .faq-item.active .faq-answer {
        padding: 18px;
    }
    
    /* Footer Mobile */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo-img {
        height: 35px;
    }
    
    .footer-logo-text {
        font-size: 20px;
    }
    
    .footer-description {
        font-size: 14px;
    }
}
