

    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --primary-color: #0066cc;
    --primary-dark: #004c99;
    --secondary-color: #00a651;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #00a651;
    --warning-color: #ffa726;
    font-family: Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;
    line-height: 1.6;
    font-weight: 400;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden
}
img{
  max-width: 100%;
}
#app {
    width: 100%
}

.header {
    background: var(--bg-white);
    padding: 1rem 0;
    box-shadow: 0 2px 8px #0000000d;
    position: sticky;
    top: 0;
    z-index: 1000
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none
}

.header-cta {
    display: flex;
    gap: 1rem;
    align-items: center
}

.btn {
    padding: .75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: inherit;
    display: inline-block;
    text-align: center
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 2px 8px #06c3
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px #0066cc4d
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    gap: .5rem
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px #25d3664d
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color)
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff
}

.hero {
    background: linear-gradient(135deg,#06c,#004c99);
    color: #fff;
    padding: 4rem 1.5rem;
    /* text-align: center */
}

.hero-content {
    /* max-width: 800px; */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: .95;
    line-height: 1.5
}

.hero-cta {
    display: flex;
    gap: 1rem;
    /* justify-content: center; */
    flex-wrap: wrap;
    margin-bottom: 2rem
}

.hero-cta .btn {
    font-size: 1.1rem;
    padding: 1rem 2rem
}

.trust-badges {
    display: flex;
    gap: 2rem;
    /* justify-content: center; */
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.2)
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .95rem
}

.trust-icon {
    font-size: 1.5rem
}

.section {
    padding: 4rem 1.5rem
}

.section-light {
    background: var(--bg-light)
}

.container {
    max-width: 1200px;
    margin: 0 auto
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark)
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 2rem;
    margin-top: 3rem
}

.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px #00000014;
    transition: transform .3s ease,box-shadow .3s ease
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px #0000001f
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: .75rem;
    color: var(--text-dark)
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.6
}

.quote-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px #0000001a;
    max-width: 600px;
    margin: 0 auto
}

.form-group {
    margin-bottom: 1rem
}

.form-group label {
    display: block;
    margin-bottom: .5rem;
    font-weight: 600;
    color: var(--text-dark)
}

.form-group input,.form-group select,.form-group textarea {
    width: 100%;
    padding: .875rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color .3s ease
}

.form-group input:focus,.form-group select:focus,.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color)
}

.form-group textarea {
    resize: vertical;
    min-height: 120px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 2rem;
    margin-top: 3rem
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px #00000014
}

.testimonial-stars {
    color: #ffa726;
    font-size: 1.2rem;
    margin-bottom: 1rem
}

.testimonial-text {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark)
}

.testimonial-meta {
    color: var(--text-light);
    font-size: .9rem
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 2rem;
    text-align: center;
    margin-top: 3rem
}

.stat-card {
    padding: 2rem
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: .5rem
}

.stat-label {
    color: var(--text-medium);
    font-size: 1.1rem
}

.pricing-highlight {
    background: linear-gradient(135deg,#00a651,#008041);
    color: #fff;
    padding: 3rem 1.5rem;
    text-align: center;
    border-radius: 12px;
    margin-top: 3rem
}

.pricing-highlight h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem
}

.pricing-highlight p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: .95
}

.guarantee {
    background: var(--bg-light);
    border: 2px solid var(--success-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem
}

.guarantee-icon {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 1rem
}

.guarantee h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark)
}

.guarantee p {
    color: var(--text-medium);
    line-height: 1.6
}

.faq-container {
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    background: var(--bg-white);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px #0000000f;
    transition: box-shadow .3s ease
}

.faq-item:hover {
    box-shadow: 0 4px 12px #0000001a
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--bg-white);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: background .3s ease;
    font-family: inherit
}

.faq-question:hover {
    background: var(--bg-light)
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    transition: transform .3s ease;
    flex-shrink: 0;
    margin-left: 1rem
}

.faq-item.active .faq-icon {
    transform: rotate(45deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease,padding .4s ease;
    padding: 0 1.5rem
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0
}

.footer {
    background: var(--text-dark);
    color: #fff;
    padding: 2rem 1.5rem;
    text-align: center
}

.footer p {
    opacity: .8
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px #25d36666;
    cursor: pointer;
    z-index: 999;
    transition: all .3s ease;
    text-decoration: none
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px #25d36699
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: #fff
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0009;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem
}

.modal.active {
    display: flex
}

.modal-content {
    background: var(--bg-white);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn .3s ease
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center
}

.modal-header h2 {
    font-size: 1.5rem;
    color: var(--text-dark)
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-medium);
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background .3s ease
}

.modal-close:hover {
    background: var(--bg-light)
}

.modal-body {
    padding: 2rem
}

.success-message {
    background: #d4edda;
    border: 2px solid var(--success-color);
    color: #155724;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
    display: none
}

.success-message.active {
    display: block
}

@media(max-width: 768px) {
    .hero h1 {
        font-size:2rem
    }

    .hero-subtitle {
        font-size: 1.1rem
    }

    .hero-cta {
        flex-direction: column
    }

    .hero-cta .btn {
        width: 100%
    }

    .header-cta {
        gap: .5rem
    }

    .btn {
        padding: .625rem 1rem;
        font-size: .9rem
    }

    .section-title {
        font-size: 1.75rem
    }

    .form-row,.features,.testimonials,.stats {
        grid-template-columns: 1fr
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.25rem
    }

    .faq-icon {
        font-size: 1.25rem
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem
    }
}

@media(max-width: 480px) {
    .section {
        padding:3rem 1rem
    }

    .quote-form,.feature-card,.testimonial-card {
        padding: 1.5rem
    }
}

 
    ul.accordion-list {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  /* padding: 20px; */
  margin: 0;
  list-style: none;
  /* background-color: #f9f9fA; */
}
ul.accordion-list li {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background-color: #FFF;
  padding: 20px;
  margin: 0 auto 15px auto;
  border: 1px solid #eee;
  border-radius: 5px;
  cursor: pointer;
}
ul.accordion-list li.active h3:after {
  transform: rotate(45deg);
}
ul.accordion-list li h3 {
  /* font-weight: 700; */
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0 0 0 0;
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.01em;
  cursor: pointer;
}
ul.accordion-list li h3:after {
  content: "+";
  font-family: "material-design-iconic-font";
  position: absolute;
  right: 0;
  top: 0;
  color: #000;
  transition: all 0.3s ease-in-out;
  font-size: 18px;
}
ul.accordion-list li div.answer {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
ul.accordion-list li div.answer p {
  position: relative;
  display: block;
  font-weight: 300;
  padding: 10px 0 0 0;
  cursor: pointer;
  line-height: 150%;
  margin: 0 0 15px 0;
  /* font-size: 14px; */
}
.heroLeft{
  width: 55%;
}
.heroRight{
  width: 35%;
}
@media(min-width:300px) and (max-width:767px){
.header-content {
    padding: 0 1rem;
}
.logo {
    margin-right: 10px;
}
.hero-cta .btn {
    font-size: 1rem;
    padding: .6rem .5rem;
}
.hero {
    padding: 2rem 1rem;
}
.section-title {
        font-size: 1.5rem;
}
.stat-number {
    font-size: 2rem;
}
.stat-card {
    padding: 0rem;
}
.heroLeft{
  width: 100%;
}
.heroRight{
  width: 100%;
}
}
