/* =========================================================
   ANGLOTRADING
   FOOD SERVICE SOLUTIONS

   styles.css
   V2 - Clean Hero Layout
   ========================================================= */


/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root{
    --navy:#103d78;
    --navy-dark:#082d60;

    --green:#52b52f;
    --green-bright:#59c733;

    --text:#0d315f;
    --body:#35465b;

    --white:#ffffff;

    --border:#d9dee5;
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

html,
body{
    margin:0;
    padding:0;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    color:var(--text);
    background:#fff;
}

img{
    max-width:100%;
}

a{
    text-decoration:none;
}

h1,
h2,
h3,
p{
    margin-top:0;
}


/* =========================================================
   HEADER
   ========================================================= */

.header{
    width:100%;
    height:96px;

    background:#fff;

    position:relative;
    z-index:20;
}

.header__container{
    width:min(1280px, calc(100% - 80px));
    height:96px;

    margin:0 auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.header__logo{
    display:flex;
    align-items:center;

    flex:0 0 auto;
}

.header__logo img{
    display:block;

    width:220px;
    height:auto;
}

.header__menu{
    display:flex;
    align-items:center;

    gap:48px;

    margin:0;
    padding:0;

    list-style:none;
}

.header__link{
    position:relative;

    display:block;

    color:#082b59;

    font-size:14px;
    line-height:1;
    font-weight:800;
}

.header__link.active::after{
    content:"";

    position:absolute;

    left:0;
    right:0;
    bottom:-29px;

    height:3px;

    background:var(--green);
}

.header__actions{
    flex:0 0 auto;
}

.header__quote{
    min-width:180px;
    height:54px;

    padding:0 25px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--green);
    color:#fff;

    border-radius:5px;

    font-size:13px;
    font-weight:800;
}


/* =========================================================
   HERO
   ========================================================= */

.hero{
    width:100%;

    /*
       The content contains:
       eyebrow
       title
       description
       benefits title
       four benefits
       two buttons

       620px gives enough vertical space while keeping
       the Hero visually compact.
    */
    height:680px;
    min-height:680px;

    position:relative;

    overflow:hidden;

    color:#fff;

    background-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,.82) 0%,
            rgba(0,0,0,.66) 27%,
            rgba(0,0,0,.30) 60%,
            rgba(0,0,0,.08) 100%
        ),
        url("../images/hero/hamburguesa.jpg");

    background-repeat:no-repeat;

    background-size:cover;

    background-position:center center;

    margin:0;
    padding:0;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero__content{
    width:720px;

    margin-left:max(48px, calc((100% - 1508px) / 2));

    padding-top:48px;

    color:#fff;
}


/* =========================================================
   HERO EYEBROW
   ========================================================= */

.hero__eyebrow{
    display:inline-flex;
    align-items:center;

    height:38px;

    padding:0 18px;

    border-left:3px solid var(--green-bright);

    background:rgba(28,28,28,.66);

    color:#fff;

    font-size:12px;
    line-height:1;

    font-weight:800;

    letter-spacing:.45px;
}


/* =========================================================
   HERO TITLE
   ========================================================= */

.hero h1{
    margin:22px 0 17px;

    color:#fff;

    font-size:55px;

    line-height:1.02;

    letter-spacing:-1.8px;

    font-weight:800;
}


/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.hero__lead{
    width:650px;
    max-width:100%;

    margin:0 0 20px;

    color:#fff;

    font-size:16px;

    line-height:1.48;

    font-weight:400;
}


/* =========================================================
   HERO FAST TITLE
   ========================================================= */

.hero__fast-title{
    margin:0 0 12px;

    color:var(--green-bright);

    font-size:16px;

    line-height:1.2;

    font-weight:800;

    letter-spacing:.05px;
}


/* =========================================================
   HERO BENEFITS
   ========================================================= */

.hero__benefits{
    width:720px;

    display:grid;

    grid-template-columns:repeat(4, 1fr);

    margin:0 0 22px;

    padding:0;
}

.hero__benefit{
    min-height:154px;

    padding:0 20px;

    border-right:1px solid rgba(255,255,255,.68);
}

.hero__benefit:first-child{
    padding-left:0;
}

.hero__benefit:last-child{
    padding-right:0;

    border-right:0;
}


/* =========================================================
   HERO BENEFIT ICON
   ========================================================= */

.hero__icon{
    width:50px;
    height:50px;

    margin:0 0 10px;

    display:flex;
    align-items:center;
    justify-content:flex-start;

    position:relative;

    color:var(--green-bright);

    font-size:43px;
    line-height:1;
}

.hero__icon i{
    display:block;

    color:var(--green-bright);

    font-size:43px;
    line-height:1;
}


/* =========================================================
   PRICE ICON
   ========================================================= */

.hero__icon--price span{
    position:absolute;

    left:17px;
    top:13px;

    color:var(--green-bright);

    font-family:Arial, sans-serif;
    font-size:15px;
    font-weight:700;

    line-height:1;
}



/* =========================================================
   HERO BENEFIT TITLE
   ========================================================= */

.hero__benefit h3{
    margin:0 0 7px;

    color:#fff;

    font-size:16px;

    line-height:1.08;

    font-weight:800;
}


/* =========================================================
   HERO BENEFIT DESCRIPTION
   ========================================================= */

.hero__benefit p{
    max-width:145px;

    margin:0;

    color:#fff;

    font-size:12px;

    line-height:1.42;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.hero__actions{
    display:flex;
    align-items:center;

    gap:20px;

    margin:0;
    padding:0;
}

.btn{
    height:46px;

    padding:0 30px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:12px;

    border-radius:4px;

    font-size:12px;

    line-height:1;

    font-weight:800;
}

.btn--green{
    min-width:276px;

    background:var(--green);

    border:1px solid var(--green);

    color:#fff;
}

.btn--outline{
    min-width:220px;

    background:rgba(0,0,0,.08);

    border:1px solid #fff;

    color:#fff;
}

.hero__actions .btn--green span{
    font-size:20px;
    line-height:0;
}


/* =========================================================
   FEATURE BAR
   IMPORTANT:
   No margin.
   No border.
   No gap.
   It must touch the Hero directly.
   ========================================================= */

.feature-bar{
    width:100%;

    height:124px;
    min-height:124px;

    margin:0;
    padding:0;

    border:0;

    background:var(--navy);

    color:#fff;

    display:block;
}

.feature-bar__inner{
    width:100%;
    height:124px;

    margin:0;
    padding:0;

    display:grid;

    grid-template-columns:repeat(4, 1fr);
}

.feature{
    width:100%;
    height:124px;
    min-height:124px;

    margin:0;
    padding:18px 58px;

    display:flex;
    align-items:center;

    gap:17px;

    border:0;
    border-right:1px solid rgba(255,255,255,.17);
}

.feature:last-child{
    border-right:0;
}


/* =========================================================
   FEATURE ICON
   ========================================================= */

.feature__icon{
    width:74px;
    height:74px;

    flex:0 0 74px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-right:22px;

    border:1.5px solid var(--green);

    border-radius:50%;

    color:var(--green);

    font-size:27px;
}

.feature__icon i{
    display:block;
    line-height:1;
}


/* =========================================================
   FEATURE TEXT
   ========================================================= */

.feature h3{
    margin:0 0 5px;

    color:#fff;

    font-size:14px;

    line-height:1.1;

    font-weight:800;

white-space:nowrap;
}

.feature p{
    margin:0;

    color:#dce8f6;

    font-size:12px;

    line-height:1.2;
}


/* =========================================================
   LOWER CONTENT
   ========================================================= */

.lower{
    width:100%;
    margin:0;
    padding:0;

    background:#fff;
}


/* =========================================================
   SECTION LABEL
   ========================================================= */

.section-label{
    display:block;

    margin:0 0 12px;

    color:var(--green);

    font-size:12px;
    line-height:1;

    font-weight:800;

    letter-spacing:.5px;
}


/* =========================================================
   ABOUT SECTION
   ========================================================= */

/* =========================================================
   ABOUT SECTION
   ========================================================= */

.about-section{
    width:min(1280px, calc(100% - 120px));

    margin:0 auto;

    padding:70px 0 68px;

    display:grid;

    grid-template-columns:0.92fr 1.08fr;

    gap:70px;

    align-items:center;
}


.about-section__content{
    max-width:500px;
}


.about-section__content h2{
    margin:0 0 22px;

    color:var(--text);

    font-size:32px;

    line-height:1.14;

    letter-spacing:-.7px;

    font-weight:800;
}


.about-section__content p{
    margin:0 0 27px;

    color:var(--body);

    font-size:14px;

    line-height:1.65;
}


.about-section__image{
    width:100%;

    height:320px;

    overflow:hidden;

    border-radius:12px;
}


.about-section__image img{
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;
}


/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.why-section{
    width:min(1280px, calc(100% - 120px));

    margin:0 auto;

    padding:8px 0 58px;

    text-align:center;
}


/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.why-section__header{
    margin-bottom:32px;
}


.why-section__header .section-label{
    margin-bottom:11px;
}


.why-section__header h2{
    margin:0;

    color:var(--text);

    font-size:28px;

    line-height:1.15;

    font-weight:800;

    letter-spacing:-.5px;
}


/* ---------------------------------------------------------
   FOUR BENEFITS
   --------------------------------------------------------- */

.why-grid{
    display:grid;

    grid-template-columns:repeat(4, 1fr);

    gap:22px;

    text-align:left;
}


/* ---------------------------------------------------------
   INDIVIDUAL BENEFIT
   --------------------------------------------------------- */

.why-card{
    min-width:0;

    display:flex;

    align-items:flex-start;

    gap:15px;

    padding:0 8px;
}


/* ---------------------------------------------------------
   ICON CIRCLE
   --------------------------------------------------------- */

.why-card__icon{
    width:58px;
    height:58px;

    flex:0 0 58px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#eef6e9;

    color:var(--green);

    font-size:24px;
}


/* ---------------------------------------------------------
   TEXT
   --------------------------------------------------------- */

.why-card__content{
    min-width:0;

    padding-top:2px;
}


.why-card__content h3{
    margin:0 0 6px;

    color:var(--text);

    font-size:13px;

    line-height:1.18;

    font-weight:800;
}


.why-card__content p{
    margin:0;

    color:var(--body);

    font-size:11px;

    line-height:1.45;
}


/* =========================================================
   PRODUCTS SECTION
   ========================================================= */

.products-section{
    width:min(1280px, calc(100% - 120px));

    margin:0 auto;

    padding:8px 0 68px;

    text-align:center;
}


/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.products-section__header{
    margin-bottom:30px;
}


.products-section__header .section-label{
    margin-bottom:11px;
}


.products-section__header h2{
    margin:0;

    color:var(--text);

    font-size:28px;

    line-height:1.15;

    font-weight:800;

    letter-spacing:-.5px;
}


/* ---------------------------------------------------------
   PRODUCT GRID
   --------------------------------------------------------- */

.products-grid{
    display:grid;

    grid-template-columns:repeat(4, 1fr);

    gap:16px;

    text-align:left;
}


/* ---------------------------------------------------------
   PRODUCT CARD
   --------------------------------------------------------- */

.product-card{
    overflow:hidden;

    background:#fff;

    border:1px solid #dfe4e9;

    border-radius:6px;

    box-shadow:0 2px 8px rgba(0,0,0,.05);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.product-card:hover{
    transform:translateY(-3px);

    box-shadow:0 6px 18px rgba(0,0,0,.09);
}


/* ---------------------------------------------------------
   PRODUCT IMAGE
   --------------------------------------------------------- */

.product-card__image{
    height:130px;
    overflow:hidden;
    background:#fff;
}

.product-card__image img{
    width:100%;
    height:100%;

    display:block;

    object-fit:contain;

    background:#fff;

    transition:transform .3s ease;
}

.product-card:hover .product-card__image img{
    transform:scale(1.04);
}


/* ---------------------------------------------------------
   PRODUCT CONTENT
   --------------------------------------------------------- */

.product-card__content{
    padding:12px 16px 15px;
}


.product-card__content h3{
    margin:0 0 7px;

    color:var(--text);

    font-size:14px;

    line-height:1.2;

    font-weight:800;
}


.product-card__content p{
    min-height:52px;

    margin:0 0 14px;

    color:var(--body);

    font-size:10px;

    line-height:1.45;
}


/* ---------------------------------------------------------
   PRODUCT BUTTON
   --------------------------------------------------------- */

.product-card__button{
    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:8px 11px;

    border:1px solid var(--green);

    border-radius:3px;

    color:var(--green);

    background:#fff;

    font-size:9px;

    line-height:1;

    font-weight:800;

    transition:
        background .2s ease,
        color .2s ease;
}


.product-card__button span{
    font-size:13px;
}


.product-card__button:hover{
    background:var(--green);

    color:#fff;
}


/* ---------------------------------------------------------
   SMALL BUTTONS
   ABOUT / VIEW ALL PRODUCTS
   --------------------------------------------------------- */

.small-btn{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:10px;

    min-height:40px;

    padding:0 17px;

    border:1px solid var(--green);

    border-radius:4px;

    color:var(--green);

    background:#fff;

    font-size:11px;

    line-height:1;

    font-weight:800;

    text-decoration:none;

    cursor:pointer;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}


.small-btn:hover{
    background:var(--green);

    border-color:var(--green);

    color:#fff;
}


/* ---------------------------------------------------------
   VIEW ALL PRODUCTS
   --------------------------------------------------------- */

.products-section__action{
    margin-top:27px;

    text-align:center;
}


.products-section__action .small-btn{
    min-height:42px;

    padding:0 25px;

    background:var(--navy-dark);

    border-color:var(--navy-dark);

    color:#fff;
}


.products-section__action .small-btn:hover{
    background:var(--green);

    border-color:var(--green);

    color:#fff;
}



/* =========================================================
   CONTACT
   ========================================================= */

.contact{
    padding:62px 20px;

    text-align:center;

    background:#f6f8fa;
}

.contact h2{
    margin:0 0 10px;

    color:var(--text);

    font-size:30px;

    line-height:1.15;
}

.contact p{
    max-width:620px;

    margin:0 auto 22px;

    color:#536274;

    font-size:14px;

    line-height:1.5;
}


/* =========================================================
   DESKTOP
   1201px+
   ========================================================= */

@media (min-width:1201px){

    .hero{
        height:680px;
        min-height:680px;
    }

    .hero__content{
        width:720px;

        margin-left:max(48px, calc((100% - 1508px) / 2));

        padding-top:48px;
    }
}


/* =========================================================
   TABLET / SMALL DESKTOP
   1001px - 1200px
   ========================================================= */

@media (max-width:1200px){

    .header__container{
        width:calc(100% - 50px);
    }

    .header__menu{
        gap:30px;
    }

    .hero{
        height:620px;
        min-height:620px;
    }

    .hero__content{
        width:720px;
        max-width:calc(100% - 80px);

        margin-left:40px;

        padding-top:46px;
    }

    .hero__benefits{
        width:100%;
    }

    .feature{
        padding-left:28px;
        padding-right:28px;
    }
}


/* =========================================================
   TABLET
   701px - 1000px
   ========================================================= */

@media (max-width:1000px){

    .hero{
        height:auto;
        min-height:0;

        background-position:center center;
    }

    .hero__content{
        width:650px;
        max-width:calc(100% - 60px);

        margin-left:30px;

        padding-top:42px;
        padding-bottom:38px;
    }

    .hero h1{
        font-size:48px;
    }

    .hero__benefits{
        width:100%;
    }

    .hero__actions{
        margin-bottom:0;
    }

    .feature-bar{
        height:auto;
        min-height:124px;
    }

    .feature-bar__inner{
        height:auto;

        grid-template-columns:repeat(2,1fr);
    }

    .feature{
        height:110px;
        min-height:110px;
    }

    .feature:nth-child(2){
        border-right:0;
    }

    .feature:nth-child(3),
    .feature:nth-child(4){
        border-top:1px solid rgba(255,255,255,.17);
    }

    .lower{
        width:calc(100% - 50px);

        grid-template-columns:1fr;

        gap:42px;
    }

    .column{
        padding:0;
    }

    .column + .column{
        border-left:0;

        border-top:1px solid var(--border);

        padding-top:40px;
    }
}


/* =========================================================
   MOBILE
   <=700px
   ========================================================= */

@media (max-width:700px){

    .header{
        height:auto;

        min-height:88px;

        padding:15px 0;
    }

    .header__container{
        width:calc(100% - 36px);

        height:auto;

        flex-wrap:wrap;

        gap:18px;
    }

    .header__logo img{
        width:125px;
    }

    .header__menu{
        width:100%;

        justify-content:space-between;

        gap:10px;

        flex-wrap:wrap;
    }

    .header__link{
        font-size:12px;
    }

    .header__link.active::after{
        bottom:-10px;
    }

    .header__actions{
        display:none;
    }


    /* HERO */

    .hero{
        height:auto;
        min-height:0;

        background-position:center center;
    }

    .hero__content{
        width:100%;
        max-width:none;

        margin:0;

        padding:38px 22px 34px;
    }

    .hero h1{
        font-size:42px;

        letter-spacing:-1.2px;
    }

    .hero__lead{
        width:auto;

        font-size:15px;
    }

    .hero__benefits{
        width:100%;

        grid-template-columns:1fr 1fr;
    }

    .hero__benefit{
        min-height:145px;
    }

    .hero__benefit:nth-child(2){
        border-right:0;
    }

    .hero__benefit:nth-child(3),
    .hero__benefit:nth-child(4){
        border-top:1px solid rgba(255,255,255,.35);

        padding-top:14px;
    }


    /* BUTTONS */

    .hero__actions{
        width:100%;
    }


    /* FEATURE BAR */

    .feature-bar__inner{
        grid-template-columns:1fr 1fr;
    }

    .feature{
        padding:18px 22px;
    }


    /* ABOUT */

    .about-layout{
        grid-template-columns:1fr;
    }

    .about-image{
        height:280px;
    }
}


/* =========================================================
   SMALL MOBILE
   <=520px
   ========================================================= */

@media (max-width:520px){

    .hero h1{
        font-size:34px;
    }

    .hero__lead{
        font-size:14px;
    }

    .hero__benefits{
        grid-template-columns:1fr;
    }

    .hero__benefit,
    .hero__benefit:nth-child(3),
    .hero__benefit:nth-child(4){

        min-height:auto;

        padding:14px 0;

        border-right:0;

        border-top:1px solid rgba(255,255,255,.35);
    }

    .hero__benefit:first-child{
        border-top:0;
    }

    .hero__benefit p{
        max-width:none;
    }

    .hero__actions{
        flex-direction:column;

        align-items:stretch;

        gap:12px;
    }

    .hero__actions .btn--green,
    .hero__actions .btn--outline{
        width:100%;

        min-width:0;
    }


    /* FEATURE BAR */

    .feature-bar__inner{
        grid-template-columns:1fr;
    }

    .feature,
    .feature:nth-child(2),
    .feature:nth-child(3){

        border-right:0;

        border-bottom:1px solid rgba(255,255,255,.17);
    }

    .feature:last-child{
        border-bottom:0;
    }


    /* PRODUCTS */

    .products-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));

        gap:12px;
    }
}

/* =========================================================
   CONTACT
========================================================= */

.contact-section{
    background:#f7f5ef;
    padding:70px 0;
}

.contact-container{
    width:90%;
    max-width:1280px;
    margin:0 auto;

    display:grid;
    grid-template-columns:1fr 1.35fr;

    gap:60px;
    align-items:center;
}


/* ---------------------------------------------------------
   CONTACT INFORMATION
--------------------------------------------------------- */

.contact-info{
    position:relative;
    padding:10px 20px 20px 0;
}

.contact-info .section-label{
    display:block;

    margin-bottom:12px;

    color:#43b929;

    font-size:14px;
    font-weight:800;

    letter-spacing:1px;
}

.contact-info h2{
    margin:0 0 18px;

    color:#0b376d;

    font-size:34px;
    line-height:1.15;

    font-weight:800;
}

.contact-intro{
    max-width:480px;

    margin:0 0 28px;

    color:#333;

    font-size:15px;
    line-height:1.6;
}


/* ---------------------------------------------------------
   CONTACT DETAILS
--------------------------------------------------------- */

.contact-details{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.contact-item{
    display:flex;
    align-items:center;

    gap:12px;

    color:#163d6d;

    font-size:14px;
}

.contact-item a{
    color:#163d6d;
    text-decoration:none;
}

.contact-item a:hover{
    color:#43b929;
}

.contact-icon{
    width:22px;

    color:#43b929;

    font-size:18px;
    font-weight:700;

    text-align:center;
}


/* ---------------------------------------------------------
   FORM
--------------------------------------------------------- */

.contact-form-wrapper{
    width:100%;
}

.contact-form{
    width:100%;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:14px;

    margin-bottom:14px;
}

.form-group{
    width:100%;
}

.contact-form input,
.contact-form textarea{
    width:100%;

    box-sizing:border-box;

    padding:14px 15px;

    border:1px solid #d9d9d9;
    border-radius:3px;

    background:#fff;

    color:#173d6d;

    font-family:inherit;
    font-size:14px;

    outline:none;

    transition:border-color .2s ease,
               box-shadow .2s ease;
}

.contact-form input{
    height:46px;
}

.contact-form textarea{
    min-height:120px;

    resize:vertical;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#43b929;

    box-shadow:0 0 0 2px rgba(67,185,41,.10);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#666;
}


/* ---------------------------------------------------------
   SEND BUTTON
--------------------------------------------------------- */

.contact-submit{
    margin-top:4px;

    padding:13px 22px;

    border:0;
    border-radius:3px;

    background:#43b929;

    color:#fff;

    font-family:inherit;
    font-size:13px;
    font-weight:800;

    cursor:pointer;

    transition:background .2s ease,
               transform .2s ease;
}

.contact-submit span{
    margin-left:8px;
    font-size:16px;
}

.contact-submit:hover{
    background:#359b20;

    transform:translateY(-1px);
}


/* =========================================================
   CONTACT - RESPONSIVE
========================================================= */

@media (max-width:900px){

    .contact-container{
        grid-template-columns:1fr;

        gap:40px;
    }

    .contact-info{
        padding-right:0;
    }

}


@media (max-width:600px){

    .contact-section{
        padding:50px 0;
    }

    .contact-container{
        width:88%;
    }

    .contact-info h2{
        font-size:28px;
    }

    .form-row{
        grid-template-columns:1fr;
    }

}



/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #0b3568;
    color: #ffffff;
    padding: 42px 0 0;
}


/* =========================================================
   FOOTER CONTAINER
========================================================= */

.footer-container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        1.5fr
        1fr
        1.3fr
        0.8fr;

    gap: 60px;

    align-items: start;

    padding-bottom: 30px;
}


/* =========================================================
   BRAND
========================================================= */

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* Logo */

.footer-brand-link {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 22px;
}


.footer-logo {
    width: 195px;
    height: auto;
    display: block;

    /*
       Convierte el logo original a blanco
       para utilizarlo sobre el fondo azul.
    */
    filter: brightness(0) invert(1);
}


/* Description */

.footer-brand p {
    max-width: 320px;

    margin: 0;

    color: #ffffff;

    font-size: 15px;
    line-height: 1.6;
}


/* =========================================================
   SOCIAL
========================================================= */

.footer-social {
    display: flex;
    gap: 12px;

    margin-top: 24px;
}


.footer-social a {
    width: 36px;
    height: 36px;

    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.footer-social a:hover {
    background-color: #39b82a;
    border-color: #39b82a;

    transform: translateY(-2px);
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column h3 {
    margin: 0 0 20px;

    color: #39b82a;

    font-size: 16px;
    font-weight: 700;

    letter-spacing: 1px;
}


.footer-column ul {
    list-style: none;

    margin: 0;
    padding: 0;
}


.footer-column li {
    margin-bottom: 12px;
}


.footer-column a {
    color: #ffffff;

    text-decoration: none;

    font-size: 15px;

    transition: color 0.25s ease;
}


.footer-column a:hover {
    color: #39b82a;
}


/* =========================================================
   CONTACT INFO
========================================================= */

.footer-contact li {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 14px;
}


.footer-contact a,
.footer-contact span {
    font-size: 15px;
}


.footer-icon {
    width: 18px;

    display: inline-flex;
    justify-content: center;

    color: #ffffff;
}


/* =========================================================
   FOOTER DECORATIVE FOOD PICK
========================================================= */

.footer-decoration {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    min-height: 180px;
    overflow: hidden;
}


.footer-foodpick {
    display: block;
    width: 320px;
    max-width: 100%;
    height: auto;
    opacity: 0.55;
    object-fit: contain;
    margin-right: 0;
}



/* =========================================================
   WAVES
========================================================= */

.footer-waves {
    width: 180px;

    margin-top: -8px;
}


.footer-waves span {
    display: block;

    height: 10px;

    margin-bottom: -2px;

    border-top: 2px solid rgba(35, 115, 185, 0.7);

    border-radius: 50%;
}


/* =========================================================
   COPYRIGHT
========================================================= */

.footer-bottom {
    width: 90%;
    max-width: 1280px;

    margin: 0 auto;

    border-top: 1px solid rgba(255, 255, 255, 0.15);

    padding: 16px 0 18px;

    text-align: center;
}


.footer-bottom p {
    margin: 0;

    color: #ffffff;

    font-size: 13px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }

    .footer-decoration {
        display: none;
    }

}


@media (max-width: 600px) {

    .site-footer {
        padding-top: 40px;
    }

    .footer-container {
        width: 88%;

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        width: 88%;
    }

}

/* =========================================================
   FOOTER - MOBILE
========================================================= */

@media (max-width: 768px) {

    .footer-decoration {
        justify-content: center;
        min-height: auto;
        margin-top: 30px;
    }

    .footer-foodpick {
        width: 230px;
        opacity: 0.40;
    }

}


/* =========================================================
   FINAL MOBILE RESPONSIVE FIX
   ANGLOTRADING
   ========================================================= */

@media (max-width: 700px) {

    /* -----------------------------------------------------
       GLOBAL MOBILE
       ----------------------------------------------------- */

    body {
        overflow-x: hidden;
    }


    /* -----------------------------------------------------
       ABOUT SECTION
       ----------------------------------------------------- */

    .about-section {
        width: 88%;
        margin: 0 auto;

        padding: 55px 0 50px;

        display:grid;
        grid-template-columns:1fr;

        gap:35px;

        align-items:start;
    }

    .about-section__content {
        width:100%;
        max-width:none;
    }

    .about-section__content h2 {
        font-size:32px;
        line-height:1.12;
        letter-spacing:-.5px;
    }

    .about-section__content p {
        font-size:14px;
        line-height:1.65;
    }

    .about-section__image {
        width:100%;
        height:280px;

        border-radius:10px;
    }


    /* -----------------------------------------------------
       WHY CHOOSE US
       ----------------------------------------------------- */

    .why-section {
        width:88%;
        margin:0 auto;

        padding:20px 0 55px;

        text-align:center;
    }

    .why-section__header {
        margin-bottom:30px;
    }

    .why-section__header h2 {
        font-size:30px;
        line-height:1.15;
    }

    .why-grid {
        display:grid;

        grid-template-columns:1fr;

        gap:24px;

        text-align:left;
    }

    .why-card {
        width:100%;

        display:flex;

        align-items:flex-start;

        gap:15px;

        padding:0;
    }

    .why-card__icon {
        width:58px;
        height:58px;

        flex:0 0 58px;
    }

    .why-card__content {
        flex:1;
        min-width:0;
    }

    .why-card__content h3 {
        font-size:14px;
        line-height:1.2;
    }

    .why-card__content p {
        font-size:12px;
        line-height:1.45;
    }


    /* -----------------------------------------------------
       PRODUCTS
       ----------------------------------------------------- */

    .products-section {
        width:88%;
        margin:0 auto;

        padding:20px 0 60px;

        text-align:center;
    }

    .products-section__header {
        margin-bottom:30px;
    }

    .products-section__header h2 {
        font-size:30px;
        line-height:1.15;
    }

    .products-grid {
        display:grid;

        grid-template-columns:1fr;

        gap:18px;

        text-align:left;
    }

    .product-card {
        width:100%;
    }

    .product-card__image {
        height:180px;
    }

    .product-card__content {
        padding:16px 18px 18px;
    }

    .product-card__content h3 {
        font-size:17px;
        line-height:1.2;
    }

    .product-card__content p {
        min-height:0;

        margin-bottom:18px;

        font-size:13px;
        line-height:1.5;
    }

    .product-card__button {
        padding:10px 13px;

        font-size:11px;

        white-space:nowrap;
    }

    .product-card__button span {
        font-size:15px;
    }

    .products-section__action {
        margin-top:28px;
    }


    /* -----------------------------------------------------
       FEATURE BAR
       ----------------------------------------------------- */

    .feature h3 {
        white-space:normal;
    }


    /* -----------------------------------------------------
       HERO
       ----------------------------------------------------- */

    .hero__content {
        width:100%;
        max-width:none;

        margin:0;

        padding-left:22px;
        padding-right:22px;
    }

    .hero__lead {
        width:100%;
        max-width:100%;

        overflow-wrap:break-word;
    }

    .hero__benefit {
        min-width:0;
    }

    .hero__benefit p {
        max-width:none;

        overflow-wrap:break-word;
    }


    /* -----------------------------------------------------
       CONTACT
       ----------------------------------------------------- */

    .contact-container {
        width:88%;
        margin:0 auto;
    }

    .contact-info {
        width:100%;
    }

    .contact-form-wrapper {
        width:100%;
    }


    /* -----------------------------------------------------
       FOOTER
       ----------------------------------------------------- */

    .footer-container {
        width:88%;

        grid-template-columns:1fr;

        gap:35px;
    }

    .footer-decoration {
        display:none;
    }

    .footer-bottom {
        width:88%;
    }

}


/* =========================================================
   SMALL MOBILE
    520px
   ========================================================= */

@media (max-width:520px) {

    /* -----------------------------------------------------
       HEADER
       ----------------------------------------------------- */

    .header__container {
        width:88%;
    }

    .header__logo img {
        width:125px;
    }


    /* -----------------------------------------------------
       HERO
       ----------------------------------------------------- */

    .hero__content {
        padding-left:22px;
        padding-right:22px;
    }

    .hero h1 {
        font-size:34px;
        line-height:1.04;
    }

    .hero__lead {
        font-size:14px;
        line-height:1.55;
    }


    /* -----------------------------------------------------
       ABOUT
       ----------------------------------------------------- */

    .about-section {
        width:88%;

        padding-top:50px;
        padding-bottom:50px;
    }

    .about-section__content h2 {
        font-size:32px;
    }

    .about-section__image {
        height:240px;
    }


    /* -----------------------------------------------------
       WHY CHOOSE US
       ----------------------------------------------------- */

    .why-section {
        width:88%;

        padding-top:15px;
    }

    .why-section__header h2 {
        font-size:30px;
    }

    .why-grid {
        grid-template-columns:1fr;

        gap:25px;
    }


    /* -----------------------------------------------------
       PRODUCTS
       ----------------------------------------------------- */

    .products-section {
        width:88%;
    }

    .products-section__header h2 {
        font-size:30px;
    }

    .products-grid {
        grid-template-columns:1fr;

        gap:18px;
    }

    .product-card__image {
        height:180px;
    }

    .product-card__content h3 {
        font-size:17px;
    }

    .product-card__content p {
        font-size:13px;
    }

    .product-card__button {
        font-size:11px;
    }


    /* -----------------------------------------------------
       CONTACT
       ----------------------------------------------------- */

    .contact-container {
        width:88%;
    }


    /* -----------------------------------------------------
       FOOTER
       ----------------------------------------------------- */

    .footer-container {
        width:88%;
    }

    .footer-bottom {
        width:88%;
    }

}

/* =========================================================
   TABLET FINAL ADJUSTMENT
   701px - 1000px
   ========================================================= */

@media (min-width:701px) and (max-width:1000px) {

    /* -----------------------------------------------------
       WHY CHOOSE US
       ----------------------------------------------------- */

    .why-section {
        width:88%;
        margin:0 auto;

        padding:20px 0 55px;
    }

    .why-section__header {
        margin-bottom:30px;
    }

    .why-section__header h2 {
        font-size:30px;
        line-height:1.15;
    }

    .why-grid {
        display:grid;

        grid-template-columns:repeat(2, 1fr);

        gap:28px 24px;

        text-align:left;
    }

    .why-card {
        width:100%;

        display:flex;

        align-items:flex-start;

        gap:15px;

        padding:0;
    }

    .why-card__icon {
        width:58px;
        height:58px;

        flex:0 0 58px;
    }

    .why-card__content {
        flex:1;
        min-width:0;
    }

    .why-card__content h3 {
        font-size:14px;
        line-height:1.2;
    }

    .why-card__content p {
        font-size:12px;
        line-height:1.45;
    }


    /* -----------------------------------------------------
       OUR PRODUCTS
       ----------------------------------------------------- */

    .products-section {
        width:88%;
        margin:0 auto;

        padding:20px 0 60px;
    }

    .products-section__header {
        margin-bottom:30px;
    }

    .products-section__header h2 {
        font-size:30px;
        line-height:1.15;
    }

    .products-grid {
        display:grid;

        grid-template-columns:repeat(2, 1fr);

        gap:18px;

        text-align:left;
    }

    .product-card {
        width:100%;
    }

    .product-card__image {
        height:180px;
    }

    .product-card__content {
        padding:16px 18px 18px;
    }

    .product-card__content h3 {
        font-size:17px;
        line-height:1.2;
    }

    .product-card__content p {
        min-height:0;

        margin-bottom:18px;

        font-size:13px;
        line-height:1.5;
    }

    .product-card__button {
        padding:10px 13px;

        font-size:11px;

        white-space:nowrap;
    }

    .product-card__button span {
        font-size:15px;
    }


    /* -----------------------------------------------------
       ABOUT
       ----------------------------------------------------- */

    .about-section {
        width:88%;

        margin:0 auto;

        padding:55px 0 55px;

        gap:35px;
    }


    /* -----------------------------------------------------
       CONTACT
       ----------------------------------------------------- */

    .contact-container {
        width:88%;
    }

}

/* =========================================================
   CONTACT FORM STATUS MESSAGE
========================================================= */

.form-message {
    display: none;

    margin-top: 20px;
    padding: 14px 18px;

    border-radius: 6px;

    font-size: 14px;
    line-height: 1.5;

    text-align: center;
}

.form-message.success {
    display: block;

    background: #edf8ee;
    border: 1px solid #b9dfbd;
    color: #24702b;
}

.form-message.error {
    display: block;

    background: #fff1f1;
    border: 1px solid #e2bcbc;
    color: #9b2c2c;
}

