@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600&display=swap');

/* Global Fonts Override for Home */
body.home-enhanced, 
body.home-enhanced h1, 
body.home-enhanced h2, 
body.home-enhanced h3, 
body.home-enhanced h4, 
body.home-enhanced h5, 
body.home-enhanced p, 
body.home-enhanced a, 
body.home-enhanced span {
    font-family: 'Open Sans', sans-serif !important;
}

body.home-enhanced h1, 
body.home-enhanced h2, 
body.home-enhanced h3 {
    font-family: 'Montserrat', sans-serif !important;
}

/* NEW HERO STYLES */
.gs-hero-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    animation: fadeInUp 0.8s ease-out;
}

.gs-hero-title {
    font-size: 42px !important;
    color: white !important;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6) !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
    font-weight: 800 !important;
}

.gs-hero-subtitle {
    font-size: 20px !important;
    color: #f8f9fa !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5) !important;
    margin-bottom: 40px !important;
    font-weight: 400 !important;
}

.gs-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gs-btn-primary {
    background-color: #e74c3c !important;
    color: white !important;
    padding: 16px 32px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4) !important;
    transition: all 0.3s ease !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gs-btn-primary:hover {
    background-color: #c0392b !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6) !important;
}

.gs-btn-secondary {
    background-color: rgba(240, 230, 245, 0.9) !important; /* Lavanda */
    color: #003e59 !important;
    padding: 16px 32px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.gs-btn-secondary:hover {
    background-color: white !important;
    transform: translateY(-2px);
}

/* TRUST BLOCK */
.gs-trust-section {
    background-color: #ffffff;
    padding: 50px 20px;
    border-top: 5px solid #e74c3c;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.gs-trust-grid {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.gs-trust-items {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.gs-trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fdfafc;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #f0e6f5;
    transition: transform 0.2s;
}

.gs-trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gs-trust-icon {
    font-size: 28px;
}

.gs-trust-text {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.gs-trust-award {
    flex: 0 0 250px;
    text-align: center;
}

.gs-trust-award img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* LOGOS SECTION */
.gs-logos-section {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

.gs-logos-title {
    font-size: 24px;
    color: #003e59;
    margin-bottom: 30px;
    font-weight: 700;
}

.gs-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.gs-logos-grid img {
    height: 60px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.gs-logos-grid img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* STRATEGIC COVERAGE GRID */
.gs-coverage-section {
    background: linear-gradient(180deg, #f3ebf7 0%, #ffffff 100%);
    padding: 56px 20px 68px;
}

.gs-coverage-head {
    max-width: 920px;
    margin: 0 auto 28px;
    text-align: center;
}

.gs-coverage-head h2 {
    font-family: 'Montserrat', sans-serif !important;
    color: #2b2430 !important;
    font-size: 36px !important;
    line-height: 1.15 !important;
    margin: 6px 0 12px !important;
}

.gs-coverage-head p {
    color: #4f4656 !important;
    font-size: 17px !important;
    line-height: 1.6 !important;
    margin: 0 auto !important;
    max-width: 760px;
}

.gs-coverage-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gs-coverage-card {
    display: flex !important;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #eaddee;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none !important;
    color: inherit !important;
    box-shadow: 0 16px 36px rgba(57, 35, 70, 0.08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    min-height: 100%;
}

.gs-coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 44px rgba(57, 35, 70, 0.14);
    border-color: rgba(231, 76, 60, 0.35);
}

.gs-coverage-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
    background: #fbf3ff;
}

.gs-coverage-text-visual {
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    background: linear-gradient(135deg, #fbf3ff 0%, #ffffff 100%);
    border-bottom: 1px solid #eaddee;
}

.gs-coverage-text-visual.featured {
    background: linear-gradient(135deg, #fff4f0 0%, #fbf3ff 100%);
}

.gs-coverage-text-visual.technical {
    background: linear-gradient(135deg, #2b2430 0%, #7d344c 100%);
}

.gs-coverage-text-visual span {
    color: #8b1e3f !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: .09em;
    font-weight: 800 !important;
}

.gs-coverage-text-visual.technical span,
.gs-coverage-text-visual.technical strong {
    color: #ffffff !important;
}

.gs-coverage-text-visual strong {
    color: #2b2430 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 25px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em;
}

.gs-coverage-card-body {
    padding: 16px 16px 18px;
}

.gs-coverage-card-body span {
    color: #e74c3c !important;
    font-size: 11px !important;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 800 !important;
}

.gs-coverage-card-body h3 {
    color: #2b2430 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px !important;
    line-height: 1.16 !important;
    margin: 7px 0 8px !important;
}

.gs-coverage-card-body p {
    color: #4f4656 !important;
    font-size: 13.5px !important;
    line-height: 1.42 !important;
    margin: 0 !important;
}

/* WHATSAPP FLOAT OVERRIDE */
.gs-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.gs-whatsapp-float:hover {
    transform: scale(1.1);
}

/* PLACAS (SERVICES) INTERACTIVITY */
.gs-placa-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    cursor: pointer;
    position: relative;
}

.gs-placa-card:hover {
    transform: translateY(-8px) scale(1.03) !important;
    box-shadow: 0 15px 30px rgba(231, 76, 60, 0.2) !important;
}

.gs-placa-card::after {
    content: 'Click para consultar 💬';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(231, 76, 60, 0.9);
    color: white;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.gs-placa-card:hover::after {
    transform: translateY(0);
    opacity: 1;
}

/* FOOTER ICONS FIX */
#wb_footer_a19dba695e5700c305c5b94a67047c6b svg {
    color: white !important;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.3));
}

/* CONTACT PAGE ENHANCEMENT */
body.contact-enhanced {
    background-color: #f3ebf7 !important;
}

body.contact-enhanced #wb_main_a19dba695e5703ee7cd7b4354529aa24 {
    background: linear-gradient(180deg, #f3ebf7 0%, #fff 100%) !important;
}

body.contact-enhanced h2 {
    letter-spacing: -0.02em !important;
}

.gs-contact-intro {
    background: #ffffff;
    border: 1px solid #eaddee;
    border-top: 5px solid #e74c3c;
    border-radius: 18px;
    padding: 28px 32px;
    margin: 0 auto 24px;
    max-width: 820px;
    box-shadow: 0 18px 45px rgba(57, 35, 70, 0.08);
    text-align: left;
}

.gs-contact-kicker {
    margin: 0 0 8px !important;
    color: #e74c3c !important;
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800 !important;
}

.gs-contact-intro h3 {
    margin: 0 0 10px !important;
    font-size: 28px !important;
    color: #2b2430 !important;
    line-height: 1.2 !important;
    font-family: 'Montserrat', sans-serif !important;
}

.gs-contact-intro p {
    font-size: 16px !important;
    line-height: 1.55 !important;
    color: #4f4656 !important;
    margin-bottom: 18px !important;
}

.gs-contact-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff !important;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none !important;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.25);
    transition: transform .2s ease, box-shadow .2s ease;
}

.gs-contact-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.35);
}

.gs-contact-form {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 32px !important;
    box-shadow: 0 18px 45px rgba(57, 35, 70, 0.08);
    border: 1px solid #eaddee;
}

.gs-contact-form table {
    width: 100% !important;
}

.gs-contact-form th {
    color: #2b2430 !important;
    font-weight: 700 !important;
    padding: 10px 16px 10px 0 !important;
    width: 170px !important;
    vertical-align: top !important;
}

.gs-contact-form td {
    padding: 8px 0 !important;
}

.gs-contact-form .form-control {
    min-height: 44px !important;
    border: 1px solid #d9cadd !important;
    border-radius: 10px !important;
    background: #fff !important;
    padding: 10px 12px !important;
    color: #2b2430 !important;
    box-shadow: none !important;
}

.gs-contact-form .form-control:focus {
    outline: none !important;
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, .12) !important;
}

.gs-contact-form textarea.form-control {
    min-height: 110px !important;
    resize: vertical;
}

.gs-contact-form .form-footer td {
    padding-top: 18px !important;
}

.gs-contact-form button[type="submit"] {
    background: #e74c3c !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 999px !important;
    padding: 13px 28px !important;
    font-weight: 800 !important;
    box-shadow: 0 10px 24px rgba(231, 76, 60, 0.22);
}

.gs-contact-form button[type="submit"]:hover {
    background: #c0392b !important;
}

/* SERVICES PAGE ENHANCEMENT */
body.services-enhanced {
    background: #f3ebf7 !important;
}

body.contratar-enhanced {
    background: #f3ebf7 !important;
}

body.vehicle-assistance-enhanced {
    background: linear-gradient(180deg, #f3ebf7 0%, #ffffff 100%) !important;
}

body.claims-enhanced {
    background: linear-gradient(180deg, #f3ebf7 0%, #ffffff 100%) !important;
}

body.vehicle-assistance-enhanced .gs-vehicle-assistance + .wb_element {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.gs-claims-page {
    max-width: 1120px;
    width: calc(100% - 40px);
    margin: 28px auto 34px;
}

.gs-claims-hero {
    background: #ffffff;
    border: 1px solid #eaddee;
    border-top: 5px solid #e74c3c;
    border-radius: 24px;
    padding: 30px 34px;
    box-shadow: 0 18px 45px rgba(57, 35, 70, 0.08);
    margin-bottom: 18px;
}

.gs-claims-hero h1 {
    font-family: 'Montserrat', sans-serif !important;
    color: #2b2430 !important;
    font-size: 38px !important;
    line-height: 1.12 !important;
    margin: 6px 0 10px !important;
}

.gs-claims-hero p {
    color: #4f4656 !important;
    font-size: 16.5px !important;
    line-height: 1.58 !important;
    max-width: 860px;
    margin: 0 !important;
}

.gs-claims-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.gs-claims-card {
    background: #ffffff;
    border: 1px solid #eaddee;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 16px 38px rgba(57, 35, 70, 0.08);
    display: flex;
    flex-direction: column;
}

.gs-claims-card span {
    color: #8b1e3f !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.gs-claims-card h2 {
    font-family: 'Montserrat', sans-serif !important;
    color: #2b2430 !important;
    font-size: 23px !important;
    line-height: 1.18 !important;
    margin: 10px 0 10px !important;
}

.gs-claims-card p {
    color: #4f4656 !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    margin: 0 0 14px !important;
}

.gs-claims-card ul {
    margin: 0 0 18px !important;
    padding-left: 18px !important;
    color: #4f4656 !important;
    font-size: 14.5px !important;
    line-height: 1.5 !important;
}

.gs-claims-mini-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 16px;
}

.gs-claims-mini-gallery img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    border-radius: 14px;
    border: 1px solid #eaddee;
    background: #fbf3ff;
}

.gs-claims-actions {
    margin-top: auto;
    display: grid;
    gap: 10px;
}

.gs-claims-card a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 44px;
    border-radius: 999px;
    background: #e74c3c;
    color: #ffffff !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    padding: 12px 16px;
    box-shadow: 0 12px 24px rgba(231, 76, 60, 0.18);
}

.gs-claims-card > a {
    margin-top: auto;
}

.gs-claims-card a.gs-claims-secondary {
    background: #ffffff;
    color: #e74c3c !important;
    border: 1px solid #e74c3c;
    box-shadow: none;
}

.gs-claims-note {
    margin-top: 16px;
    border-radius: 18px;
    background: #fbf3ff;
    border: 1px solid #eaddee;
    color: #4f4656 !important;
    font-size: 14.5px !important;
    line-height: 1.5 !important;
    padding: 16px 18px;
}

.gs-claims-note strong {
    color: #8b1e3f !important;
}

.gs-vehicle-assistance {
    max-width: 1120px;
    width: calc(100% - 40px);
    margin: 24px auto 8px;
    display: block;
}

.gs-vehicle-hero {
    background: #ffffff;
    border: 1px solid #eaddee;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(57, 35, 70, 0.08);
}

.gs-vehicle-hero {
    padding: 28px 34px;
    border-top: 5px solid #e74c3c;
}

.gs-vehicle-hero h1 {
    font-family: 'Montserrat', sans-serif !important;
    color: #2b2430 !important;
    font-size: 38px !important;
    line-height: 1.12 !important;
    margin: 0 0 10px !important;
}

.gs-vehicle-hero p {
    color: #4f4656 !important;
    font-size: 16.5px !important;
    line-height: 1.58 !important;
    margin: 0 0 14px !important;
}

.gs-vehicle-pills {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 !important;
    margin: 0 0 16px !important;
}

.gs-vehicle-pills li {
    border: 1px solid #eaddee;
    border-radius: 999px;
    background: #fbf3ff;
    color: #8b1e3f !important;
    font-size: 13.5px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    padding: 9px 12px;
}

.gs-vehicle-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    padding: 13px 20px;
    background: #e74c3c;
    color: #ffffff !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    box-shadow: 0 12px 24px rgba(231, 76, 60, 0.2);
}

.gs-digital-products {
    max-width: 1120px;
    margin: 0 auto;
    padding: 36px 20px 58px;
}

.gs-digital-hero {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #eaddee;
    padding: 32px 36px;
    box-shadow: 0 18px 45px rgba(57, 35, 70, 0.08);
    margin-bottom: 24px;
}

.gs-digital-hero h1 {
    font-family: 'Montserrat', sans-serif !important;
    color: #2b2430 !important;
    font-size: 36px !important;
    line-height: 1.14 !important;
    margin: 0 0 12px !important;
}

.gs-digital-hero p {
    color: #4f4656 !important;
    font-size: 17px !important;
    line-height: 1.58 !important;
    max-width: 760px;
    margin: 0 !important;
}

.gs-digital-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.gs-digital-card {
    background: #ffffff;
    border: 1px solid #eaddee;
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 16px 38px rgba(57, 35, 70, 0.08);
}

.gs-digital-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    border: 1px solid #eaddee;
    margin-bottom: 18px;
}

.gs-digital-placeholder {
    min-height: 365px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 18px;
    border: 1px solid #eaddee;
    background: linear-gradient(135deg, #fbf3ff 0%, #ffffff 100%);
    margin-bottom: 18px;
    padding: 28px;
}

.gs-digital-placeholder p {
    font-family: 'Montserrat', sans-serif !important;
    color: #8b1e3f !important;
    font-size: 32px !important;
    line-height: 1.08 !important;
    font-weight: 800 !important;
    margin: 0 0 10px !important;
}

.gs-digital-placeholder span {
    color: #4f4656 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
}

.gs-digital-card h2,
.gs-digital-next h2 {
    font-family: 'Montserrat', sans-serif !important;
    color: #2b2430 !important;
    font-size: 24px !important;
    line-height: 1.18 !important;
    margin: 0 0 10px !important;
}

.gs-digital-card p,
.gs-digital-next p {
    color: #4f4656 !important;
    font-size: 15.5px !important;
    line-height: 1.55 !important;
    margin: 0 0 16px !important;
}

.gs-digital-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gs-digital-actions a,
.gs-digital-next a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    padding: 12px 18px;
    background: #e74c3c;
    color: #ffffff !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    box-shadow: 0 10px 22px rgba(231, 76, 60, 0.18);
    transition: transform .2s ease, background .2s ease;
}

.gs-digital-actions a:hover,
.gs-digital-next a:hover {
    transform: translateY(-2px);
    background: #c0392b;
}

.gs-quick-products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.gs-quick-products a {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 14px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #eaddee;
    color: #2b2430 !important;
    text-decoration: none !important;
    box-shadow: 0 14px 34px rgba(57, 35, 70, 0.07);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.gs-quick-products a:hover {
    transform: translateY(-3px);
    border-color: #e74c3c;
    box-shadow: 0 18px 42px rgba(57, 35, 70, 0.11);
}

.gs-quick-products img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
    border-radius: 18px;
    border: 1px solid #eaddee;
    background: #fbf3ff;
    margin-bottom: 16px;
}

.gs-quick-products div {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 0 4px 4px;
}

.gs-quick-products span {
    color: #8b1e3f !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.gs-quick-products strong {
    color: #2b2430 !important;
    font-size: 18px !important;
    line-height: 1.25 !important;
}

.gs-quick-products small {
    color: #6d6075 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

.gs-digital-actions .gs-digital-secondary {
    background: #ffffff;
    color: #e74c3c !important;
    border: 1px solid #e74c3c;
    box-shadow: none;
}

.gs-digital-next {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    background: #fbf3ff;
    border: 1px solid #eaddee;
    border-radius: 24px;
    padding: 26px 28px;
}

.gs-services-page {
    background: linear-gradient(180deg, #f3ebf7 0%, #ffffff 100%);
    padding: 56px 20px 70px;
}

.gs-services-hero {
    max-width: 980px;
    margin: 0 auto 34px;
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid #eaddee;
    border-top: 5px solid #e74c3c;
    padding: 34px 38px;
    box-shadow: 0 18px 45px rgba(57, 35, 70, 0.08);
}

.gs-services-kicker,
.gs-service-label {
    color: #e74c3c !important;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px !important;
    font-weight: 800 !important;
    margin: 0 0 8px !important;
}

.gs-services-hero h1 {
    font-family: 'Montserrat', sans-serif !important;
    color: #2b2430 !important;
    font-size: 38px !important;
    line-height: 1.15 !important;
    margin: 0 0 14px !important;
}

.gs-services-hero p {
    color: #4f4656 !important;
    font-size: 17px !important;
    line-height: 1.6 !important;
    max-width: 760px;
}

.gs-services-main-cta,
.gs-service-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    border-radius: 999px;
    font-weight: 800 !important;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.gs-services-main-cta {
    margin-top: 8px;
    background: #e74c3c;
    color: #fff !important;
    padding: 14px 26px;
    box-shadow: 0 10px 24px rgba(231, 76, 60, 0.22);
}

.gs-services-main-cta:hover,
.gs-service-card a:hover {
    transform: translateY(-2px);
}

.gs-services-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.gs-vida-retiro-panel {
    max-width: 1180px;
    margin: 0 auto 28px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
    gap: 26px;
    align-items: stretch;
    background: #ffffff;
    border: 1px solid #eaddee;
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 18px 45px rgba(57, 35, 70, 0.09);
}

.gs-vida-copy h2 {
    font-family: 'Montserrat', sans-serif !important;
    color: #2b2430 !important;
    font-size: 32px !important;
    line-height: 1.12 !important;
    margin: 0 0 14px !important;
}

.gs-vida-copy p {
    color: #4f4656 !important;
    font-size: 16px !important;
    line-height: 1.62 !important;
    margin: 0 0 14px !important;
}

.gs-vida-copy strong {
    color: #2b2430 !important;
}

.gs-vida-lead {
    font-size: 17px !important;
    color: #382f3f !important;
}

.gs-vida-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 18px;
}

.gs-vida-points span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f3ebf7;
    color: #3a273f !important;
    border: 1px solid #eaddee;
    font-size: 13px !important;
    font-weight: 800 !important;
}

.gs-vida-copy blockquote {
    margin: 18px 0 18px;
    padding: 18px 20px;
    border-radius: 18px;
    background: #fbf3ff;
    color: #2b2430 !important;
    font-size: 19px !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
}

.gs-vida-disclaimer {
    margin-top: 14px !important;
    color: #776a80 !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
    max-width: 780px;
}

.gs-vida-visuals {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-content: center;
}

.gs-vida-visuals img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #fbf7fc;
    border-radius: 18px;
    border: 1px solid #eaddee;
    box-shadow: 0 14px 32px rgba(57, 35, 70, 0.10);
}

.gs-vida-visuals img:first-child {
    grid-row: span 2;
    align-self: center;
}

.gs-service-card {
    background: #ffffff;
    border: 1px solid #eaddee;
    border-radius: 20px;
    padding: 26px 28px;
    box-shadow: 0 14px 34px rgba(57, 35, 70, 0.07);
    position: relative;
    overflow: hidden;
}

.gs-service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #e74c3c;
    opacity: .75;
}

.gs-service-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #ffffff 0%, #fbf3ff 100%);
}

.gs-service-secondary {
    background: #fbf7fc;
}

.gs-service-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    background: #f3ebf7;
    font-size: 24px;
    margin-bottom: 12px;
}

.gs-exercitia-head {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.gs-exercitia-head img {
    width: 112px;
    height: auto;
    display: block;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #eaddee;
    padding: 7px;
    box-shadow: 0 10px 22px rgba(57, 35, 70, 0.08);
}

.gs-service-card h2 {
    font-family: 'Montserrat', sans-serif !important;
    color: #2b2430 !important;
    font-size: 24px !important;
    line-height: 1.2 !important;
    margin: 0 0 10px !important;
}

.gs-service-card p {
    color: #4f4656 !important;
    font-size: 15.5px !important;
    line-height: 1.55 !important;
    margin-bottom: 14px !important;
}

.gs-service-card ul {
    margin: 0 0 20px 18px !important;
    padding: 0 !important;
}

.gs-service-card li {
    color: #2b2430 !important;
    font-size: 14.5px !important;
    line-height: 1.45 !important;
    margin-bottom: 6px !important;
}

.gs-service-card a {
    background: #e74c3c;
    color: #ffffff !important;
    padding: 12px 20px;
    box-shadow: 0 10px 22px rgba(231, 76, 60, 0.18);
}

.gs-service-card a:hover {
    background: #c0392b;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    #wb_header_a19dba695e5700c305c5b94a67047c6b {
        height: 92px !important;
        min-height: 92px !important;
        max-height: 92px !important;
        background: rgba(255, 255, 255, 0.96) !important;
        box-shadow: 0 10px 26px rgba(55, 35, 65, 0.08) !important;
        backdrop-filter: blur(10px);
        z-index: 999 !important;
    }
    #wb_header_a19dba695e5700c305c5b94a67047c6b .wb_content,
    #a19dba69191f03c0fd3d3d43b0956e82,
    #a19dba69191f03c0fd3d3d43b0956e82 > .wb_content,
    #a19dba69191f04cd0fbfd316a34cfa57,
    #a19dba69191f04cd0fbfd316a34cfa57 > .wb_content {
        height: 92px !important;
        min-height: 92px !important;
        max-height: 92px !important;
        position: relative !important;
        display: block !important;
        overflow: visible !important;
    }
    #a19dba69191f054e43226eb5bf2a32fe {
        position: absolute !important;
        left: 16px !important;
        top: 10px !important;
        width: 72px !important;
        height: 72px !important;
        min-width: 72px !important;
        min-height: 72px !important;
    }
    #a19dba69191f054e43226eb5bf2a32fe img {
        width: 72px !important;
        height: 72px !important;
        max-width: 72px !important;
        max-height: 72px !important;
        object-fit: contain !important;
    }
    #a19dba69191f0616fc6001ab3e39ccb9 {
        position: absolute !important;
        right: 18px !important;
        top: 23px !important;
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        min-height: 46px !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        z-index: 1001 !important;
    }
    #a19dba69191f0616fc6001ab3e39ccb9 .btn-collapser {
        width: 46px !important;
        height: 46px !important;
        padding: 0 !important;
        border: 1px solid rgba(123, 26, 40, 0.18) !important;
        border-radius: 14px !important;
        background: #ffffff !important;
        box-shadow: 0 10px 24px rgba(55, 35, 65, 0.12) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5px !important;
    }
    #a19dba69191f0616fc6001ab3e39ccb9 .icon-bar {
        width: 21px !important;
        height: 2px !important;
        margin: 0 !important;
        border-radius: 99px !important;
        background: #7B1A28 !important;
        display: block !important;
    }
    #wb_main_a19dba695e5700c305c5b94a67047c6b {
        margin-top: 0 !important;
    }
    #a19dba69191f082fd0d7b739b5267e69 {
        margin-top: 0 !important;
    }
    .gs-hero-title { font-size: 32px !important; }
    .gs-hero-subtitle { font-size: 16px !important; }
    .gs-hero-buttons { flex-direction: column; width: 100%; }
    .gs-btn-primary, .gs-btn-secondary { width: 100%; text-align: center; justify-content: center; }
    .gs-trust-grid { flex-direction: column; }
    .gs-trust-items { grid-template-columns: 1fr; width: 100%; }
    .gs-whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 28px; }
    .gs-contact-intro, .gs-contact-form { padding: 22px 18px !important; margin-left: 12px; margin-right: 12px; }
    .gs-contact-intro h3 { font-size: 23px !important; }
    .gs-contact-form th, .gs-contact-form td { display: block; width: 100% !important; padding: 6px 0 !important; text-align: left !important; }
    .gs-contact-form .form-footer td { text-align: left !important; }
    .gs-coverage-section { padding: 38px 14px 48px; }
    .gs-coverage-head h2 { font-size: 28px !important; }
    .gs-coverage-grid { grid-template-columns: 1fr; gap: 14px; }
    .gs-coverage-card { display: block !important; min-height: 112px; }
    .gs-coverage-card img { aspect-ratio: 1 / 1; height: auto; min-height: 0; }
    .gs-coverage-text-visual { aspect-ratio: auto; height: auto; min-height: 150px; }
    .gs-coverage-card:has(> img) img { aspect-ratio: 1 / 1; height: auto; min-height: 0; object-fit: contain; }
    .gs-coverage-text-visual { padding: 18px; }
    .gs-coverage-text-visual strong { font-size: 22px !important; }
    .gs-coverage-card-body { padding: 16px 18px 18px; }
    .gs-digital-products { padding: 28px 14px 44px; }
    .gs-digital-hero { padding: 24px 20px; }
    .gs-digital-hero h1 { font-size: 28px !important; }
    .gs-digital-grid { grid-template-columns: 1fr; gap: 16px; }
    .gs-digital-next { flex-direction: column; align-items: flex-start; padding: 22px 18px; }
    .gs-quick-products { grid-template-columns: 1fr; gap: 12px; }
    .gs-quick-products a { padding: 12px; }
    .gs-vehicle-assistance { width: calc(100% - 28px); margin: 10px auto 0; }
    .gs-vehicle-hero { padding: 16px 14px; }
    .gs-vehicle-hero h1 { font-size: 30px !important; }
    .gs-vehicle-hero p { margin-bottom: 10px !important; }
    .gs-vehicle-pills { gap: 6px; margin-bottom: 12px !important; }
    .gs-vehicle-pills li { font-size: 12.5px !important; padding: 8px 10px; }
    .gs-claims-page { width: calc(100% - 28px); margin: 18px auto 28px; }
    .gs-claims-hero { padding: 22px 18px; }
    .gs-claims-hero h1 { font-size: 30px !important; }
    .gs-claims-grid { grid-template-columns: 1fr; gap: 12px; }
    .gs-claims-card { padding: 20px 18px; }
    .gs-services-page { padding: 34px 14px 48px; }
    .gs-services-hero { padding: 26px 20px; }
    .gs-services-hero h1 { font-size: 28px !important; }
    .gs-vida-retiro-panel { grid-template-columns: 1fr; padding: 22px 18px; }
    .gs-vida-copy h2 { font-size: 26px !important; }
    .gs-vida-visuals { grid-template-columns: 1fr; }
    .gs-vida-visuals img { min-height: auto; }
    .gs-vida-visuals img:nth-child(n+2) { display: none; }
    .gs-services-grid { grid-template-columns: 1fr; gap: 16px; }
    .gs-service-featured { grid-column: span 1; }
    .gs-service-card { padding: 23px 20px; }
}
