:root {
    --purple-dark: #3B0D61;
    --purple-mid: #5F2A8B;
    --teal-accent: #7AC2BD;
    --teal-hover: #5A9B96;
    --bg-light: #F7FBFB;
    --white: #ffffff;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #4A4A4A;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    color: var(--purple-dark);
}

.section {
    padding: 60px 10%;
    text-align: center;
}

.hero {
    background-color: var(--purple-mid);
    color: var(--white);
    padding: 100px 10% 140px;
    position: relative;
    clip-path: ellipse(150% 100% at 50% 0%);
    display: flex;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 700px;
    opacity: 0.9;
}

.btn-cta {
    background-color: var(--teal-accent);
    color: var(--white);
    border: none;
    padding: 15px 35px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-cta:hover {
    background-color: var(--teal-hover);
    transform: translateY(-2px);
}

.btn-cta-secondary {
    background: transparent;
    border: 2px solid var(--teal-accent);
    color: var(--teal-accent);
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background: var(--teal-accent);
    color: white;
}

.accident-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.accident-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.icon-placeholder { font-size: 45px; margin-bottom: 15px; }

.plus-text {
    margin-top: 30px;
    color: var(--purple-mid);
    font-weight: 600;
    font-style: italic;
}

.claims-list-wrapper {
    max-width: 550px;
    margin: 0 auto;
    text-align: left;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.claims-list { list-style: none; padding: 0; margin: 0; }
.claims-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}
.claims-list li::before {
    content: "✓";
    color: var(--teal-accent);
    margin-right: 15px;
    font-weight: bold;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.why-card {
    background-color: white;
    padding: 30px 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-shadow {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.why-icon-container {
    width: 90px;
    height: 90px;
    background-color: #EEEFFC;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    border: 3px solid white;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}

.why-icon-container span {
    font-size: 50px;
    line-height: 1;
    display: block;
}

.why-icon {
    width: 45px;
    height: 45px;
}

.svg-purple {
    fill: var(--purple-mid);
}

.why-card h4 {
    color: var(--purple-dark);
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.3;
}

.contact-footer {
    background-color: var(--purple-mid);
    color: white;
    padding: 120px 10% 80px;
    text-align: center;
    position: relative;
    clip-path: ellipse(150% 100% at 50% 100%);
    margin-top: 40px;
}

.contact-footer h2 { color: white; margin-bottom: 10px; }
.btn-group-bottom {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 30px;
}

/* --- SECCIÓN: ¿QUÉ PODÉS RECLAMAR? --- */
.claim-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.claim-card {
    background: white;
    padding: 25px 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 2px solid #EEEFFC; 
    transition: all 0.3s ease;
}

.claim-card h4 {
    color: var(--purple-dark);
    font-weight: 600;
    margin: 0;
}

.claim-card:hover {
    transform: translateY(-5px);
    border-color: var(--teal-accent);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

@media (max-width: 600px) {
    .hero { padding-top: 60px; }
    .btn-group-bottom { width: 100%; }
    .btn-cta, .btn-cta-secondary { width: 100%; }
    .why-grid { grid-template-columns: 1fr; }
}