:root {
    --primary: #1f5f3a;
    --primary-dark: #15452a;
    --accent: #f2b705;
    --accent-dark: #d89f04;
    --light: #f8faf8;
    --text-dark: #0f2d1c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--light);
    color: var(--text-dark);
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
}

.hero h1{
    font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.servicesHeader h2,
.sectoresHeader h2,
.diferencialesHeader h2{
    font-size: clamp(1.6rem, 3vw, 2.8rem);
}

.contentDOFA h2{
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}


/* NAVBAR */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow:  0px 0px 90px rgba(0, 0, 0, 0.274);
}

.logo {
    display: flex;             
    align-items: center;        
    gap: 10px;                  
    color: white;
    font-weight: 900;
    font-size: 1.2rem;
    transition: 0.3s ease;
}

.logo img {
    width: 60px;
}

header.scrolled nav a {
    color: #15452a;
}

header.scrolled .logo {
    color: #15452a;
}

nav a {
    color: white;
    margin-left: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: var(--accent);
}

.btn-nav {
    background: var(--accent);
    padding: 8px 18px;
    border-radius: 6px;
    color: black !important;
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--accent-dark);
}

/* HERO */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(16, 64, 40, 0.685), rgba(16, 64, 40, 0.712)),
        url('img/image.jpg') center/ cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 8%;
    color: white;
}

.hero-content {
    max-width: 700px;
}

.badge {
    background: rgba(242, 183, 5, 0.2);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: var(--accent);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    
}

.btn-group span{
    font-size: 20px;
    font-weight: 900;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.btn-primary {
    background: var(--accent);
    padding: 14px 28px;
    border-radius: 8px;
    color: black;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: var(--accent-dark);
}

.btn-outline {
    border: 2px solid white;
    padding: 12px 26px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-dark);
}

/* ===== SECTION PRINCIPAL ===== */
.features{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:80px 20px;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:60px;
    align-items:flex-start;
}
.stats {
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: clamp(10px, 3vw, 40px);
    margin-top: 0;
    flex-wrap: nowrap;
}


.stat-box {
    background: #dfe8e3;
    width: clamp(80px, 16vw, 130px);
    height: clamp(70px, 12vw, 100px);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 20px;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    padding: 4px 6px;
    text-align: center;
}

.stat-box:hover {
    transform: translateY(-3px);
}

/* Número */
.stat-box h2 {
    color: #1f5d3a;
    font-size: clamp(13px, 2.5vw, 22px);
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

/* Texto */
.stat-box p {
    color: #4f6f5e;
    font-size: clamp(10px, 1.8vw, 12px);
    margin: 2px 0 0 0;
}

/* ===== COLUMNA IZQUIERDA ===== */
.contentDOFA h3{
    color:#c08a00;
    text-transform:uppercase;
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:15px;
}

.contentDOFA h2{
    font-size:38px;
    line-height:1.2;
    font-weight:700;
    margin-bottom:25px;
}

.contentDOFA h2 span{
    color:#1e6b3a;
}

.contentDOFA p{
    font-size:16px;
    line-height:1.7;
    color:#555;
    margin-bottom:15px;
}

/* ===== COLUMNA DERECHA ===== */
.contentTargetDOFA{
    margin-top: 20px;
    display:flex;
    flex-direction:column;
    gap:25px;
}

@media(max-width:995px){
    .contentTargetDOFA{
        display: none;
    }
}

/* ===== TARJETAS ===== */
.targetDOFA{
    background:#ffffff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
    transition:0.3s ease;
}

.targetDOFA:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 25px rgba(0,0,0,0.08);
}

.targetDOFA img{
    width:40px;
    margin-bottom:15px;
}

.targetDOFA h2{
    font-size:20px;
    margin-bottom:10px;
    color:#1e6b3a;
}

.targetDOFA p{
    font-size:15px;
    line-height:1.6;
    color:#555;
}

/* ===== TARJETA VALORES (VERDE) ===== */
.targetDOFAv{
    background:#1e6b3a;
    padding:30px;
    border-radius:15px;
    color:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.targetDOFAv img{
    width:40px;
    margin-bottom:15px;
}

.targetDOFAv h2{
    font-size:20px;
    margin-bottom:10px;
    color:#fff;
}

.targetDOFAv p{
    font-size:15px;
    line-height:1.6;
    color:#e6f2ea;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 992px){
    .features{
        grid-template-columns: 1fr;
        gap:40px;
    }

    .contentDOFA h2{
        font-size:30px;
    }
}

@media(max-width: 576px){
    .features{
        padding:60px 15px;
    }

    .contentDOFA h2{
        font-size:26px;
    }

    .targetDOFA,
    .targetDOFAv{
        padding:20px;
    }
}

/* ===== SECCIÓN ===== */
.services{
    background:#f4f6f4;
    padding:100px 20px;
    text-align:center;
}

/* ===== HEADER ===== */
.servicesHeader h3{
    color:#c08a00;
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:15px;
}

.servicesHeader h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
    color:#1a1a1a;
}

.servicesHeader p{
    color:#666;
    max-width:700px;
    margin:0 auto 60px auto;
    font-size:16px;
}

/* ===== GRID ===== */
.servicesGrid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:30px;
}

/* ===== TARJETAS ===== */
.targetServices{
    background:#ffffff;
    padding:35px;
    border-radius:18px;
    text-align:left;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    transition:0.3s ease;
}

.targetServices:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

/* ===== ICONO ===== */
.iconBox{
    width:55px;
    height:55px;
    background:#e7efe9;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:20px;
    color:#1e6b3a;
}

.iconBox img{
    background-size: cover;
    width: 30px;
}

@media (max-width: 768px) {
    .iconBox {
        margin: 0 auto 20px auto;
    }
}

.iconOrange{
    background:#f5e8cf;
    color:#c08a00;
}

/* ===== TITULO TARJETA ===== */
.targetServices h3{
    font-size:20px;
    margin-bottom:20px;
    color:#1a1a1a;
}

/* ===== LISTA ===== */
.targetServices ul{
    list-style:none;
    padding-left:0;
}

.targetServices ul li{
    position:relative;
    padding-left:18px;
    margin-bottom:10px;
    font-size:15px;
    color:#555;
}

.targetServices ul li::before{
    content:"";
    width:6px;
    height:6px;
    background:#c08a00;
    border-radius:50%;
    position:absolute;
    left:0;
    top:8px;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 992px){
    .servicesGrid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .servicesGrid{
        grid-template-columns: 1fr;
    }

    .servicesHeader h2{
        font-size:28px;
    }

    .targetServices{
        padding:25px;
    }
}

/* ============================= */
/* DIFERENCIALES */
/* ============================= */

.diferenciales{
    background:#1e6b3a;
    padding:100px 20px;
    text-align:center;
    color:#fff;
}

.diferencialesHeader h4{
    font-size:13px;
    letter-spacing:2px;
    color:#c08a00;
    margin-bottom:10px;
}

.diferencialesHeader h2{
    font-size:36px;
    margin-bottom:50px;
}

.diferencialesGrid{
    max-width:1000px;
    margin:auto;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:20px;
}

.diffItem{
    text-align: start;
    background:rgba(255,255,255,0.05);
    padding:18px 20px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,0.15);
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    transition:0.3s ease;
}

.diffItem span{
    background:#2d7f4a;
    width:30px;
    height:30px;
    border-radius:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}


.diffItem:hover{
    background:rgba(255,255,255,0.12);
    transform:translateY(-3px);
}


/* ============================= */
/* SECTORES */
/* ============================= */

.sectores{
    background:#f4f6f4;
    padding:100px 20px;
    text-align:center;
}

.sectoresHeader h4{
    font-size:13px;
    letter-spacing:2px;
    color:#c08a00;
    margin-bottom:10px;
}

.sectoresHeader h2{
    font-size:34px;
    margin-bottom:50px;
    color:#1a1a1a;
}

.sectoresGrid{
    max-width:900px;
    margin:auto;
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:25px;
}

.sectorItem{
    background:#ffffff;
    padding:25px;
    border-radius:14px;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
    transition:0.3s ease;

}

.sectorItem:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.infoItem{
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    text-align: start;
}

.iconInfo{
    min-width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c08a0056;
}

.iconInfo img{
    width: 20px;
}

.infoText h4{
    margin-bottom: 6px;
}

.infoText p{
    margin: 0;
    line-height: 1.5;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width: 992px){

    .diferencialesGrid{
        grid-template-columns: repeat(2, 1fr);
    }

    .sectoresGrid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){

    .diferencialesGrid{
        grid-template-columns: 1fr;
    }

    .sectoresGrid{
        grid-template-columns: 1fr;
    }

    .diferencialesHeader h2,
    .sectoresHeader h2{
        font-size:26px;
    }
}

/* ============================= */
/* GENERALES */
/* ============================= */

.container{
    max-width:1200px;
    margin:auto;
    padding:10px 20px;
}

.sectionTag{
    color:#c08a00;
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:10px;
    text-transform:uppercase;
}

.subtitle{
    max-width:700px;
    margin:0 auto 50px auto;
    color:#666;
}

/* ============================= */
/* TESTIMONIOS */
/* ============================= */

.testimonios{
    background:#f8faf8;
    text-align:center;
}

.testimoniosGrid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:10px;
}

.cardTestimonio{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
    text-align:left;
    transition:0.3s;
}

.cardTestimonio:hover{
    transform:translateY(-5px);
}

.stars{
    color:#f2b705;
    margin-bottom:15px;
}

.cardTestimonio p{
    font-size:15px;
    color:#555;
    margin-bottom:20px;
}

.cardTestimonio h5{
    margin-bottom:5px;
    color:#1e6b3a;
}

/* ============================= */
/* COMPROMISO */
/* ============================= */

.titleCompromiso{
    max-width: 600px;
    margin: 0 auto;
}

.compromiso{
    background: #ffffff;
    text-align: center;
    padding: 100px 8%;
}

.compromisoAV{
    display: grid;
    justify-content: center;
    margin-top: 30px;
    margin: 0 auto;
    padding: 0 50px;
    max-width: 1000px;
}

.compromisoGrid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.compromisoGrid div{
    background: #f5f7f6;
    padding: 35px 25px;
    border-radius: 16px;
    transition: 0.3s ease;
}

.compromisoGrid div:hover{
    transform: translateY(-6px);
}

.compromisoGrid img{
    width: 40px;
    margin-bottom: 15px;
}

.compCard{
    background:#f4f6f4;
    padding:30px;
    border-radius:15px;
    transition:0.3s;
}

.compCard:hover{
    transform:translateY(-5px);
}

.iconComp{
    font-size:30px;
    margin-bottom:15px;
    justify-items: center;
}

/* ============================= */
/* CONTACTO */
/* ============================= */



.formulario{
    max-width: 500px;   /* puedes probar 500px si lo quieres más pequeño */
}

.formulario input,
.formulario select,
.formulario textarea{
    width:100%;
    padding:12px;
    border-radius:8px;
    border:none;
    margin-bottom:15px;
    background-color: #7cac8581;
    border: 1px solid #7b9c81;
    color: #7b9c81;
    outline: none;
}

.formulario input,
.formulario textarea, ::placeholder{
        color: #d7ebdb;
}



.inputRow{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

textarea{
    min-height:120px;
}

.btnContact {
    background: #f2b705;
    border: none;
    padding: 16px 22px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    color: black;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btnContact img {
    width: 20px;
}

.contacto{
    background:#1e6b3a;
    color:white;
    margin-top: 80px;
}

.infoContacto{
    margin-top: 80px;
    margin-left: 50px;
    text-align: start;
    justify-items: start;
}

.contactoGrid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

/* ============================= */
/* CONTACTO PRO FIX */
/* ============================= */

.contacto{
    background:#1e6b3a;
    color:white;
    margin-top:80px;
    padding:100px 8%;
}

.contactoGrid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.infoContacto{
    margin:0;
    text-align:start;
}

.infoItem{
    margin-bottom:25px;
}

.footer{
    background:#15452a;
    color:white;
    padding-top:10px;
}

.footerGrid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer ul li{
    margin-bottom:8px;
}

.copyright{
    text-align:center;
    padding:20px;
    margin-top:40px;
    background:#123822;
    font-size:14px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width:992px){
    .testimoniosGrid{
        grid-template-columns:1fr;
    }

    .compromisoGrid{
        grid-template-columns:1fr 1fr;
    }

    .contactoGrid{
        grid-template-columns:1fr;
    }

    .footerGrid{
        grid-template-columns:1fr;
    }
}

@media(max-width:600px){
    .compromisoGrid{
        grid-template-columns:1fr;
    }

    .inputRow{
        grid-template-columns:1fr;
    }
}

/* WHATSAPP BUTTON */
.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 80px;
    height: 80px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.349);
    transition: 0.3s;
}

.whatsapp:hover {
    transform: scale(1.8);
}

.whatsapp img{
    width: 30px;
}

/* FOOTER */
footer {
    background: var(--primary-dark);
    color: white;
    padding: 40px 8%;
    text-align: center;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    nav {
        display: none;
    }
}

/* ===================================== */
/* RESPONSIVE GLOBAL PRO LEVEL */
/* ===================================== */

/* ======= ULTRA SMALL DEVICES (320px - 480px) ======= */
@media (max-width: 480px) {

    header {
        padding: 15px 5%;
    }

    .hero {
        height: auto;
        padding: 120px 5% 80px 5%;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .features,
    .services,
    .diferenciales,
    .sectores,
    .testimonios,
    .compromiso,
    .contacto {
        padding: 60px 15px;
    }

    .servicesHeader h2,
    .sectoresHeader h2,
    .diferencialesHeader h2 {
        font-size: 24px;
    }

    .servicesGrid,
    .sectoresGrid,
    .diferencialesGrid,
    .testimoniosGrid,
    .compromisoGrid {
        grid-template-columns: 1fr !important;
    }

    .contactoGrid {
        grid-template-columns: 1fr;
    }

    .footerGrid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .whatsapp {
        width: 55px;
        height: 55px;
        font-size: 24px;
        right: 15px;
        bottom: 15px;
    }
}


/* ======= TABLETS (481px - 768px) ======= */
@media (max-width: 768px) {

    .hero {
        height: auto;
        padding: 140px 8% 100px 8%;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .servicesGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sectoresGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diferencialesGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimoniosGrid {
        grid-template-columns: 1fr;
    }

    .compromisoGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contactoGrid {
        grid-template-columns: 1fr;
    }

    .inputRow {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
    }
}


/* ======= LAPTOPS PEQUEÑAS (769px - 1024px) ======= */
@media (max-width: 1024px) {

    .hero h1 {
        font-size: 2.6rem;
    }

    .servicesGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sectoresGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .compromisoGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diferencialesGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ======= PANTALLAS GRANDES (1400px+) ======= */
@media (min-width: 1400px) {

    .container {
        max-width: 1350px;
    }

    .hero h1 {
        font-size: 3.6rem;
    }

    .servicesHeader h2,
    .sectoresHeader h2,
    .diferencialesHeader h2 {
        font-size: 48px;
    }

    .cardTestimonio,
    .targetServices,
    .sectorItem {
        padding: 40px;
    }
}

/* ===================================== */
/* MASTER RESPONSIVE FIX – PRO VERSION  */
/* ===================================== */

/* Evitar desbordamientos horizontales */
html, body {
    overflow-x: hidden;
}

/* Mejor control de imágenes */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ajuste global de contenedores */
section {
    width: 100%;
}

/* ===== NAVBAR MOBILE MEJORADO ===== */
@media (max-width: 768px) {

    header {
        padding: 15px 6%;
    }

    .logo {
        font-size: 1rem;
    }

}

/* ===== HERO ULTRA RESPONSIVE ===== */
@media (max-width: 480px) {

    .stats {
        gap: 15px;
    }

    .stat-box {
        width: clamp(70px, 22vw, 130px);
        height: clamp(70px, 18vw, 100px);
    }

    .stat-box h2 {
        font-size: clamp(12px, 4vw, 20px);
        margin: 0; /* 👈 importante */
    }

}

/* ===== GRID FIX UNIVERSAL ===== */
@media (max-width: 992px) {

    .features,
    .servicesGrid,
    .sectoresGrid,
    .diferencialesGrid,
    .testimoniosGrid,
    .compromisoGrid,
    .contactoGrid,
    .footerGrid {
        gap: 25px;
    }

}

/* ===== ULTRA SMALL DEVICES (320px) ===== */
@media (max-width: 360px) {

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.85rem;
    }

    .btn-primary,
    .btn-outline {
        padding: 12px;
        font-size: 0.9rem;
    }

    .servicesHeader h2,
    .sectoresHeader h2,
    .diferencialesHeader h2 {
        font-size: 20px;
    }

}

/* ===== 4K & PANTALLAS MUY GRANDES ===== */
@media (min-width: 1600px) {

    .container {
        max-width: 1500px;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .servicesGrid {
        grid-template-columns: repeat(4, 1fr);
    }

    .sectoresGrid {
        grid-template-columns: repeat(5, 1fr);
    }

}

/* ===== FORM FIX MOBILE ===== */
@media (max-width: 600px) {

    .formulario {
        max-width: 100%;
    }

    .infoContacto {
        margin-left: 0;
        margin-top: 40px;
        text-align: center;
    }

}

/* ===== BOTÓN WHATSAPP FIX ===== */
@media (max-width: 400px) {

    .whatsapp {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

}

/* ===== SUAVIDAD GLOBAL ===== */
* {
    word-wrap: break-word;
}