@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Nunito+Sans:wght@200..1000&display=swap');

:root {
    --primary-color: #ff0c0c;
    --secondary-color: #c9a24d;

    --bg1: #ffffff;
    --bg2: #f0efef;

    --font-head: 'Montserrat', sans-serif;
    --font-para: 'Nunito Sans', sans-serif;

    --card: #ffffffdd;
    --muted: #1a1a1a;

    --accent: #f94040;
    --accent-muted: #b8963e;

    --toast: #d14b4b;
    --toast-bg: rgba(42, 15, 15, 0.95);

    --dark-bg: #1c1a1a;
    --light-bg: #e3e3e3;

    --text-dark: #333;
    --text-light: #ffffff;

    --radius: 14px;
    --glass-border: rgba(255, 255, 255, 0.6);
    --shadow: 0 12px 40px rgba(80, 8, 8, 0.08);
}

html, body {
    height: 100%;
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--font-para);
    background: linear-gradient(180deg, #ffffff 60%, #f0efef 100%);
    color: var(--text-dark);
    line-height: 1.45;
    scroll-behavior: smooth;
    min-height: 100vh;
    width: 100%;
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 500;
}

a, p {
    font-family: var(--font-para);
}

.container {
    margin: 0 5px;
    padding: 5px;
}

header {
    padding: 10px;
    position: fixed;
    top: 0;
    z-index: 9999;
    background: var(--bg1);
    width: 100%;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand img {
    display: block;
    max-height: 40px;
    width: auto;
}


.logo a {
    font-family: var(--font-head);
    font-size: 30px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #242424;
    transition: .3s;
}

.nav_ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav_link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    padding: 5px 10px;
    transition: all .3s ease;
}

.nav_ul a:hover {
    border-radius: 5px;
    background: var(--accent);
    color: var(--text-light);
}

.cta {
    box-shadow: 0 2px 25px var(--accent-muted);
    border-radius: 30px;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    padding: 10px 16px;
    font-size: 16px;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    transition: color .3s ease;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--accent-muted);
    z-index: 0;
    transition: width .4s ease;
}

.cta:hover {
    color: #fff;
}

.cta:hover::before {
    width: 100%;
}

.cta span {
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.hero {
    margin: 4rem 0;
    position: relative;
    overflow: visible;
}

.hero_wrap {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero_wrap img {
    width: 100%;
    height: 450px;
}

.hero_content {
    padding: 0;
}

.hero_content h1 {
    color: var(--primary-color);
    font-size: 4rem;
    font-weight: 600;
}

.con {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero_btn {
    margin: 10px 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

.btn {
    border-radius: var(--radius);
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: all .3s ease;
}

.btn.primary {
    padding: 12px 24px;
    font-weight: 600;
    background: var(--accent);
    color: var(--text-light);
    transition: all .3s ease;
}

.btn.primary:hover {
    color: var(--text-light);
    background: #d14b4b;
}

.btn.secondary {
    font-weight: 600;
    padding: 12px 24px;
    background: var(--accent-muted);
    color: var(--text-light);
    transition: all .3s ease;
}

.btn.secondary:hover {
    color: var(--text-light);
    background: var(--secondary-color);
}

.btn.card {
    font-weight: 600;
    background: var(--accent);
    color: var(--text-light);
    transition: all .3s ease;
    padding: 4px 30px;
}

.btn.card:hover {
    color: var(--text-light);
    background: #d14b4b;
}

.product {
    margin: 2px;
    margin-bottom: 20px;
    padding: 10px;
}

.product_content {
    text-align: center;
    margin-bottom: 3rem;
}

.product_content h1 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.product_card {
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    background: var(--card);
    transition: all .4s ease;
}

.product_card:hover {
    transform: translateY(-4px) scale(1.02);
}

.product_card img {
    border-radius: var(--radius) var(--radius) 0 0 ;
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
}

.product_desc {
    padding: 14px;
    text-align: center;
}

.product_desc h3 {
    font-weight: 600;
}

.product_info {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.product_info img {
    width: 40px;
    height: auto;
}

.benefit {
    margin: 2px;
    margin-bottom: 20px;
    padding: 10px;
}

.benefit {
    margin: 14px;
    padding: 40px 20px;
}

.benefit_content {
    text-align: center;
    margin-bottom: 30px;
}

.benefit_content h1 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit_card {
    background: var(--card);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    transition: all .4s ease;
}

.benefit_card:hover {
    transform: translateY(-4px) scale(1.02);
}

.benefit_card i {
    font-size: 50px;
    color: #ff8f8f;
    margin-bottom: 10px;
}

.benefit_card h3 {
    font-weight: 600;
    margin: 10px 0;
}

.about {
    padding: 60px 20px;
}

.about_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about_content h1 {
    font-weight: 600;
    margin-bottom: 15px;
}

.about_content p {
    margin-bottom: 12px;
    color: var(--muted);
}

.about_img {
    break-inside: avoid;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    border-radius: var(--radius);
}

.about_img img {
    width: 100%;
    height: 85%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform .4s ease;
}

.about_wrap img:hover {
    transform: scale(1.05);
    transition: transform 0.6s ease;
}


.contact {
    padding: 60px 20px;
}

.contact_content {
    text-align: center;
    margin-bottom: 30px;
}

.contact_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact_info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info_item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.info_item i {
    color: var(--accent);
    font-size: 18px;
} 

.whatsapp_btn {
    text-decoration: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform .3s ease, box-shadow .3s ease;
}

.whatsapp_btn:hover {
    transform: scale(1.1);
    box-shadow: 0 14px 35px rgba(0,0,0,0.35);
}

.whatsapp_btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.5);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

.contact_form {
    background: #b8963ead;
    padding: 40px;
    border-radius: var(--radius);
}

.contact_form input,
.contact_form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    font-family: var(--font-para);
}

.contact_form textarea {
    resize: none;
}

.contact_form input:focus-visible,
.contact_form textarea:focus-visible {
    outline: none;
    outline-offset: none;
}

.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 30px 20px;
}

.footer_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
    max-width: 1500px;
    margin: auto;
}

.footer h3, .footer h4 {
    font-family: var(--font-head);
    margin-bottom: 15px;
}

.footer p {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
}

.footer_about {
    width: 100%;
}

.footer_about h3{
    color: var(--accent);
    font-weight: 600;
}

.footer_links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_links li {
    margin-bottom: 10px;
}

.footer_links a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    transition: color .3s ease;
}

.footer_links a:hover {
    color: var(--accent);
}

.footer_contact i {
    margin-right: 8px;
    color: var(--accent);
}

.footer_socials {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.footer_socials a {
    font-size: 20px;
    text-decoration: none;
    background: var(--card);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform .3s ease;
}

.footer_socials a:hover {
    transform: scale(1.1);
}

.footer_dev {
    font-size: 15px;
}

.footer_dev a {
    text-decoration: none;
    color: #ddd;
    transition: color .3s ease;
}

.footer_dev a:hover {
    color: var(--accent);
}

.footer_dev i {
    margin-right: 5px;
    color: var(--accent);
}

.footer_bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    font-size: 13px;
    color: #ccc;
}

@media (max-width: 992px) {

    nav {
        padding: 10px 12px;
    }

    .logo a {
        font-size: 24px;
    }

    .nav_ul {
        gap: 16px;
    }

    .hero_wrap {
        gap: 2rem;
    }

    .hero_content h1 {
        font-size: 3rem;
    }

    .hero_wrap img {
        height: 380px;
    }

    .contact_form {
        padding: 30px;
    }
}

@media (max-width: 768px) {

    body {
        padding-top: 90px;
    }

    header {
        padding: 8px;
    }

    nav {
        flex-wrap: wrap;
        gap: 10px;
    }

    .brand {
        gap: 10px;
    }

    .logo a {
        font-size: 1rem;
    }

    .nav_ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .cta {
        font-size: 14px;
        padding: 8px 14px;
    }


    .hero {
        margin: 2rem 0;
    }

    .hero_wrap {
        flex-direction: column;
        text-align: center;
    }

    .hero_wrap img {
        height: 300px;
    }

    .hero_content {
        padding: 13px;
    }

    .hero_content h1 {
        font-size: 2.4rem;
    }

    .hero_content p {
        font-size: 0.78rem;
    }

    .hero_btn {
        justify-content: center;
        flex-wrap: wrap;
    }

    .product {
        padding: 5px;
    }

    .product_desc {
        padding: 12px;
    }

    .product_info img {
        width: 20%;
        height: 22px;
        display: block;
        object-fit: contain;
    }

    .benefit {
        padding: 20px 10px;
    }

    .about {
        padding: 40px 15px;
    }

    .about_wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about_img img {
        height: auto;
    }


    .contact {
        padding: 40px 15px;
    }

    .contact_wrap {
        grid-template-columns: 1fr;
    }

    .contact_form {
        padding: 25px;
    }

    .footer {
        padding: 40px 20px 15px;
    }

    .footer_container {
        gap: 40px;
        text-align: center;
    }

    .footer_socials {
        justify-content: center;
    }

    .whatsapp_btn {
        width: 55px;
        height: 55px;
        font-size: 12px;
        bottom: 35px;
        right: 15px;
    }
}

@media (max-width: 480px) {

    .hero_content h1 {
        font-size: 2rem;
    }

    .btn.primary,
    .btn.secondary {
        padding: 10px 18px;
        font-size: 14px;
    }

    .product_card img {
        height: 200px;
    }

    .benefit_card i {
        font-size: 40px;
    }

    .footer p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
  .hamburger {
        display: flex;
    }

  .nav_ul {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 260px;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        padding: 20px;
        transition: right .3s ease;
    }

    .nav_ul.active {
        right: 0;
    }

    .cta {
        display: none;
        background: var(--accent);
        color: #fff;
        padding: 10px 16px;
        border-radius: 20px;
        text-align: center;
    }
}

