/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #1a3947 0%, #0d1f28 100%);
    color: #ffffff;
    overflow-x: hidden;
}

.text-white {
    color: #ffffff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
.header {
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #A2CD47;
}

.cta-button {
    background: #A2CD47;
    color: #1a3947;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 251, 109, 0.3);
}

/* Hero Section */
.hero {
    padding: 60px 0 100px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    direction: ltr;
}

.hero-images {
    flex: 0 0 auto;
    width: 450px;
    transition: transform 0.3s ease;
}

.hero-images img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.hero-images:hover {
    transform: translateY(-10px);
}

.hero-text {
    flex: 1;
    text-align: right;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
}

.highlight {
    color: #A2CD47;
    font-size: 48px;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #d0d8dc;
    margin-bottom: 35px;
}

.app-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.app-store {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: #1a3947;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    min-width: 160px;
}

.app-store:hover {
    transform: translateY(-3px);
    background: #234553;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.store-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.store-label {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.8;
    font-weight: 400;
}

.store-name {
    font-size: 18px;
    font-weight: 600;
    margin-top: 2px;
}

/* About Section */
.about {
    padding: 80px 0 0;
    position: relative;
}

.about-content {
    text-align: center;
    /* max-width: 1100px; */
    margin: 0 auto;
    background: #234A51;
    padding-top: 20px;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #A2CD47;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #d0d8dc;
}

.wave-decoration {
    width: 100%;
    height: 120px;
    margin-top: 20px;
    background-image: 
        repeating-radial-gradient(circle at 50% 100%, 
        transparent 0, 
        transparent 40px,
        rgba(196, 251, 109, 0.3) 40px,
        rgba(196, 251, 109, 0.3) 41px);
    background-size: 80px 80px;
    background-position: 0 0;
    opacity: 0.3;
    
}

/* Features Section */
.features {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #1a3947 0%, #0d1f28 100%);
}

.features-header {
    text-align: center;
    margin-bottom: 40px;
}

.features-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.features-header h2 .highlight {
    color: #A2CD47;
}

.features-header p {
    font-size: 20px;
    color: #d0d8dc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-icon svg {
    width: 50px;
    height: 50px;
    color: #A2CD47;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-text {
    font-size: 17px;
    line-height: 1.6;
    color: #ffffff;
    max-width: 320px;
}

/* CTA Banner Section */
.cta-banner {
    padding: 0 0 0;
    background: linear-gradient(180deg, #0d1f28 0%, #1a3947 100%);
    overflow: hidden;
    direction: ltr;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #A2CD47 0%, #8AB438 100%);
    border-radius: 30px;
    padding: 40px 60px;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    padding-left: 0;
}

.cta-content::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: -100px;
    left: 20%;
}

.cta-content::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 35%;
    transform: translateY(-50%);
}

.cta-car {
    flex: 0 0 auto;
    position: relative;
    z-index: 10;
    margin-right: -40px;
}

.cta-car img {
    width: 480px;
    height: auto;
    display: block;
}

.cta-text {
    flex: 1;
    text-align: right;
    position: relative;
    z-index: 10;
}

.cta-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.cta-buttons .app-store {
    background: rgba(26, 57, 71, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-buttons .app-store:hover {
    background: rgba(35, 69, 83, 0.98);
    transform: translateY(-2px);
}

/* Workshop Section */
.workshop {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a3947 0%, #0d1f28 100%);
}

.workshop-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    direction: ltr;
}

.workshop-phone {
    flex: 0 0 auto;
    position: relative;
}

.workshop-phone img {
    width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.workshop-text {
    flex: 1;
    text-align: right;
}

.workshop-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.workshop-text h2 .highlight {
    color: #A2CD47;
}

.workshop-subtitle {
    font-size: 20px;
    color: #d0d8dc;
    margin-bottom: 35px;
    line-height: 1.6;
}

.workshop-features {
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
}

.workshop-features li {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 18px;
    padding-right: 30px;
    position: relative;
    line-height: 1.6;
}

.workshop-features li::before {
    content: '●';
    color: #A2CD47;
    font-size: 24px;
    position: absolute;
    right: 0;
    top: -2px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #A2CD47;
    color: #1a3947;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(162, 205, 71, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(162, 205, 71, 0.4);
    background: #8AB438;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* Summary Section */
.summary {
    padding: 100px 0;
    background: linear-gradient(180deg, #0d1f28 0%, #1a3947 100%);
}

.summary-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    direction: ltr;
}

.summary-phone {
    flex: 0 0 auto;
    position: relative;
}

.summary-phone img {
    width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.summary-text {
    flex: 1;
    text-align: right;
}

.summary-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

.summary-description {
    font-size: 20px;
    color: #d0d8dc;
    line-height: 1.8;
    margin-bottom: 35px;
}

.app-link {
    color: #A2CD47;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.app-link:hover {
    color: #8AB438;
    gap: 8px;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.app-link:hover .arrow-icon {
    transform: translateX(-3px);
}

.summary-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.summary-buttons .app-store {
    background: rgba(26, 57, 71, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.summary-buttons .app-store:hover {
    background: rgba(35, 69, 83, 0.9);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background: linear-gradient(180deg, #1a3947 0%, #0d1f28 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -200px;
    left: 10%;
}

.footer::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -100px;
    right: 15%;
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    color: #A2CD47;
    margin-bottom: 30px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.info-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.info-label {
    color: #d0d8dc;
    font-weight: 500;
}

.info-value {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.info-value:hover {
    color: #A2CD47;
}

.footer-apps {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.footer-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: #1a3947;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    min-width: 160px;
}

.footer-app-btn:hover {
    transform: translateY(-3px);
    background: #234553;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-store-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.footer-store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.footer-store-label {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.8;
    font-weight: 400;
}

.footer-store-name {
    font-size: 18px;
    font-weight: 600;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 20px;
}

.copyright,
.registration {
    font-size: 14px;
    color: #d0d8dc;
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #A2CD47;
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.social-link:hover svg {
    color: #1a3947;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        gap: 40px;
    }
    
    .hero-images {
        width: 380px;
    }
    
    .hero-text h1 {
        font-size: 44px;
    }
    
    .highlight {
        font-size: 40px;
    }
    
    .features-grid {
        gap: 40px 30px;
    }
    
    .cta-content {
        padding: 40px 50px;
    }
    
    .cta-car img {
        width: 420px;
    }
    
    .cta-text h2 {
        font-size: 42px;
    }
    
    .workshop-phone img {
        width: 440px;
    }
    
    .workshop-text h2 {
        font-size: 42px;
    }
    
    .workshop-subtitle {
        font-size: 18px;
    }
    
    .summary-phone img {
        width: 360px;
    }
    
    .summary-text h2 {
        font-size: 42px;
    }
    
    .summary-description {
        font-size: 18px;
    }
    
    .footer-logo img {
        height: 45px;
    }
    
    .footer-title {
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .hero-images {
        width: 400px;
        margin: 0 auto;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .about-content h2 {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    
    .features-header h2 {
        font-size: 40px;
    }
    
    .features-header p {
        font-size: 18px;
    }
    
    .cta-content {
        flex-direction: column;
        padding: 50px 40px 40px;
        text-align: center;
    }
    
    .cta-car {
        margin-right: 0;
        order: 2;
    }
    
    .cta-car img {
        width: 380px;
    }
    
    .cta-text {
        text-align: center;
        order: 1;
    }
    
    .cta-text h2 {
        font-size: 38px;
        margin-bottom: 25px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .workshop {
        padding: 80px 0;
    }
    
    .workshop-content {
        flex-direction: row-reverse;
        gap: 60px;
    }
    
    .workshop-phone img {
        width: 380px;
    }
    
    .workshop-text h2 {
        font-size: 38px;
    }
    
    .workshop-subtitle {
        font-size: 17px;
    }
    
    .workshop-features li {
        font-size: 17px;
    }
    
    .summary {
        padding: 80px 0;
    }
    
    .summary-content {
        gap: 60px;
    }
    
    .summary-phone img {
        width: 320px;
    }
    
    .summary-text h2 {
        font-size: 38px;
    }
    
    .summary-description {
        font-size: 17px;
    }
    
    .footer {
        padding: 50px 0 35px;
    }
    
    .footer-title {
        font-size: 20px;
    }
    
    .info-item {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .logo {
        order: 1;
        flex: 0 0 100%;
        text-align: center;
    }
    
    .nav-menu {
        order: 3;
        flex: 0 0 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .cta-button {
        order: 2;
    }
    
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-images {
        width: 340px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .highlight {
        font-size: 34px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .about {
        padding: 60px 0 0;
    }
    
    .about-content h2 {
        font-size: 32px;
    }
    
    .about-content p {
        font-size: 15px;
    }
    
    .features {
        padding: 60px 0 80px;
    }
    
    .features-header {
        margin-bottom: 50px;
    }
    
    .features-header h2 {
        font-size: 32px;
    }
    
    .features-header p {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-text {
        font-size: 16px;
    }
    
    .cta-content {
        padding: 40px 30px 30px;
        border-radius: 20px;
    }
    
    .cta-car img {
        width: 300px;
    }
    
    .cta-text h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .cta-content::before,
    .cta-content::after {
        display: none;
    }
    
    .workshop {
        padding: 60px 0;
    }
    
    .workshop-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .workshop-phone img {
        width: 320px;
    }
    
    .workshop-text {
        text-align: center;
    }
    
    .workshop-text h2 {
        font-size: 32px;
    }
    
    .workshop-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .workshop-features {
        text-align: right;
        max-width: 400px;
        margin: 0 auto 30px;
    }
    
    .workshop-features li {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .whatsapp-btn {
        font-size: 16px;
        padding: 12px 28px;
    }
    
    .summary {
        padding: 60px 0;
    }
    
    .summary-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .summary-phone img {
        width: 280px;
    }
    
    .summary-text {
        text-align: center;
    }
    
    .summary-text h2 {
        font-size: 32px;
    }
    
    .summary-description {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .summary-buttons {
        justify-content: center;
    }
    
    .footer {
        padding: 40px 0 30px;
    }
    
    .footer-logo img {
        height: 40px;
    }
    
    .footer-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .footer-info {
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .info-item {
        flex-direction: column;
        gap: 5px;
        font-size: 14px;
    }
    
    .footer-apps {
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .app-badge {
        height: 42px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-menu {
        font-size: 14px;
        gap: 10px;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .hero-images {
        width: 280px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .highlight {
        font-size: 26px;
    }
    
    .hero-text p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .app-store img {
        height: 45px;
    }
    
    .about-content h2 {
        font-size: 26px;
    }
    
    .about-content p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .wave-decoration {
        height: 80px;
        margin-top: 60px;
    }
    
    .features {
        padding: 50px 0 60px;
    }
    
    .features-header h2 {
        font-size: 28px;
    }
    
    .features-header p {
        font-size: 15px;
    }
    
    .feature-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .feature-text {
        font-size: 15px;
    }
    
    .cta-banner {
        padding: 0;
    }
    
    .cta-content {
        padding: 30px 20px 20px;
        border-radius: 15px;
        min-height: auto;
    }
    
    .cta-car img {
        width: 250px;
    }
    
    .cta-text h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-buttons .app-store {
        width: 100%;
        justify-content: center;
    }
    
    .workshop {
        padding: 50px 0;
    }
    
    .workshop-phone img {
        width: 280px;
    }
    
    .workshop-text h2 {
        font-size: 26px;
    }
    
    .workshop-subtitle {
        font-size: 15px;
    }
    
    .workshop-features {
        max-width: 100%;
    }
    
    .workshop-features li {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .whatsapp-btn {
        font-size: 15px;
        padding: 12px 24px;
    }
    
    .whatsapp-icon {
        width: 20px;
        height: 20px;
    }
    
    .summary {
        padding: 50px 0;
    }
    
    .summary-phone img {
        width: 240px;
    }
    
    .summary-text h2 {
        font-size: 26px;
    }
    
    .summary-description {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .app-link {
        font-size: 15px;
    }
    
    .arrow-icon {
        width: 18px;
        height: 18px;
    }
    
    .summary-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .summary-buttons .app-store {
        width: 100%;
        justify-content: center;
    }
    
    .footer {
        padding: 35px 0 25px;
    }
    
    .footer-logo img {
        height: 35px;
    }
    
    .footer-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .info-item {
        font-size: 13px;
    }
    
    .footer-apps {
        flex-direction: column;
        align-items: center;
    }
    
    .app-badge {
        height: 40px;
    }
    
    .copyright,
    .registration {
        font-size: 12px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link svg {
        width: 16px;
        height: 16px;
    }
}
