* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #000;
    background: #fff;
}

/* Header */
header {
    padding: 25px 60px;
    border-bottom: 2px solid #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    color: #000;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff0000;
}

/* Hero Layout Grid */
.hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    min-height: 600px;
}

.hero-main {
    padding: 80px 60px;
    background: #fff;
}

.hero-main .subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-main h1 {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 40px;
    font-family: Georgia, serif;
}

.hero-main .highlight {
    background: #ff0000;
    color: #fff;
    padding: 2px 8px;
}

.hero-main p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.hero-sidebar {
    background: #ff0000;
    color: #fff;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.sidebar-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-item p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.95;
}

/* About Section */
.about {
    padding: 100px 60px;
    background: #fafafa;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ff0000;
    margin-bottom: 50px;
    font-weight: 600;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.about-text h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 30px;
    font-family: Georgia, serif;
    line-height: 1.2;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.about-photo {
    background: #000;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    position: relative;
    letter-spacing: 1px;
}

.about-photo::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid #ff0000;
}

/* Formación Section */
.formacion {
    padding: 100px 60px;
    background: #fff;
}

.formacion-container {
    max-width: 1400px;
    margin: 0 auto;
}

.formacion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 50px;
}

.formacion-block h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.formacion-block ul {
    list-style: none;
}

.formacion-block li {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.formacion-block li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #ff0000;
}

/* Expertise Section */
.expertise {
    padding: 100px 60px;
    background: #000;
    color: #fff;
}

.expertise-container {
    max-width: 1400px;
    margin: 0 auto;
}

.expertise-header {
    text-align: center;
    margin-bottom: 60px;
}

.expertise-header .section-title {
    color: #ff0000;
}

.expertise-header p {
    font-size: 18px;
    line-height: 1.7;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    font-family: Georgia, serif;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.expertise-card {
    background: #1a1a1a;
    padding: 40px;
    border-left: 4px solid #ff0000;
    transition: all 0.3s;
}

.expertise-card:hover {
    background: #222;
}

.expertise-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.expertise-card p {
    font-size: 15px;
    color: #bbb;
    line-height: 1.7;
}

/* Bomberos Section */
.bomberos {
    padding: 100px 60px;
    background: #fafafa;
}

.bomberos-container {
    max-width: 1400px;
    margin: 0 auto;
}

.bomberos-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-top: 50px;
    align-items: center;
}

.bomberos-photo {
    background: #000;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    position: relative;
    letter-spacing: 1px;
}

.bomberos-photo::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: #ff0000;
}

.bomberos-content h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
    font-family: Georgia, serif;
    line-height: 1.2;
}

.bomberos-content h2 span {
    color: #ff0000;
}

.bomberos-content .intro {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.bomberos-highlights {
    list-style: none;
    display: grid;
    gap: 18px;
}

.bomberos-highlights li {
    font-size: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    color: #333;
}

.bomberos-highlights li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #ff0000;
    font-size: 18px;
}

/* Blog CTA Section */
.blog-cta {
    padding: 0;
    background: #ff0000;
    color: #fff;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    min-height: 500px;
}

.blog-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-content h2 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 30px;
    font-family: Georgia, serif;
    line-height: 1.1;
}

.blog-content p {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.95;
}

.blog-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.blog-topics span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid #fff;
    padding: 8px 16px;
    font-weight: 500;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #ff0000;
    padding: 18px 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 3px solid #fff;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    align-self: flex-start;
}

.cta-button:hover {
    background: transparent;
    color: #fff;
}

.blog-sidebar {
    background: #e60000;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-stat {
    margin-bottom: 50px;
}

.blog-stat:last-child {
    margin-bottom: 0;
}

.blog-stat h3 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1;
}

.blog-stat p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 100px 60px;
    background: #fff;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 50px;
}

.contact-info h3 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff0000;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
}

.contact-item a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #ff0000;
}

.contact-image {
    background: #f5f5f5;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999;
    position: relative;
    letter-spacing: 1px;
}

.contact-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: #ff0000;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 40px 60px;
    text-align: center;
}

footer p {
    font-size: 13px;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 968px) {
    header {
        padding: 20px 30px;
        flex-direction: column;
        gap: 20px;
    }

    .logo {
        font-size: 18px;
        letter-spacing: 4px;
    }

    nav {
        gap: 20px;
    }

    nav a {
        font-size: 11px;
    }

    .hero,
    .about-content,
    .formacion-grid,
    .expertise-grid,
    .bomberos-layout,
    .blog-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-main,
    .hero-sidebar,
    .about,
    .formacion,
    .expertise,
    .bomberos,
    .blog-content,
    .blog-sidebar,
    .contact {
        padding: 60px 30px;
    }

    .hero-main h1,
    .about-text h2,
    .bomberos-content h2,
    .blog-content h2 {
        font-size: 36px;
    }

    .sidebar-item h3 {
        font-size: 20px;
    }
}
